diff --git a/.editorconfig b/.editorconfig
index 8b921444539..1583c600aa5 100644
--- a/.editorconfig
+++ b/.editorconfig
@@ -344,9 +344,6 @@ 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/.github/CODEOWNERS b/.github/CODEOWNERS
index 5c49a7d5314..85cd8487ff7 100644
--- a/.github/CODEOWNERS
+++ b/.github/CODEOWNERS
@@ -9,3 +9,5 @@
# Head Spriter
*.png @CatBackGround
+# Head Wiki
+*.xml @Danone453
diff --git a/Content.Benchmarks/MapLoadBenchmark.cs b/Content.Benchmarks/MapLoadBenchmark.cs
index bc050b59f16..8c04d9a40dc 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", "Meta", "Marathon", "MeteorArena", "Fland", "Oasis", "Cog", "Convex"};
+ public static readonly string[] MapsSource = { "Empty", "Satlern", "Box", "Bagel", "Dev", "CentComm", "Core", "TestTeg", "Packed", "Omega", "Reach", "Meta", "Marathon", "MeteorArena", "Fland", "Oasis", "Cog" };
[ParamsSource(nameof(MapsSource))]
public string Map;
diff --git a/Content.Client/Cargo/BUI/CargoBountyConsoleBoundUserInterface.cs b/Content.Client/Cargo/BUI/CargoBountyConsoleBoundUserInterface.cs
index 04075000f5b..44c40143d83 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.History, state.UntilNextSkip);
+ _menu?.UpdateEntries(state.Bounties, state.UntilNextSkip);
}
}
diff --git a/Content.Client/Cargo/UI/BountyHistoryEntry.xaml b/Content.Client/Cargo/UI/BountyHistoryEntry.xaml
deleted file mode 100644
index 905cf020ed1..00000000000
--- a/Content.Client/Cargo/UI/BountyHistoryEntry.xaml
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/Content.Client/Cargo/UI/BountyHistoryEntry.xaml.cs b/Content.Client/Cargo/UI/BountyHistoryEntry.xaml.cs
deleted file mode 100644
index 54804be641c..00000000000
--- a/Content.Client/Cargo/UI/BountyHistoryEntry.xaml.cs
+++ /dev/null
@@ -1,49 +0,0 @@
-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 526ba69129b..bb263ff6c4a 100644
--- a/Content.Client/Cargo/UI/CargoBountyMenu.xaml
+++ b/Content.Client/Cargo/UI/CargoBountyMenu.xaml
@@ -11,28 +11,15 @@
-
-
-
-
-
-
-
-
-
+
+
+
+
diff --git a/Content.Client/Cargo/UI/CargoBountyMenu.xaml.cs b/Content.Client/Cargo/UI/CargoBountyMenu.xaml.cs
index c289fb6ed83..3767b45e4be 100644
--- a/Content.Client/Cargo/UI/CargoBountyMenu.xaml.cs
+++ b/Content.Client/Cargo/UI/CargoBountyMenu.xaml.cs
@@ -15,12 +15,9 @@ 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, List history, TimeSpan untilNextSkip)
+ public void UpdateEntries(List bounties, TimeSpan untilNextSkip)
{
BountyEntriesContainer.Children.Clear();
foreach (var b in bounties)
@@ -35,21 +32,5 @@ public void UpdateEntries(List bounties, List= 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 cb07e16a9c2..9b7fd754369 100644
--- a/Content.Client/Changelog/ChangelogWindow.xaml.cs
+++ b/Content.Client/Changelog/ChangelogWindow.xaml.cs
@@ -8,8 +8,6 @@
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
@@ -17,9 +15,8 @@ namespace Content.Client.Changelog
[GenerateTypedNameReferences]
public sealed partial class ChangelogWindow : FancyWindow
{
- [Dependency] private readonly ChangelogManager _changelog = default!;
[Dependency] private readonly IClientAdminManager _adminManager = default!;
- [Dependency] private readonly IConfigurationManager _cfg = default!;
+ [Dependency] private readonly ChangelogManager _changelog = default!;
public ChangelogWindow()
{
@@ -70,22 +67,8 @@ private async void PopulateChangelog()
Tabs.SetTabTitle(i++, Loc.GetString($"changelog-tab-title-{changelog.Name}"));
}
- // 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;
+ var version = typeof(ChangelogWindow).Assembly.GetName().Version ?? new Version(1, 0);
+ VersionLabel.Text = Loc.GetString("changelog-version-tag", ("version", version.ToString()));
TabsUpdated();
}
diff --git a/Content.Client/CriminalRecords/CriminalRecordsConsoleBoundUserInterface.cs b/Content.Client/CriminalRecords/CriminalRecordsConsoleBoundUserInterface.cs
index d5cc4ecfa9a..9047624f49b 100644
--- a/Content.Client/CriminalRecords/CriminalRecordsConsoleBoundUserInterface.cs
+++ b/Content.Client/CriminalRecords/CriminalRecordsConsoleBoundUserInterface.cs
@@ -39,8 +39,6 @@ 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 d36718cf08b..77da0ba1b06 100644
--- a/Content.Client/CriminalRecords/CriminalRecordsConsoleWindow.xaml
+++ b/Content.Client/CriminalRecords/CriminalRecordsConsoleWindow.xaml
@@ -1,142 +1,36 @@
+ xmlns:controls="clr-namespace:Content.Client.UserInterface.Controls"
+ Title="{Loc 'criminal-records-console-window-title'}"
+ MinSize="660 400">
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
+
+
diff --git a/Content.Client/CriminalRecords/CriminalRecordsConsoleWindow.xaml.cs b/Content.Client/CriminalRecords/CriminalRecordsConsoleWindow.xaml.cs
index a35cf84c44f..7cae290fe17 100644
--- a/Content.Client/CriminalRecords/CriminalRecordsConsoleWindow.xaml.cs
+++ b/Content.Client/CriminalRecords/CriminalRecordsConsoleWindow.xaml.cs
@@ -13,9 +13,6 @@
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;
@@ -27,8 +24,6 @@ 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;
@@ -38,12 +33,10 @@ 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;
@@ -53,8 +46,6 @@ 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);
@@ -64,14 +55,10 @@ 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())
@@ -84,12 +71,6 @@ 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 =>
@@ -116,20 +97,6 @@ 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);
@@ -137,21 +104,16 @@ 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)
@@ -167,14 +129,10 @@ public void UpdateState(CriminalRecordsConsoleState state)
}
}
- 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);
@@ -221,7 +179,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)
@@ -254,44 +212,23 @@ 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;
- PersonJob.Text = stationRecord.JobTitle ?? na;
-
- // 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);
+ 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)
+ 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;
}
@@ -351,37 +288,9 @@ 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/Doors/DoorSystem.cs b/Content.Client/Doors/DoorSystem.cs
index 5e3de813d65..bc52730b0e7 100644
--- a/Content.Client/Doors/DoorSystem.cs
+++ b/Content.Client/Doors/DoorSystem.cs
@@ -21,131 +21,112 @@ public override void Initialize()
protected override void OnComponentInit(Entity ent, ref ComponentInit args)
{
var comp = ent.Comp;
- comp.OpenSpriteStates = new List<(DoorVisualLayers, string)>(2);
- comp.ClosedSpriteStates = new List<(DoorVisualLayers, string)>(2);
+ comp.OpenSpriteStates = new(2);
+ comp.ClosedSpriteStates = new(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(Entity entity, ref AppearanceChangeEvent args)
+ private void OnAppearanceChange(EntityUid uid, DoorComponent comp, ref AppearanceChangeEvent args)
{
if (args.Sprite == null)
return;
- if (!AppearanceSystem.TryGetData(entity, DoorVisuals.State, out var state, args.Component))
+ if(!AppearanceSystem.TryGetData(uid, DoorVisuals.State, out var state, args.Component))
state = DoorState.Closed;
- if (AppearanceSystem.TryGetData(entity, DoorVisuals.BaseRSI, out var baseRsi, args.Component))
- UpdateSpriteLayers(args.Sprite, baseRsi);
-
- if (_animationSystem.HasRunningAnimation(entity, DoorComponent.AnimationKey))
- _animationSystem.Stop(entity.Owner, DoorComponent.AnimationKey);
-
- UpdateAppearanceForDoorState(entity, args.Sprite, state);
- }
+ 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;
+ }
+ }
- private void UpdateAppearanceForDoorState(Entity entity, SpriteComponent sprite, DoorState state)
- {
- sprite.DrawDepth = state is DoorState.Open ? entity.Comp.OpenDrawDepth : entity.Comp.ClosedDrawDepth;
+ TryComp(uid, out var animPlayer);
+ if (_animationSystem.HasRunningAnimation(uid, animPlayer, DoorComponent.AnimationKey))
+ _animationSystem.Stop(uid, animPlayer, DoorComponent.AnimationKey); // Halt all running anomations.
- switch (state)
+ args.Sprite.DrawDepth = comp.ClosedDrawDepth;
+ switch(state)
{
case DoorState.Open:
- foreach (var (layer, layerState) in entity.Comp.OpenSpriteStates)
+ args.Sprite.DrawDepth = comp.OpenDrawDepth;
+ foreach(var (layer, layerState) in comp.OpenSpriteStates)
{
- sprite.LayerSetState(layer, layerState);
+ args.Sprite.LayerSetState(layer, layerState);
}
-
- return;
+ break;
case DoorState.Closed:
- foreach (var (layer, layerState) in entity.Comp.ClosedSpriteStates)
+ foreach(var (layer, layerState) in comp.ClosedSpriteStates)
{
- sprite.LayerSetState(layer, layerState);
+ args.Sprite.LayerSetState(layer, layerState);
}
-
- return;
+ break;
case DoorState.Opening:
- if (entity.Comp.OpeningAnimationTime == 0.0)
- return;
-
- _animationSystem.Play(entity, (Animation)entity.Comp.OpeningAnimation, DoorComponent.AnimationKey);
-
- return;
+ if (animPlayer != null && comp.OpeningAnimationTime != 0.0)
+ _animationSystem.Play((uid, animPlayer), (Animation)comp.OpeningAnimation, DoorComponent.AnimationKey);
+ break;
case DoorState.Closing:
- if (entity.Comp.ClosingAnimationTime == 0.0 || entity.Comp.CurrentlyCrushing.Count != 0)
- return;
-
- _animationSystem.Play(entity, (Animation)entity.Comp.ClosingAnimation, DoorComponent.AnimationKey);
-
- return;
+ if (animPlayer != null && comp.ClosingAnimationTime != 0.0 && comp.CurrentlyCrushing.Count == 0)
+ _animationSystem.Play((uid, animPlayer), (Animation)comp.ClosingAnimation, DoorComponent.AnimationKey);
+ break;
case DoorState.Denying:
- _animationSystem.Play(entity, (Animation)entity.Comp.DenyingAnimation, DoorComponent.AnimationKey);
-
- return;
+ if (animPlayer != null)
+ _animationSystem.Play((uid, animPlayer), (Animation)comp.DenyingAnimation, DoorComponent.AnimationKey);
+ break;
+ case DoorState.Welded:
+ break;
case DoorState.Emagging:
- _animationSystem.Play(entity, (Animation)entity.Comp.EmaggingAnimation, DoorComponent.AnimationKey);
-
- return;
+ if (animPlayer != null)
+ _animationSystem.Play((uid, animPlayer), (Animation)comp.EmaggingAnimation, DoorComponent.AnimationKey);
+ break;
+ default:
+ throw new ArgumentOutOfRangeException($"Invalid door visual state {state}");
}
}
-
- 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/Magic/MagicSystem.cs b/Content.Client/Magic/MagicSystem.cs
index 086a0f7b42e..03aa9eb56d4 100644
--- a/Content.Client/Magic/MagicSystem.cs
+++ b/Content.Client/Magic/MagicSystem.cs
@@ -1,8 +1,5 @@
using Content.Shared.Magic;
-using Content.Shared.Magic.Events;
namespace Content.Client.Magic;
-public sealed class MagicSystem : SharedMagicSystem
-{
-}
+public sealed class MagicSystem : SharedMagicSystem;
diff --git a/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml.cs b/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml.cs
index ac23e8216b2..179a2c25c02 100644
--- a/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml.cs
+++ b/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml.cs
@@ -25,7 +25,6 @@ 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;
@@ -37,10 +36,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)
@@ -291,7 +290,7 @@ private void PopulateDepartmentList(IEnumerable departmentSens
{
NavMap.TrackedEntities.TryAdd(sensor.SuitSensorUid,
new NavMapBlip
- (CoordinatesToLocal(coordinates.Value),
+ (coordinates.Value,
_blipTexture,
(_trackedEntity == null || sensor.SuitSensorUid == _trackedEntity) ? Color.LimeGreen : Color.LimeGreen * Color.DimGray,
sensor.SuitSensorUid == _trackedEntity));
@@ -357,7 +356,7 @@ private void UpdateSensorsTable(NetEntity? currTrackedEntity, NetEntity? prevTra
if (NavMap.TrackedEntities.TryGetValue(castSensor.SuitSensorUid, out var data))
{
data = new NavMapBlip
- (CoordinatesToLocal(data.Coordinates),
+ (data.Coordinates,
data.Texture,
(currTrackedEntity == null || castSensor.SuitSensorUid == currTrackedEntity) ? Color.LimeGreen : Color.LimeGreen * Color.DimGray,
castSensor.SuitSensorUid == currTrackedEntity);
@@ -422,26 +421,6 @@ 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
deleted file mode 100644
index 5ed1bf4a6cd..00000000000
--- a/Content.Client/Movement/Components/EyeCursorOffsetComponent.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-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 518a4a1bd40..9fbd4b5c37d 100644
--- a/Content.Client/Movement/Systems/ContentEyeSystem.cs
+++ b/Content.Client/Movement/Systems/ContentEyeSystem.cs
@@ -1,7 +1,6 @@
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;
@@ -53,14 +52,4 @@ 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
deleted file mode 100644
index f3bff9ef0c9..00000000000
--- a/Content.Client/Movement/Systems/EyeCursorOffsetSystem.cs
+++ /dev/null
@@ -1,91 +0,0 @@
-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/Overlays/EquipmentHudSystem.cs b/Content.Client/Overlays/EquipmentHudSystem.cs
index f3c556961a5..502a1f36274 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(Entity ent, ref ComponentStartup args)
+ private void OnStartup(EntityUid uid, T component, ComponentStartup args)
{
- RefreshOverlay();
+ RefreshOverlay(uid);
}
- private void OnRemove(Entity ent, ref ComponentRemove args)
+ private void OnRemove(EntityUid uid, T component, ComponentRemove args)
{
- RefreshOverlay();
+ RefreshOverlay(uid);
}
private void OnPlayerAttached(LocalPlayerAttachedEvent args)
{
- RefreshOverlay();
+ RefreshOverlay(args.Entity);
}
private void OnPlayerDetached(LocalPlayerDetachedEvent args)
{
- if (_player.LocalSession?.AttachedEntity is null)
+ if (_player.LocalSession?.AttachedEntity == null)
Deactivate();
}
- private void OnCompEquip(Entity ent, ref GotEquippedEvent args)
+ private void OnCompEquip(EntityUid uid, T component, GotEquippedEvent args)
{
- RefreshOverlay();
+ RefreshOverlay(args.Equipee);
}
- private void OnCompUnequip(Entity ent, ref GotUnequippedEvent args)
+ private void OnCompUnequip(EntityUid uid, T component, GotUnequippedEvent args)
{
- RefreshOverlay();
+ RefreshOverlay(args.Equipee);
}
private void OnRoundRestart(RoundRestartCleanupEvent args)
@@ -92,24 +92,24 @@ private void OnRoundRestart(RoundRestartCleanupEvent args)
Deactivate();
}
- protected virtual void OnRefreshEquipmentHud(Entity ent, ref InventoryRelayedEvent> args)
+ protected virtual void OnRefreshEquipmentHud(EntityUid uid, T component, InventoryRelayedEvent> args)
{
- OnRefreshComponentHud(ent, ref args.Args);
+ OnRefreshComponentHud(uid, component, args.Args);
}
- protected virtual void OnRefreshComponentHud(Entity ent, ref RefreshEquipmentHudEvent args)
+ protected virtual void OnRefreshComponentHud(EntityUid uid, T component, RefreshEquipmentHudEvent args)
{
args.Active = true;
- args.Components.Add(ent.Comp);
+ args.Components.Add(component);
}
- protected void RefreshOverlay()
+ protected void RefreshOverlay(EntityUid uid)
{
- if (_player.LocalSession?.AttachedEntity is not { } entity)
+ if (uid != _player.LocalSession?.AttachedEntity)
return;
var ev = new RefreshEquipmentHudEvent(TargetSlots);
- RaiseLocalEvent(entity, ref ev);
+ RaiseLocalEvent(uid, ev);
if (ev.Active)
Update(ev);
diff --git a/Content.Client/Overlays/ShowHealthBarsSystem.cs b/Content.Client/Overlays/ShowHealthBarsSystem.cs
index 9fefe93094e..b23209ff202 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();
+ RefreshOverlay(ent);
}
protected override void UpdateInternal(RefreshEquipmentHudEvent component)
diff --git a/Content.Client/Overlays/ShowHealthIconsSystem.cs b/Content.Client/Overlays/ShowHealthIconsSystem.cs
index 3301261bd09..b4d845e4217 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();
+ RefreshOverlay(ent);
}
private void OnGetStatusIconsEvent(Entity entity, ref GetStatusIconsEvent args)
diff --git a/Content.Client/Overlays/ShowMindShieldIconsSystem.cs b/Content.Client/Overlays/ShowMindShieldIconsSystem.cs
index 8f8b8e64077..cdb9c54fdfa 100644
--- a/Content.Client/Overlays/ShowMindShieldIconsSystem.cs
+++ b/Content.Client/Overlays/ShowMindShieldIconsSystem.cs
@@ -15,16 +15,6 @@ 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 7cef7d58b63..63f15837068 100644
--- a/Content.Client/ParticleAccelerator/UI/ParticleAcceleratorControlMenu.xaml
+++ b/Content.Client/ParticleAccelerator/UI/ParticleAcceleratorControlMenu.xaml
@@ -1,129 +1,50 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+ 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"
+ xmlns:customControls="clr-namespace:Content.Client.Administration.UI.CustomControls"
+ Title="{Loc 'particle-accelerator-control-menu-device-version-label'}"
+ MinSize="420 320"
+ SetSize="420 320">
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
+
+
+
-
+
-
-
-
-
-
-
+
+
@@ -137,47 +58,17 @@
-
-
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
diff --git a/Content.Client/Shuttles/UI/NavScreen.xaml.cs b/Content.Client/Shuttles/UI/NavScreen.xaml.cs
index e4727e93660..7236714ef29 100644
--- a/Content.Client/Shuttles/UI/NavScreen.xaml.cs
+++ b/Content.Client/Shuttles/UI/NavScreen.xaml.cs
@@ -81,19 +81,13 @@ protected override void Draw(DrawingHandleScreen handle)
// Get the positive reduced angle.
var displayRot = -worldRot.Reduced();
- 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}"));
+ GridPosition.Text = $"{worldPos.X:0.0}, {worldPos.Y:0.0}";
+ GridOrientation.Text = $"{displayRot.Degrees:0.0}";
var gridVelocity = gridBody.LinearVelocity;
gridVelocity = displayRot.RotateVec(gridVelocity);
// Get linear velocity relative to the console entity
- 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}"));
+ 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}";
}
}
diff --git a/Content.Client/Storage/StorageBoundUserInterface.cs b/Content.Client/Storage/StorageBoundUserInterface.cs
index bacc90eabff..b90977cbb4d 100644
--- a/Content.Client/Storage/StorageBoundUserInterface.cs
+++ b/Content.Client/Storage/StorageBoundUserInterface.cs
@@ -1,80 +1,39 @@
-using Content.Client.UserInterface.Systems.Storage;
-using Content.Client.UserInterface.Systems.Storage.Controls;
+using Content.Client.Storage.Systems;
using Content.Shared.Storage;
using JetBrains.Annotations;
-using Robust.Client.UserInterface;
namespace Content.Client.Storage;
[UsedImplicitly]
public sealed class StorageBoundUserInterface : BoundUserInterface
{
- private StorageWindow? _window;
+ [Dependency] private readonly IEntityManager _entManager = default!;
+
+ private readonly StorageSystem _storage;
+
+ [Obsolete] public override bool DeferredClose => false;
public StorageBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey)
{
+ IoCManager.InjectDependencies(this);
+ _storage = _entManager.System();
}
protected override void Open()
{
base.Open();
- _window = IoCManager.Resolve()
- .GetUIController()
- .CreateStorageWindow(Owner);
-
- if (EntMan.TryGetComponent(Owner, out StorageComponent? storage))
- {
- _window.UpdateContainer((Owner, storage));
- }
-
- _window.OnClose += Close;
- _window.FlagDirty();
- }
-
- public void Refresh()
- {
- _window?.FlagDirty();
- }
-
- public void Reclaim()
- {
- if (_window == null)
- return;
-
- _window.OnClose -= Close;
- _window.Orphan();
- _window = null;
+ if (_entManager.TryGetComponent(Owner, out var comp))
+ _storage.OpenStorageWindow((Owner, comp));
}
protected override void Dispose(bool disposing)
{
base.Dispose(disposing);
-
- Reclaim();
- }
-
- public void Hide()
- {
- if (_window == null)
- return;
-
- _window.Visible = false;
- }
-
- public void Show()
- {
- if (_window == null)
+ if (!disposing)
return;
- _window.Visible = true;
- }
-
- public void ReOpen()
- {
- _window?.Orphan();
- _window = null;
- Open();
+ _storage.CloseStorageWindow(Owner);
}
}
diff --git a/Content.Client/Storage/Systems/StorageSystem.cs b/Content.Client/Storage/Systems/StorageSystem.cs
index ab4d9407b22..eea7b9ec797 100644
--- a/Content.Client/Storage/Systems/StorageSystem.cs
+++ b/Content.Client/Storage/Systems/StorageSystem.cs
@@ -4,8 +4,7 @@
using Content.Shared.Hands;
using Content.Shared.Storage;
using Content.Shared.Storage.EntitySystems;
-using Robust.Client.Player;
-using Robust.Shared.GameStates;
+using Robust.Shared.Collections;
using Robust.Shared.Map;
using Robust.Shared.Timing;
@@ -14,95 +13,114 @@ namespace Content.Client.Storage.Systems;
public sealed class StorageSystem : SharedStorageSystem
{
[Dependency] private readonly IGameTiming _timing = default!;
- [Dependency] private readonly IPlayerManager _player = default!;
[Dependency] private readonly EntityPickupAnimationSystem _entityPickupAnimation = default!;
- private Dictionary _oldStoredItems = new();
+ private readonly List> _openStorages = new();
+ public int OpenStorageAmount => _openStorages.Count;
+
+ public event Action>? StorageUpdated;
+ public event Action?>? StorageOrderChanged;
public override void Initialize()
{
base.Initialize();
- SubscribeLocalEvent(OnStorageHandleState);
+ SubscribeLocalEvent(OnShutdown);
SubscribeNetworkEvent(HandlePickupAnimation);
SubscribeAllEvent(HandleAnimatingInsertingEntities);
}
- private void OnStorageHandleState(EntityUid uid, StorageComponent component, ref ComponentHandleState args)
+ public override void UpdateUI(Entity entity)
{
- if (args.Current is not StorageComponentState state)
- return;
-
- component.Grid.Clear();
- component.Grid.AddRange(state.Grid);
- component.MaxItemSize = state.MaxItemSize;
- component.Whitelist = state.Whitelist;
- component.Blacklist = state.Blacklist;
-
- _oldStoredItems.Clear();
+ if (Resolve(entity.Owner, ref entity.Comp))
+ StorageUpdated?.Invoke((entity, entity.Comp));
+ }
- foreach (var item in component.StoredItems)
+ public void OpenStorageWindow(Entity entity)
+ {
+ if (_openStorages.Contains(entity))
{
- _oldStoredItems.Add(item.Key, item.Value);
- }
+ if (_openStorages.LastOrDefault() == entity)
+ {
+ CloseStorageWindow((entity, entity.Comp));
+ }
+ else
+ {
+ var storages = new ValueList>(_openStorages);
+ var reverseStorages = storages.Reverse();
- component.StoredItems.Clear();
+ foreach (var storageEnt in reverseStorages)
+ {
+ if (storageEnt == entity)
+ break;
- foreach (var (nent, location) in state.StoredItems)
- {
- var ent = EnsureEntity(nent, uid);
- component.StoredItems[ent] = location;
+ CloseStorageBoundUserInterface(storageEnt.Owner);
+ _openStorages.Remove(entity);
+ }
+ }
+ return;
}
- component.SavedLocations.Clear();
+ ClearNonParentStorages(entity);
+ _openStorages.Add(entity);
+ Entity? last = _openStorages.LastOrDefault();
+ StorageOrderChanged?.Invoke(last);
+ }
- foreach (var loc in state.SavedLocations)
- {
- component.SavedLocations[loc.Key] = new(loc.Value);
- }
+ public void CloseStorageWindow(Entity entity)
+ {
+ if (!Resolve(entity, ref entity.Comp, false))
+ return;
- var uiDirty = !component.StoredItems.SequenceEqual(_oldStoredItems);
+ if (!_openStorages.Contains((entity, entity.Comp)))
+ return;
- if (uiDirty && UI.TryGetOpenUi(uid, StorageComponent.StorageUiKey.Key, out var storageBui))
- {
- storageBui.Refresh();
- // Make sure nesting still updated.
- var player = _player.LocalEntity;
+ var storages = new ValueList>(_openStorages);
+ var reverseStorages = storages.Reverse();
- if (NestedStorage && player != null && ContainerSystem.TryGetContainingContainer((uid, null, null), out var container) &&
- UI.TryGetOpenUi(container.Owner, StorageComponent.StorageUiKey.Key, out var containerBui))
- {
- containerBui.Hide();
- }
- else
- {
- storageBui.Show();
- }
+ foreach (var storage in reverseStorages)
+ {
+ CloseStorageBoundUserInterface(storage.Owner);
+ _openStorages.Remove(storage);
+ if (storage.Owner == entity.Owner)
+ break;
}
+
+ Entity? last = null;
+ if (_openStorages.Any())
+ last = _openStorages.LastOrDefault();
+ StorageOrderChanged?.Invoke(last);
}
- public override void UpdateUI(Entity entity)
+ private void ClearNonParentStorages(EntityUid uid)
{
- if (UI.TryGetOpenUi(entity.Owner, StorageComponent.StorageUiKey.Key, out var sBui))
+ var storages = new ValueList>(_openStorages);
+ var reverseStorages = storages.Reverse();
+
+ foreach (var storage in reverseStorages)
{
- sBui.Refresh();
+ if (storage.Comp.Container.Contains(uid))
+ break;
+
+ CloseStorageBoundUserInterface(storage.Owner);
+ _openStorages.Remove(storage);
}
}
- protected override void HideStorageWindow(EntityUid uid, EntityUid actor)
+ private void CloseStorageBoundUserInterface(Entity entity)
{
- if (UI.TryGetOpenUi(uid, StorageComponent.StorageUiKey.Key, out var storageBui))
- {
- storageBui.Hide();
- }
+ if (!Resolve(entity, ref entity.Comp, false))
+ return;
+
+ if (entity.Comp.ClientOpenInterfaces.GetValueOrDefault(StorageComponent.StorageUiKey.Key) is not { } bui)
+ return;
+
+ bui.Close();
}
- protected override void ShowStorageWindow(EntityUid uid, EntityUid actor)
+ private void OnShutdown(Entity ent, ref ComponentShutdown args)
{
- if (UI.TryGetOpenUi(uid, StorageComponent.StorageUiKey.Key, out var storageBui))
- {
- storageBui.Show();
- }
+ CloseStorageWindow((ent, ent.Comp));
}
///
@@ -124,7 +142,7 @@ public void PickupAnimation(EntityUid item, EntityCoordinates initialCoords, Ent
{
if (!_timing.IsFirstTimePredicted)
return;
-
+
if (TransformSystem.InRange(finalCoords, initialCoords, 0.1f) ||
!Exists(initialCoords.EntityId) || !Exists(finalCoords.EntityId))
{
diff --git a/Content.Client/UserInterface/Systems/DamageOverlays/DamageOverlayUiController.cs b/Content.Client/UserInterface/Systems/DamageOverlays/DamageOverlayUiController.cs
index 9d9dd309116..c10c33a9902 100644
--- a/Content.Client/UserInterface/Systems/DamageOverlays/DamageOverlayUiController.cs
+++ b/Content.Client/UserInterface/Systems/DamageOverlays/DamageOverlayUiController.cs
@@ -3,7 +3,6 @@
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;
@@ -95,11 +94,7 @@ private void UpdateOverlays(EntityUid entity, MobStateComponent? mobState, Damag
{
case MobState.Alive:
{
- if (EntityManager.HasComponent(entity))
- {
- _overlay.BruteLevel = 0;
- }
- else if (damageable.DamagePerGroup.TryGetValue("Brute", out var bruteDamage))
+ if (damageable.DamagePerGroup.TryGetValue("Brute", out var bruteDamage))
{
_overlay.BruteLevel = FixedPoint2.Min(1f, bruteDamage / critThreshold).Float();
}
diff --git a/Content.Client/UserInterface/Systems/Hotbar/HotbarUIController.cs b/Content.Client/UserInterface/Systems/Hotbar/HotbarUIController.cs
index b89115da86b..2f266cfdd6b 100644
--- a/Content.Client/UserInterface/Systems/Hotbar/HotbarUIController.cs
+++ b/Content.Client/UserInterface/Systems/Hotbar/HotbarUIController.cs
@@ -31,12 +31,13 @@ private void OnScreenLoad()
ReloadHotbar();
}
- public void Setup(HandsContainer handsContainer)
+ public void Setup(HandsContainer handsContainer, StorageContainer storageContainer)
{
_inventory = UIManager.GetUIController();
_hands = UIManager.GetUIController();
_storage = UIManager.GetUIController();
_hands.RegisterHandContainer(handsContainer);
+ _storage.RegisterStorageContainer(storageContainer);
}
public void ReloadHotbar()
diff --git a/Content.Client/UserInterface/Systems/Hotbar/Widgets/HotbarGui.xaml b/Content.Client/UserInterface/Systems/Hotbar/Widgets/HotbarGui.xaml
index 153e02bd558..00ba1878b48 100644
--- a/Content.Client/UserInterface/Systems/Hotbar/Widgets/HotbarGui.xaml
+++ b/Content.Client/UserInterface/Systems/Hotbar/Widgets/HotbarGui.xaml
@@ -1,6 +1,7 @@
+
();
- hotbarController.Setup(HandContainer);
+ hotbarController.Setup(HandContainer, StoragePanel);
LayoutContainer.SetGrowVertical(this, LayoutContainer.GrowDirection.Begin);
}
diff --git a/Content.Client/UserInterface/Systems/Storage/Controls/ItemGridPiece.cs b/Content.Client/UserInterface/Systems/Storage/Controls/ItemGridPiece.cs
index f4c4158b5ce..dd9986e4c6e 100644
--- a/Content.Client/UserInterface/Systems/Storage/Controls/ItemGridPiece.cs
+++ b/Content.Client/UserInterface/Systems/Storage/Controls/ItemGridPiece.cs
@@ -59,7 +59,7 @@ public ItemGridPiece(Entity entity, ItemStorageLocation location,
Location = location;
Visible = true;
- MouseFilter = MouseFilterMode.Stop;
+ MouseFilter = MouseFilterMode.Pass;
TooltipSupplier = SupplyTooltip;
@@ -105,11 +105,8 @@ protected override void Draw(DrawingHandleScreen handle)
return;
}
- if (_storageController.IsDragging && _storageController.DraggingGhost?.Entity == Entity &&
- _storageController.DraggingGhost != this)
- {
+ if (_storageController.IsDragging && _storageController.DraggingGhost?.Entity == Entity && _storageController.DraggingGhost != this)
return;
- }
var adjustedShape = _entityManager.System().GetAdjustedItemShape((Entity, itemComponent), Location.Rotation, Vector2i.Zero);
var boundingGrid = adjustedShape.GetBoundingBox();
diff --git a/Content.Client/UserInterface/Systems/Storage/Controls/StorageWindow.cs b/Content.Client/UserInterface/Systems/Storage/Controls/StorageContainer.cs
similarity index 64%
rename from Content.Client/UserInterface/Systems/Storage/Controls/StorageWindow.cs
rename to Content.Client/UserInterface/Systems/Storage/Controls/StorageContainer.cs
index 88b4c06d72c..a9d7e098265 100644
--- a/Content.Client/UserInterface/Systems/Storage/Controls/StorageWindow.cs
+++ b/Content.Client/UserInterface/Systems/Storage/Controls/StorageContainer.cs
@@ -3,9 +3,7 @@
using System.Numerics;
using Content.Client.Hands.Systems;
using Content.Client.Items.Systems;
-using Content.Client.Storage;
using Content.Client.Storage.Systems;
-using Content.Shared.IdentityManagement;
using Content.Shared.Input;
using Content.Shared.Item;
using Content.Shared.Storage;
@@ -13,14 +11,12 @@
using Robust.Client.UserInterface;
using Robust.Client.UserInterface.Controls;
using Robust.Client.UserInterface.CustomControls;
-using Robust.Shared.Collections;
-using Robust.Shared.Containers;
using Robust.Shared.Timing;
using Robust.Shared.Utility;
namespace Content.Client.UserInterface.Systems.Storage.Controls;
-public sealed class StorageWindow : BaseWindow
+public sealed class StorageContainer : BaseWindow
{
[Dependency] private readonly IEntityManager _entity = default!;
private readonly StorageUIController _storageController;
@@ -31,20 +27,6 @@ public sealed class StorageWindow : BaseWindow
private readonly GridContainer _backgroundGrid;
private readonly GridContainer _sidebar;
- private Control _titleContainer;
- private Label _titleLabel;
-
- // Needs to be nullable in case a piece is in default spot.
- private readonly Dictionary _pieces = new();
- private readonly List _controlGrid = new();
-
- private ValueList _contained = new();
- private ValueList _toRemove = new();
-
- private TextureButton? _backButton;
-
- private bool _isDirty;
-
public event Action? OnPiecePressed;
public event Action? OnPieceUnpressed;
@@ -69,10 +51,9 @@ public sealed class StorageWindow : BaseWindow
private readonly string _sidebarFatTexturePath = "Storage/sidebar_fat";
private Texture? _sidebarFatTexture;
- public StorageWindow()
+ public StorageContainer()
{
IoCManager.InjectDependencies(this);
- Resizable = false;
_storageController = UserInterfaceManager.GetUIController();
@@ -82,7 +63,6 @@ public StorageWindow()
_sidebar = new GridContainer
{
- Name = "SideBar",
HSeparationOverride = 0,
VSeparationOverride = 0,
Columns = 1
@@ -90,48 +70,21 @@ public StorageWindow()
_pieceGrid = new GridContainer
{
- Name = "PieceGrid",
HSeparationOverride = 0,
VSeparationOverride = 0
};
_backgroundGrid = new GridContainer
{
- Name = "BackgroundGrid",
HSeparationOverride = 0,
VSeparationOverride = 0
};
- _titleLabel = new Label()
- {
- HorizontalExpand = true,
- Name = "StorageLabel",
- ClipText = true,
- Text = "Dummy",
- StyleClasses =
- {
- "FancyWindowTitle",
- }
- };
-
- _titleContainer = new PanelContainer()
- {
- StyleClasses =
- {
- "WindowHeadingBackground"
- },
- Children =
- {
- _titleLabel
- }
- };
-
var container = new BoxContainer
{
Orientation = BoxContainer.LayoutOrientation.Vertical,
Children =
{
- _titleContainer,
new BoxContainer
{
Orientation = BoxContainer.LayoutOrientation.Horizontal,
@@ -177,22 +130,12 @@ public void UpdateContainer(Entity? entity)
if (entity == null)
return;
- if (UserInterfaceManager.GetUIController().WindowTitle)
- {
- _titleLabel.Text = Identity.Name(entity.Value, _entity);
- _titleContainer.Visible = true;
- }
- else
- {
- _titleContainer.Visible = false;
- }
-
BuildGridRepresentation();
}
private void BuildGridRepresentation()
{
- if (!_entity.TryGetComponent(StorageEntity, out var comp) || comp.Grid.Count == 0)
+ if (!_entity.TryGetComponent(StorageEntity, out var comp) || !comp.Grid.Any())
return;
var boundingGrid = comp.Grid.GetBoundingBox();
@@ -201,13 +144,12 @@ private void BuildGridRepresentation()
#region Sidebar
_sidebar.Children.Clear();
- var rows = boundingGrid.Height + 1;
- _sidebar.Rows = rows;
-
+ _sidebar.Rows = boundingGrid.Height + 1;
var exitButton = new TextureButton
{
- Name = "ExitButton",
- TextureNormal = _exitTexture,
+ TextureNormal = _entity.System().OpenStorageAmount == 1
+ ?_exitTexture
+ : _backTexture,
Scale = new Vector2(2, 2),
};
exitButton.OnPressed += _ =>
@@ -223,10 +165,8 @@ private void BuildGridRepresentation()
args.Handle();
}
};
-
var exitContainer = new BoxContainer
{
- Name = "ExitContainer",
Children =
{
new TextureRect
@@ -242,70 +182,28 @@ private void BuildGridRepresentation()
}
}
};
-
_sidebar.AddChild(exitContainer);
- var offset = 2;
-
- if (_entity.System().NestedStorage && rows > 0)
+ for (var i = 0; i < boundingGrid.Height - 1; i++)
{
- _backButton = new TextureButton
- {
- TextureNormal = _backTexture,
- Scale = new Vector2(2, 2),
- };
- _backButton.OnPressed += _ =>
- {
- var containerSystem = _entity.System();
-
- if (containerSystem.TryGetContainingContainer(StorageEntity.Value, out var container) &&
- _entity.TryGetComponent(container.Owner, out StorageComponent? storage))
- {
- Close();
-
- if (_entity.System()
- .TryGetOpenUi(container.Owner,
- StorageComponent.StorageUiKey.Key,
- out var parentBui))
- {
- parentBui.Show();
- }
- }
- };
-
- var backContainer = new BoxContainer
+ _sidebar.AddChild(new TextureRect
{
- Name = "ExitContainer",
- Children =
- {
- new TextureRect
- {
- Texture = rows > 2 ? _sidebarMiddleTexture : _sidebarBottomTexture,
- TextureScale = new Vector2(2, 2),
- Children =
- {
- _backButton,
- }
- }
- }
- };
-
- _sidebar.AddChild(backContainer);
+ Texture = _sidebarMiddleTexture,
+ TextureScale = new Vector2(2, 2),
+ });
}
- var fillerRows = rows - offset;
-
- for (var i = 0; i < fillerRows; i++)
+ if (boundingGrid.Height > 0)
{
_sidebar.AddChild(new TextureRect
{
- Texture = i != (fillerRows - 1) ? _sidebarMiddleTexture : _sidebarBottomTexture,
+ Texture = _sidebarBottomTexture,
TextureScale = new Vector2(2, 2),
});
}
#endregion
- FlagDirty();
+ BuildItemPieces();
}
public void BuildBackground()
@@ -342,127 +240,70 @@ public void BuildBackground()
}
}
- public void Reclaim(ItemStorageLocation location, ItemGridPiece draggingGhost)
- {
- draggingGhost.OnPiecePressed += OnPiecePressed;
- draggingGhost.OnPieceUnpressed += OnPieceUnpressed;
- _pieces[draggingGhost.Entity] = (location, draggingGhost);
- draggingGhost.Location = location;
- var controlIndex = GetGridIndex(draggingGhost);
- _controlGrid[controlIndex].AddChild(draggingGhost);
- }
-
- private int GetGridIndex(ItemGridPiece piece)
- {
- return piece.Location.Position.X + piece.Location.Position.Y * _pieceGrid.Columns;
- }
-
- public void FlagDirty()
- {
- _isDirty = true;
- }
-
- public void RemoveGrid(ItemGridPiece control)
- {
- control.Orphan();
- _pieces.Remove(control.Entity);
- control.OnPiecePressed -= OnPiecePressed;
- control.OnPieceUnpressed -= OnPieceUnpressed;
- }
-
public void BuildItemPieces()
{
if (!_entity.TryGetComponent(StorageEntity, out var storageComp))
return;
- if (storageComp.Grid.Count == 0)
+ if (!storageComp.Grid.Any())
return;
var boundingGrid = storageComp.Grid.GetBoundingBox();
var size = _emptyTexture!.Size * 2;
- _contained.Clear();
- _contained.AddRange(storageComp.Container.ContainedEntities.Reverse());
-
- // Build the grid representation
- if (_pieceGrid.Rows - 1 != boundingGrid.Height || _pieceGrid.Columns - 1 != boundingGrid.Width)
- {
- _pieceGrid.Rows = boundingGrid.Height + 1;
- _pieceGrid.Columns = boundingGrid.Width + 1;
- _controlGrid.Clear();
+ var containedEntities = storageComp.Container.ContainedEntities.Reverse().ToArray();
- for (var y = boundingGrid.Bottom; y <= boundingGrid.Top; y++)
- {
- for (var x = boundingGrid.Left; x <= boundingGrid.Right; x++)
- {
- var control = new Control
- {
- MinSize = size
- };
+ //todo. at some point, we may want to only rebuild the pieces that have actually received new data.
- _controlGrid.Add(control);
- _pieceGrid.AddChild(control);
- }
- }
- }
-
- _toRemove.Clear();
-
- // Remove entities no longer relevant / Update existing ones
- foreach (var (ent, data) in _pieces)
+ _pieceGrid.RemoveAllChildren();
+ _pieceGrid.Rows = boundingGrid.Height + 1;
+ _pieceGrid.Columns = boundingGrid.Width + 1;
+ for (var y = boundingGrid.Bottom; y <= boundingGrid.Top; y++)
{
- if (storageComp.StoredItems.TryGetValue(ent, out var updated))
+ for (var x = boundingGrid.Left; x <= boundingGrid.Right; x++)
{
- if (data.Loc.Equals(updated))
+ var control = new Control
{
- DebugTools.Assert(data.Control.Location == updated);
- continue;
- }
+ MinSize = size
+ };
- // Update
- data.Control.Location = updated;
- var index = GetGridIndex(data.Control);
- data.Control.Orphan();
- _controlGrid[index].AddChild(data.Control);
- _pieces[ent] = (updated, data.Control);
- continue;
- }
+ var currentPosition = new Vector2i(x, y);
- _toRemove.Add(ent);
- }
+ foreach (var (itemEnt, itemPos) in storageComp.StoredItems)
+ {
+ if (itemPos.Position != currentPosition)
+ continue;
- foreach (var ent in _toRemove)
- {
- _pieces.Remove(ent, out var data);
- data.Control.Orphan();
- }
+ if (_entity.TryGetComponent(itemEnt, out var itemEntComponent))
+ {
+ ItemGridPiece gridPiece;
- // Add new ones
- foreach (var (ent, loc) in storageComp.StoredItems)
- {
- if (_pieces.TryGetValue(ent, out var existing))
- {
- DebugTools.Assert(existing.Loc == loc);
- continue;
- }
+ if (_storageController.CurrentlyDragging?.Entity is { } dragging
+ && dragging == itemEnt)
+ {
+ _storageController.CurrentlyDragging.Orphan();
+ gridPiece = _storageController.CurrentlyDragging;
+ }
+ else
+ {
+ gridPiece = new ItemGridPiece((itemEnt, itemEntComponent), itemPos, _entity)
+ {
+ MinSize = size,
+ Marked = Array.IndexOf(containedEntities, itemEnt) switch
+ {
+ 0 => ItemGridPieceMarks.First,
+ 1 => ItemGridPieceMarks.Second,
+ _ => null,
+ }
+ };
+ gridPiece.OnPiecePressed += OnPiecePressed;
+ gridPiece.OnPieceUnpressed += OnPieceUnpressed;
+ }
- if (_entity.TryGetComponent(ent, out var itemEntComponent))
- {
- var gridPiece = new ItemGridPiece((ent, itemEntComponent), loc, _entity)
- {
- MinSize = size,
- Marked = _contained.IndexOf(ent) switch
- {
- 0 => ItemGridPieceMarks.First,
- 1 => ItemGridPieceMarks.Second,
- _ => null,
+ control.AddChild(gridPiece);
}
- };
- gridPiece.OnPiecePressed += OnPiecePressed;
- gridPiece.OnPieceUnpressed += OnPieceUnpressed;
- var controlIndex = loc.Position.X + loc.Position.Y * (boundingGrid.Width + 1);
+ }
- _controlGrid[controlIndex].AddChild(gridPiece);
- _pieces[ent] = (loc, gridPiece);
+ _pieceGrid.AddChild(control);
}
}
}
@@ -474,35 +315,6 @@ protected override void FrameUpdate(FrameEventArgs args)
if (!IsOpen)
return;
- if (_isDirty)
- {
- _isDirty = false;
- BuildItemPieces();
- }
-
- var containerSystem = _entity.System();
-
- if (_backButton != null)
- {
- if (StorageEntity != null && _entity.System().NestedStorage)
- {
- if (containerSystem.TryGetContainingContainer(StorageEntity.Value, out var container) &&
- _entity.HasComponent(container.Owner))
- {
- _backButton.Visible = true;
- }
- else
- {
- _backButton.Visible = false;
- }
- }
- // Hide the button.
- else
- {
- _backButton.Visible = false;
- }
- }
-
var itemSystem = _entity.System();
var storageSystem = _entity.System();
var handsSystem = _entity.System();
@@ -512,7 +324,7 @@ protected override void FrameUpdate(FrameEventArgs args)
child.ModulateSelfOverride = Color.FromHex("#222222");
}
- if (UserInterfaceManager.CurrentlyHovered is StorageWindow con && con != this)
+ if (UserInterfaceManager.CurrentlyHovered is StorageContainer con && con != this)
return;
if (!_entity.TryGetComponent(StorageEntity, out var storageComponent))
@@ -561,7 +373,7 @@ protected override void FrameUpdate(FrameEventArgs args)
continue;
float spot = 0;
- var marked = new ValueList();
+ var marked = new List();
foreach (var location in locations.Value)
{
@@ -688,4 +500,14 @@ protected override void KeyBindDown(GUIBoundKeyEventArgs args)
}
}
}
+
+ public override void Close()
+ {
+ base.Close();
+
+ if (StorageEntity == null)
+ return;
+
+ _entity.System().CloseStorageWindow(StorageEntity.Value);
+ }
}
diff --git a/Content.Client/UserInterface/Systems/Storage/StorageUIController.cs b/Content.Client/UserInterface/Systems/Storage/StorageUIController.cs
index cbcf4293e8d..1e61ad98380 100644
--- a/Content.Client/UserInterface/Systems/Storage/StorageUIController.cs
+++ b/Content.Client/UserInterface/Systems/Storage/StorageUIController.cs
@@ -2,7 +2,6 @@
using Content.Client.Examine;
using Content.Client.Hands.Systems;
using Content.Client.Interaction;
-using Content.Client.Storage;
using Content.Client.Storage.Systems;
using Content.Client.UserInterface.Systems.Hotbar.Widgets;
using Content.Client.UserInterface.Systems.Storage.Controls;
@@ -10,9 +9,9 @@
using Content.Shared.CCVar;
using Content.Shared.Input;
using Content.Shared.Interaction;
+using Content.Shared.Item;
using Content.Shared.Storage;
using Robust.Client.Input;
-using Robust.Client.Player;
using Robust.Client.UserInterface;
using Robust.Client.UserInterface.Controllers;
using Robust.Client.UserInterface.Controls;
@@ -24,28 +23,19 @@ namespace Content.Client.UserInterface.Systems.Storage;
public sealed class StorageUIController : UIController, IOnSystemChanged
{
- /*
- * Things are a bit over the shop but essentially
- * - Clicking into storagewindow is handled via storagewindow
- * - Clicking out of it is via ItemGridPiece
- * - Dragging around is handled here
- * - Drawing is handled via ItemGridPiece
- * - StorageSystem handles any sim stuff around open windows.
- */
-
[Dependency] private readonly IConfigurationManager _configuration = default!;
+ [Dependency] private readonly IEntityManager _entity = default!;
[Dependency] private readonly IInputManager _input = default!;
- [Dependency] private readonly IPlayerManager _player = default!;
- [UISystemDependency] private readonly StorageSystem _storage = default!;
-
- ///
- /// Cached positions for opening nested storage.
- ///
- private readonly Dictionary _reservedStorage = new();
+ [Dependency] private readonly IUserInterfaceManager _ui = default!;
private readonly DragDropHelper _menuDragHelper;
+ private StorageContainer? _container;
+
+ private Vector2? _lastContainerPosition;
- public ItemGridPiece? DraggingGhost => _menuDragHelper.Dragged;
+ private HotbarGui? Hotbar => UIManager.GetActiveUIWidgetOrNull();
+
+ public ItemGridPiece? DraggingGhost;
public Angle DraggingRotation = Angle.Zero;
public bool StaticStorageUIEnabled;
public bool OpaqueStorageWindow;
@@ -53,8 +43,6 @@ public sealed class StorageUIController : UIController, IOnSystemChanged _menuDragHelper.IsDragging;
public ItemGridPiece? CurrentlyDragging => _menuDragHelper.Dragged;
- public bool WindowTitle { get; private set; } = false;
-
public StorageUIController()
{
_menuDragHelper = new DragDropHelper(OnMenuBeginDrag, OnMenuContinueDrag, OnMenuEndDrag);
@@ -64,93 +52,106 @@ public override void Initialize()
{
base.Initialize();
- UIManager.OnScreenChanged += OnScreenChange;
-
_configuration.OnValueChanged(CCVars.StaticStorageUI, OnStaticStorageChanged, true);
_configuration.OnValueChanged(CCVars.OpaqueStorageWindow, OnOpaqueWindowChanged, true);
- _configuration.OnValueChanged(CCVars.StorageWindowTitle, OnStorageWindowTitle, true);
}
- private void OnScreenChange((UIScreen? Old, UIScreen? New) obj)
+ public void OnSystemLoaded(StorageSystem system)
{
- // Handle reconnects with hotbargui.
-
- // Essentially HotbarGui / the screen gets loaded AFTER gamestates at the moment (because clientgameticker manually changes it via event)
- // and changing this may be a massive change.
- // So instead we'll just manually reload it for now.
- if (!StaticStorageUIEnabled ||
- obj.New == null ||
- !EntityManager.TryGetComponent(_player.LocalEntity, out UserInterfaceUserComponent? userComp))
- {
+ _input.FirstChanceOnKeyEvent += OnMiddleMouse;
+ system.StorageUpdated += OnStorageUpdated;
+ system.StorageOrderChanged += OnStorageOrderChanged;
+ }
+
+ public void OnSystemUnloaded(StorageSystem system)
+ {
+ _input.FirstChanceOnKeyEvent -= OnMiddleMouse;
+ system.StorageUpdated -= OnStorageUpdated;
+ system.StorageOrderChanged -= OnStorageOrderChanged;
+ }
+
+ private void OnStorageOrderChanged(Entity? nullEnt)
+ {
+ if (_container == null)
return;
- }
- // UISystemDependency not injected at this point so do it the old fashion way, I love ordering issues.
- var uiSystem = EntityManager.System();
+ if (IsDragging)
+ _menuDragHelper.EndDrag();
+
+ _container.UpdateContainer(nullEnt);
- foreach (var bui in uiSystem.GetActorUis((_player.LocalEntity.Value, userComp)))
+ if (nullEnt is not null)
{
- if (!uiSystem.TryGetOpenUi(bui.Entity, StorageComponent.StorageUiKey.Key, out var storageBui))
- continue;
+ // center it if we knock it off screen somehow.
+ if (!StaticStorageUIEnabled &&
+ (_lastContainerPosition == null ||
+ _lastContainerPosition.Value.X < 0 ||
+ _lastContainerPosition.Value.Y < 0 ||
+ _lastContainerPosition.Value.X > _ui.WindowRoot.Width ||
+ _lastContainerPosition.Value.Y > _ui.WindowRoot.Height))
+ {
+ _container.OpenCenteredAt(new Vector2(0.5f, 0.75f));
+ }
+ else
+ {
+ _container.Open();
- storageBui.ReOpen();
- }
- }
+ var pos = !StaticStorageUIEnabled && _lastContainerPosition != null
+ ? _lastContainerPosition.Value
+ : Vector2.Zero;
- private void OnStorageWindowTitle(bool obj)
- {
- WindowTitle = obj;
- }
+ LayoutContainer.SetPosition(_container, pos);
+ }
- private void OnOpaqueWindowChanged(bool obj)
- {
- OpaqueStorageWindow = obj;
+ if (StaticStorageUIEnabled)
+ {
+ // we have to orphan it here because Open() sets the parent.
+ _container.Orphan();
+ Hotbar?.StorageContainer.AddChild(_container);
+ }
+ _lastContainerPosition = _container.GlobalPosition;
+ }
+ else
+ {
+ _lastContainerPosition = _container.GlobalPosition;
+ _container.Close();
+ }
}
private void OnStaticStorageChanged(bool obj)
{
+ if (StaticStorageUIEnabled == obj)
+ return;
+
StaticStorageUIEnabled = obj;
- }
+ _lastContainerPosition = null;
- public StorageWindow CreateStorageWindow(EntityUid uid)
- {
- var window = new StorageWindow();
- window.MouseFilter = Control.MouseFilterMode.Pass;
+ if (_container == null)
+ return;
- window.OnPiecePressed += (args, piece) =>
- {
- OnPiecePressed(args, window, piece);
- };
- window.OnPieceUnpressed += (args, piece) =>
- {
- OnPieceUnpressed(args, window, piece);
- };
+ if (!_container.IsOpen)
+ return;
+ _container.Orphan();
if (StaticStorageUIEnabled)
{
- UIManager.GetActiveUIWidgetOrNull()?.StorageContainer.AddChild(window);
+ Hotbar?.StorageContainer.AddChild(_container);
}
else
{
- window.OpenCenteredLeft();
-
- if (_reservedStorage.Remove(uid, out var pos))
- {
- LayoutContainer.SetPosition(window, pos);
- }
+ _ui.WindowRoot.AddChild(_container);
}
- return window;
- }
-
- public void OnSystemLoaded(StorageSystem system)
- {
- _input.FirstChanceOnKeyEvent += OnMiddleMouse;
+ if (_entity.TryGetComponent(_container.StorageEntity, out var comp))
+ OnStorageOrderChanged((_container.StorageEntity.Value, comp));
}
- public void OnSystemUnloaded(StorageSystem system)
+ private void OnOpaqueWindowChanged(bool obj)
{
- _input.FirstChanceOnKeyEvent -= OnMiddleMouse;
+ if (OpaqueStorageWindow == obj)
+ return;
+ OpaqueStorageWindow = obj;
+ _container?.BuildBackground();
}
/// One might ask, Hey Emo, why are you parsing raw keyboard input just to rotate a rectangle?
@@ -189,7 +190,7 @@ private void OnMiddleMouse(KeyEventArgs keyEvent, KeyEventType type)
binding.Mod3 == Keyboard.Key.Control))
return;
- if (!IsDragging && EntityManager.System().GetActiveHandEntity() == null)
+ if (!IsDragging && _entity.System().GetActiveHandEntity() == null)
return;
//clamp it to a cardinal.
@@ -197,18 +198,43 @@ private void OnMiddleMouse(KeyEventArgs keyEvent, KeyEventType type)
if (DraggingGhost != null)
DraggingGhost.Location.Rotation = DraggingRotation;
- if (IsDragging || UIManager.CurrentlyHovered is StorageWindow)
+ if (IsDragging || (_container != null && UIManager.CurrentlyHovered == _container))
keyEvent.Handle();
}
- private void OnPiecePressed(GUIBoundKeyEventArgs args, StorageWindow window, ItemGridPiece control)
+ private void OnStorageUpdated(Entity uid)
{
- if (IsDragging || !window.IsOpen)
+ if (_container?.StorageEntity != uid)
+ return;
+
+ _container.BuildItemPieces();
+ }
+
+ public void RegisterStorageContainer(StorageContainer container)
+ {
+ if (_container != null)
+ {
+ container.OnPiecePressed -= OnPiecePressed;
+ container.OnPieceUnpressed -= OnPieceUnpressed;
+ }
+
+ _container = container;
+ container.OnPiecePressed += OnPiecePressed;
+ container.OnPieceUnpressed += OnPieceUnpressed;
+
+ if (!StaticStorageUIEnabled)
+ _container.Orphan();
+ }
+
+ private void OnPiecePressed(GUIBoundKeyEventArgs args, ItemGridPiece control)
+ {
+ if (IsDragging || !_container?.IsOpen == true)
return;
if (args.Function == ContentKeyFunctions.MoveStoredItem)
{
DraggingRotation = control.Location.Rotation;
+
_menuDragHelper.MouseDown(control);
_menuDragHelper.Update(0f);
@@ -216,17 +242,17 @@ private void OnPiecePressed(GUIBoundKeyEventArgs args, StorageWindow window, Ite
}
else if (args.Function == ContentKeyFunctions.SaveItemLocation)
{
- if (window.StorageEntity is not {} storage)
+ if (_container?.StorageEntity is not {} storage)
return;
- EntityManager.RaisePredictiveEvent(new StorageSaveItemLocationEvent(
- EntityManager.GetNetEntity(control.Entity),
- EntityManager.GetNetEntity(storage)));
+ _entity.RaisePredictiveEvent(new StorageSaveItemLocationEvent(
+ _entity.GetNetEntity(control.Entity),
+ _entity.GetNetEntity(storage)));
args.Handle();
}
else if (args.Function == ContentKeyFunctions.ExamineEntity)
{
- EntityManager.System().DoExamine(control.Entity);
+ _entity.System().DoExamine(control.Entity);
args.Handle();
}
else if (args.Function == EngineKeyFunctions.UseSecondary)
@@ -236,102 +262,62 @@ private void OnPiecePressed(GUIBoundKeyEventArgs args, StorageWindow window, Ite
}
else if (args.Function == ContentKeyFunctions.ActivateItemInWorld)
{
- EntityManager.RaisePredictiveEvent(
- new InteractInventorySlotEvent(EntityManager.GetNetEntity(control.Entity), altInteract: false));
+ _entity.RaisePredictiveEvent(
+ new InteractInventorySlotEvent(_entity.GetNetEntity(control.Entity), altInteract: false));
args.Handle();
}
else if (args.Function == ContentKeyFunctions.AltActivateItemInWorld)
{
- EntityManager.RaisePredictiveEvent(new InteractInventorySlotEvent(EntityManager.GetNetEntity(control.Entity), altInteract: true));
+ _entity.RaisePredictiveEvent(new InteractInventorySlotEvent(_entity.GetNetEntity(control.Entity), altInteract: true));
args.Handle();
}
-
- window.FlagDirty();
}
- private void OnPieceUnpressed(GUIBoundKeyEventArgs args, StorageWindow window, ItemGridPiece control)
+ private void OnPieceUnpressed(GUIBoundKeyEventArgs args, ItemGridPiece control)
{
if (args.Function != ContentKeyFunctions.MoveStoredItem)
return;
- // Want to get the control under the dragged control.
- // This means we can drag the original control around (and not hide the original).
- control.MouseFilter = Control.MouseFilterMode.Ignore;
- var targetControl = UIManager.MouseGetControl(args.PointerLocation);
- var targetStorage = targetControl as StorageWindow;
- control.MouseFilter = Control.MouseFilterMode.Pass;
-
- var localPlayer = _player.LocalEntity;
- window.RemoveGrid(control);
- window.FlagDirty();
-
- // If we tried to drag it on top of another grid piece then cancel out.
- if (targetControl is ItemGridPiece || window.StorageEntity is not { } sourceStorage || localPlayer == null)
- {
- window.Reclaim(control.Location, control);
- args.Handle();
- _menuDragHelper.EndDrag();
+ if (_container?.StorageEntity is not { } storageEnt|| !_entity.TryGetComponent(storageEnt, out var storageComp))
return;
- }
- if (_menuDragHelper.IsDragging && DraggingGhost is { } draggingGhost)
+ if (DraggingGhost is { } draggingGhost)
{
var dragEnt = draggingGhost.Entity;
var dragLoc = draggingGhost.Location;
-
- // Dragging in the same storage
- // The existing ItemGridPiece just stops rendering but still exists so check if it's hovered.
- if (targetStorage == window)
- {
- var position = targetStorage.GetMouseGridPieceLocation(dragEnt, dragLoc);
- var newLocation = new ItemStorageLocation(DraggingRotation, position);
-
- EntityManager.RaisePredictiveEvent(new StorageSetItemLocationEvent(
- EntityManager.GetNetEntity(draggingGhost.Entity),
- EntityManager.GetNetEntity(sourceStorage),
- newLocation));
-
- window.Reclaim(newLocation, control);
- }
- // Dragging to new storage
- else if (targetStorage?.StorageEntity != null && targetStorage != window)
+ var itemSys = _entity.System();
+
+ var position = _container.GetMouseGridPieceLocation(dragEnt, dragLoc);
+ var itemBounding = itemSys.GetAdjustedItemShape(dragEnt, dragLoc).GetBoundingBox();
+ var gridBounding = storageComp.Grid.GetBoundingBox();
+
+ // The extended bounding box for if this is out of the window is the grid bounding box dimensions combined
+ // with the item shape bounding box dimensions. Plus 1 on the left for the sidebar. This makes it so that.
+ // dropping an item on the floor requires dragging it all the way out of the window.
+ var left = gridBounding.Left - itemBounding.Width - 1;
+ var bottom = gridBounding.Bottom - itemBounding.Height;
+ var top = gridBounding.Top;
+ var right = gridBounding.Right;
+ var lenientBounding = new Box2i(left, bottom, right, top);
+
+ if (lenientBounding.Contains(position))
{
- var position = targetStorage.GetMouseGridPieceLocation(dragEnt, dragLoc);
- var newLocation = new ItemStorageLocation(DraggingRotation, position);
-
- // Check it fits and we can move to hand (no free transfers).
- if (_storage.ItemFitsInGridLocation(
- (dragEnt, null),
- (targetStorage.StorageEntity.Value, null),
- newLocation))
- {
- // Can drop and move.
- EntityManager.RaisePredictiveEvent(new StorageTransferItemEvent(
- EntityManager.GetNetEntity(dragEnt),
- EntityManager.GetNetEntity(targetStorage.StorageEntity.Value),
- newLocation));
-
- targetStorage.Reclaim(newLocation, control);
- DraggingRotation = Angle.Zero;
- }
- else
- {
- // Cancel it (rather than dropping).
- window.Reclaim(dragLoc, control);
- }
+ _entity.RaisePredictiveEvent(new StorageSetItemLocationEvent(
+ _entity.GetNetEntity(draggingGhost.Entity),
+ _entity.GetNetEntity(storageEnt),
+ new ItemStorageLocation(DraggingRotation, position)));
}
- targetStorage?.FlagDirty();
+ _menuDragHelper.EndDrag();
+ _container?.BuildItemPieces();
}
- // If we just clicked, then take it out of the bag.
- else
+ else //if we just clicked, then take it out of the bag.
{
- EntityManager.RaisePredictiveEvent(new StorageInteractWithItemEvent(
- EntityManager.GetNetEntity(control.Entity),
- EntityManager.GetNetEntity(sourceStorage)));
+ _menuDragHelper.EndDrag();
+ _entity.RaisePredictiveEvent(new StorageInteractWithItemEvent(
+ _entity.GetNetEntity(control.Entity),
+ _entity.GetNetEntity(storageEnt)));
}
-
- _menuDragHelper.EndDrag();
args.Handle();
}
@@ -340,8 +326,14 @@ private bool OnMenuBeginDrag()
if (_menuDragHelper.Dragged is not { } dragged)
return false;
- DraggingGhost!.Orphan();
DraggingRotation = dragged.Location.Rotation;
+ DraggingGhost = new ItemGridPiece(
+ (dragged.Entity, _entity.GetComponent(dragged.Entity)),
+ dragged.Location,
+ _entity);
+ DraggingGhost.MouseFilter = Control.MouseFilterMode.Ignore;
+ DraggingGhost.Visible = true;
+ DraggingGhost.Orphan();
UIManager.PopupRoot.AddChild(DraggingGhost);
SetDraggingRotation();
@@ -352,7 +344,6 @@ private bool OnMenuContinueDrag(float frameTime)
{
if (DraggingGhost == null)
return false;
-
SetDraggingRotation();
return true;
}
@@ -365,7 +356,7 @@ private void SetDraggingRotation()
var offset = ItemGridPiece.GetCenterOffset(
(DraggingGhost.Entity, null),
new ItemStorageLocation(DraggingRotation, Vector2i.Zero),
- EntityManager);
+ _entity);
// I don't know why it divides the position by 2. Hope this helps! -emo
LayoutContainer.SetPosition(DraggingGhost, UIManager.MousePositionScaled.Position / 2 - offset );
@@ -375,13 +366,18 @@ private void OnMenuEndDrag()
{
if (DraggingGhost == null)
return;
-
+ DraggingGhost.Visible = false;
+ DraggingGhost = null;
DraggingRotation = Angle.Zero;
}
public override void FrameUpdate(FrameEventArgs args)
{
base.FrameUpdate(args);
+
_menuDragHelper.Update(args.DeltaSeconds);
+
+ if (!StaticStorageUIEnabled && _container?.Parent != null && _lastContainerPosition != null)
+ _lastContainerPosition = _container.GlobalPosition;
}
}
diff --git a/Content.Client/Viewport/ScalingViewport.cs b/Content.Client/Viewport/ScalingViewport.cs
index d9548d0f02b..ccd9636d776 100644
--- a/Content.Client/Viewport/ScalingViewport.cs
+++ b/Content.Client/Viewport/ScalingViewport.cs
@@ -144,7 +144,7 @@ protected override void KeyBindUp(GUIBoundKeyEventArgs args)
_inputManager.ViewportKeyEvent(this, args);
}
- protected override void Draw(IRenderHandle handle)
+ protected override void Draw(DrawingHandleScreen handle)
{
EnsureViewportCreated();
@@ -170,7 +170,7 @@ protected override void Draw(IRenderHandle handle)
var drawBox = GetDrawBox();
var drawBoxGlobal = drawBox.Translated(GlobalPixelPosition);
_viewport.RenderScreenOverlaysBelow(handle, this, drawBoxGlobal);
- handle.DrawingHandleScreen.DrawTextureRect(_viewport.RenderTarget.Texture, drawBox);
+ handle.DrawTextureRect(_viewport.RenderTarget.Texture, drawBox);
_viewport.RenderScreenOverlaysAbove(handle, this, drawBoxGlobal);
}
diff --git a/Content.Client/Weapons/Melee/MeleeWeaponSystem.Effects.cs b/Content.Client/Weapons/Melee/MeleeWeaponSystem.Effects.cs
index 9e20d2d5a9c..540d76c129b 100644
--- a/Content.Client/Weapons/Melee/MeleeWeaponSystem.Effects.cs
+++ b/Content.Client/Weapons/Melee/MeleeWeaponSystem.Effects.cs
@@ -138,7 +138,6 @@ 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/Wieldable/WieldableSystem.cs b/Content.Client/Wieldable/WieldableSystem.cs
deleted file mode 100644
index 2de837923c8..00000000000
--- a/Content.Client/Wieldable/WieldableSystem.cs
+++ /dev/null
@@ -1,49 +0,0 @@
-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.IntegrationTests/Tests/PostMapInitTest.cs b/Content.IntegrationTests/Tests/PostMapInitTest.cs
index b803dca35d1..c89fccf9e9d 100644
--- a/Content.IntegrationTests/Tests/PostMapInitTest.cs
+++ b/Content.IntegrationTests/Tests/PostMapInitTest.cs
@@ -97,8 +97,8 @@ public sealed class PostMapInitTest
"Amber",
"Loop",
"Plasma",
- "Elkridge",
- "Convex"
+ "Elkridge"
+
};
diff --git a/Content.Server/Access/AccessWireAction.cs b/Content.Server/Access/AccessWireAction.cs
index b3beb3967b9..7676ce489f4 100644
--- a/Content.Server/Access/AccessWireAction.cs
+++ b/Content.Server/Access/AccessWireAction.cs
@@ -1,6 +1,7 @@
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;
@@ -30,9 +31,11 @@ public override bool Cut(EntityUid user, Wire wire, AccessReaderComponent comp)
public override bool Mend(EntityUid user, Wire wire, AccessReaderComponent comp)
{
- comp.Enabled = true;
- EntityManager.Dirty(wire.Owner, comp);
-
+ if (!EntityManager.HasComponent(wire.Owner))
+ {
+ comp.Enabled = true;
+ EntityManager.Dirty(wire.Owner, comp);
+ }
return true;
}
@@ -55,7 +58,7 @@ private void AwaitPulseCancel(Wire wire)
{
if (!wire.IsCut)
{
- if (EntityManager.TryGetComponent(wire.Owner, out var access))
+ if (EntityManager.TryGetComponent(wire.Owner, out var access) && !EntityManager.HasComponent(wire.Owner))
{
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 da078840aba..af54bfee4bb 100644
--- a/Content.Server/Access/Systems/AccessOverriderSystem.cs
+++ b/Content.Server/Access/Systems/AccessOverriderSystem.cs
@@ -244,10 +244,6 @@ 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.cs b/Content.Server/Administration/Managers/BanManager.cs
index 2d76c434e9d..c65059f55dd 100644
--- a/Content.Server/Administration/Managers/BanManager.cs
+++ b/Content.Server/Administration/Managers/BanManager.cs
@@ -165,8 +165,6 @@ 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/Anomaly/Effects/TechAnomalySystem.cs b/Content.Server/Anomaly/Effects/TechAnomalySystem.cs
index 983cf2c8f46..9f81c64dbc1 100644
--- a/Content.Server/Anomaly/Effects/TechAnomalySystem.cs
+++ b/Content.Server/Anomaly/Effects/TechAnomalySystem.cs
@@ -116,11 +116,8 @@ private void OnSupercritical(Entity tech, ref AnomalySuper
if (_random.Prob(tech.Comp.EmagSupercritProbability))
{
- 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);
+ _emag.DoEmagEffect(tech, source);
+ _emag.DoEmagEffect(tech, sink);
}
CreateNewLink(tech, source, sink);
diff --git a/Content.Server/Atmos/Monitor/Systems/FireAlarmSystem.cs b/Content.Server/Atmos/Monitor/Systems/FireAlarmSystem.cs
index 6d768c12926..0a3ee4d7f7d 100644
--- a/Content.Server/Atmos/Monitor/Systems/FireAlarmSystem.cs
+++ b/Content.Server/Atmos/Monitor/Systems/FireAlarmSystem.cs
@@ -21,7 +21,6 @@ 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!;
@@ -78,18 +77,11 @@ private void OnInteractHand(EntityUid uid, FireAlarmComponent component, Interac
private void OnEmagged(EntityUid uid, FireAlarmComponent component, ref GotEmaggedEvent args)
{
- 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;
+ if (TryComp(uid, out var alarmable))
+ {
+ // Remove the atmos alarmable component permanently from this device.
+ _atmosAlarmable.ForceAlert(uid, AtmosAlarmType.Emagged, alarmable);
+ RemCompDeferred(uid);
+ }
}
}
diff --git a/Content.Server/Atmos/Piping/Binary/Components/GasVolumePumpComponent.cs b/Content.Server/Atmos/Piping/Binary/Components/GasVolumePumpComponent.cs
index 48cdaebb97c..36ced3887d2 100644
--- a/Content.Server/Atmos/Piping/Binary/Components/GasVolumePumpComponent.cs
+++ b/Content.Server/Atmos/Piping/Binary/Components/GasVolumePumpComponent.cs
@@ -1,5 +1,4 @@
using Content.Shared.Atmos;
-using Content.Shared.Guidebook;
namespace Content.Server.Atmos.Piping.Binary.Components
{
@@ -39,7 +38,6 @@ 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 3f388617de9..c0b496fae8c 100644
--- a/Content.Server/Atmos/Piping/Trinary/Components/PressureControlledValveComponent.cs
+++ b/Content.Server/Atmos/Piping/Trinary/Components/PressureControlledValveComponent.cs
@@ -1,5 +1,4 @@
using Content.Shared.Atmos;
-using Content.Shared.Guidebook;
namespace Content.Server.Atmos.Piping.Trinary.Components
{
@@ -28,7 +27,6 @@ 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 afbfb912497..1daa42d7c40 100644
--- a/Content.Server/Atmos/Piping/Unary/Components/GasCanisterComponent.cs
+++ b/Content.Server/Atmos/Piping/Unary/Components/GasCanisterComponent.cs
@@ -1,6 +1,5 @@
using Content.Shared.Atmos;
using Content.Shared.Containers.ItemSlots;
-using Content.Shared.Guidebook;
using Robust.Shared.Audio;
namespace Content.Server.Atmos.Piping.Unary.Components
@@ -62,12 +61,5 @@ 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 65755d62c56..7e082024a81 100644
--- a/Content.Server/Atmos/Piping/Unary/Components/GasOutletInjectorComponent.cs
+++ b/Content.Server/Atmos/Piping/Unary/Components/GasOutletInjectorComponent.cs
@@ -1,7 +1,6 @@
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
{
@@ -30,7 +29,6 @@ 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 f481443c943..5da4ec9fdf2 100644
--- a/Content.Server/Atmos/Piping/Unary/Components/GasThermoMachineComponent.cs
+++ b/Content.Server/Atmos/Piping/Unary/Components/GasThermoMachineComponent.cs
@@ -1,5 +1,4 @@
using Content.Shared.Atmos;
-using Content.Shared.Guidebook;
namespace Content.Server.Atmos.Piping.Unary.Components
{
@@ -14,7 +13,6 @@ 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)]
@@ -23,7 +21,6 @@ public sealed partial class GasThermoMachineComponent : Component
///
/// Tolerance for temperature setpoint hysteresis.
///
- [GuidebookData]
[DataField, ViewVariables(VVAccess.ReadOnly)]
public float TemperatureTolerance = 2f;
@@ -47,7 +44,6 @@ public sealed partial class GasThermoMachineComponent : Component
/// Ignored if heater.
///
[DataField, ViewVariables(VVAccess.ReadWrite)]
- [GuidebookData]
public float MinTemperature = 73.15f;
///
@@ -55,7 +51,6 @@ public sealed partial class GasThermoMachineComponent : Component
/// Ignored if freezer.
///
[DataField, ViewVariables(VVAccess.ReadWrite)]
- [GuidebookData]
public float MaxTemperature = 593.15f;
///
@@ -68,7 +63,6 @@ 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 25b15f0ed55..fcf3ddf969c 100644
--- a/Content.Server/Atmos/Piping/Unary/Components/GasVentPumpComponent.cs
+++ b/Content.Server/Atmos/Piping/Unary/Components/GasVentPumpComponent.cs
@@ -1,7 +1,6 @@
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
@@ -36,7 +35,6 @@ 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
///
@@ -60,7 +58,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]
@@ -103,7 +101,6 @@ public float InternalPressureBound
/// Max pressure of the target gas (NOT relative to source).
///
[DataField]
- [GuidebookData]
public float MaxPressure = Atmospherics.MaxOutputPressure;
///
@@ -175,12 +172,5 @@ 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/Portable/PortableScrubberComponent.cs b/Content.Server/Atmos/Portable/PortableScrubberComponent.cs
index eb4213228c7..b4ea4fa7d68 100644
--- a/Content.Server/Atmos/Portable/PortableScrubberComponent.cs
+++ b/Content.Server/Atmos/Portable/PortableScrubberComponent.cs
@@ -1,5 +1,4 @@
using Content.Shared.Atmos;
-using Content.Shared.Guidebook;
namespace Content.Server.Atmos.Portable
{
@@ -59,12 +58,5 @@ 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 d13826e4e9c..e490ab3ea01 100644
--- a/Content.Server/Atmos/Portable/SpaceHeaterComponent.cs
+++ b/Content.Server/Atmos/Portable/SpaceHeaterComponent.cs
@@ -1,7 +1,6 @@
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;
@@ -24,14 +23,12 @@ 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 b2d68894086..2cc8085e725 100644
--- a/Content.Server/Bed/BedSystem.cs
+++ b/Content.Server/Bed/BedSystem.cs
@@ -20,7 +20,6 @@ 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!;
@@ -115,12 +114,7 @@ private void OnPowerChanged(EntityUid uid, StasisBedComponent component, ref Pow
private void OnEmagged(EntityUid uid, StasisBedComponent component, ref GotEmaggedEvent args)
{
- if (!_emag.CompareFlag(args.Type, EmagType.Interaction))
- return;
-
- if (_emag.CheckFlag(uid, EmagType.Interaction))
- return;
-
+ args.Repeatable = true;
// 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 c650438b286..a7735787cbb 100644
--- a/Content.Server/Cargo/Components/StationCargoBountyDatabaseComponent.cs
+++ b/Content.Server/Cargo/Components/StationCargoBountyDatabaseComponent.cs
@@ -12,22 +12,15 @@ public sealed partial class StationCargoBountyDatabaseComponent : Component
///
/// Maximum amount of bounties a station can have.
///
- [DataField]
+ [DataField, ViewVariables(VVAccess.ReadWrite)]
public int MaxBounties = 6;
///
/// A list of all the bounties currently active for a station.
///
- [DataField]
+ [DataField, ViewVariables(VVAccess.ReadWrite)]
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 7f74fe269d4..373e8e243ba 100644
--- a/Content.Server/Cargo/Systems/CargoSystem.Bounty.cs
+++ b/Content.Server/Cargo/Systems/CargoSystem.Bounty.cs
@@ -8,7 +8,6 @@
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;
@@ -17,7 +16,6 @@
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;
@@ -27,7 +25,6 @@ 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";
@@ -57,7 +54,7 @@ private void OnBountyConsoleOpened(EntityUid uid, CargoBountyConsoleComponent co
return;
var untilNextSkip = bountyDb.NextSkipTime - _timing.CurTime;
- _uiSystem.SetUiState(uid, CargoConsoleUiKey.Bounty, new CargoBountyConsoleState(bountyDb.Bounties, bountyDb.History, untilNextSkip));
+ _uiSystem.SetUiState(uid, CargoConsoleUiKey.Bounty, new CargoBountyConsoleState(bountyDb.Bounties, untilNextSkip));
}
private void OnPrintLabelMessage(EntityUid uid, CargoBountyConsoleComponent component, BountyPrintLabelMessage args)
@@ -98,13 +95,13 @@ private void OnSkipBountyMessage(EntityUid uid, CargoBountyConsoleComponent comp
return;
}
- if (!TryRemoveBounty(station, bounty.Value, true, args.Actor))
+ if (!TryRemoveBounty(station, bounty.Value))
return;
FillBountyDatabase(station);
db.NextSkipTime = _timing.CurTime + db.SkipDelay;
var untilNextSkip = db.NextSkipTime - _timing.CurTime;
- _uiSystem.SetUiState(uid, CargoConsoleUiKey.Bounty, new CargoBountyConsoleState(db.Bounties, db.History, untilNextSkip));
+ _uiSystem.SetUiState(uid, CargoConsoleUiKey.Bounty, new CargoBountyConsoleState(db.Bounties, untilNextSkip));
_audio.PlayPvs(component.SkipSound, uid);
}
@@ -182,7 +179,7 @@ private void OnSold(ref EntitySoldEvent args)
continue;
}
- TryRemoveBounty(station, bounty.Value, false);
+ TryRemoveBounty(station, bounty.Value);
FillBountyDatabase(station);
_adminLogger.Add(LogType.Action, LogImpact.Low, $"Bounty \"{bounty.Value.Bounty}\" (id:{bounty.Value.Id}) was fulfilled");
}
@@ -437,44 +434,24 @@ public bool TryAddBounty(EntityUid uid, CargoBountyPrototype bounty, StationCarg
}
[PublicAPI]
- public bool TryRemoveBounty(Entity ent,
- string dataId,
- bool skipped,
- EntityUid? actor = null)
+ public bool TryRemoveBounty(EntityUid uid, string dataId, StationCargoBountyDatabaseComponent? component = null)
{
- if (!TryGetBountyFromId(ent.Owner, dataId, out var data, ent.Comp))
+ if (!TryGetBountyFromId(uid, dataId, out var data, component))
return false;
- return TryRemoveBounty(ent, data.Value, skipped, actor);
+ return TryRemoveBounty(uid, data.Value, component);
}
- public bool TryRemoveBounty(Entity ent,
- CargoBountyData data,
- bool skipped,
- EntityUid? actor = null)
+ public bool TryRemoveBounty(EntityUid uid, CargoBountyData data, StationCargoBountyDatabaseComponent? component = null)
{
- if (!Resolve(ent, ref ent.Comp))
+ if (!Resolve(uid, ref component))
return false;
- for (var i = 0; i < ent.Comp.Bounties.Count; i++)
+ for (var i = 0; i < component.Bounties.Count; i++)
{
- if (ent.Comp.Bounties[i].Id == data.Id)
+ if (component.Bounties[i].Id == data.Id)
{
- 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);
+ component.Bounties.RemoveAt(i);
return true;
}
}
@@ -515,7 +492,7 @@ public void UpdateBountyConsoles()
}
var untilNextSkip = db.NextSkipTime - _timing.CurTime;
- _uiSystem.SetUiState((uid, ui), CargoConsoleUiKey.Bounty, new CargoBountyConsoleState(db.Bounties, db.History, untilNextSkip));
+ _uiSystem.SetUiState((uid, ui), CargoConsoleUiKey.Bounty, new CargoBountyConsoleState(db.Bounties, untilNextSkip));
}
}
diff --git a/Content.Server/Cargo/Systems/CargoSystem.Orders.cs b/Content.Server/Cargo/Systems/CargoSystem.Orders.cs
index 5fff4feac2c..f2276f27aab 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.Systems;
+using Content.Shared.Emag.Components;
using Content.Shared.IdentityManagement;
using Content.Shared.Interaction;
using Content.Shared.Paper;
@@ -21,7 +21,6 @@ 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.
@@ -42,7 +41,6 @@ private void InitializeConsole()
SubscribeLocalEvent(OnInit);
SubscribeLocalEvent(OnInteractUsing);
SubscribeLocalEvent(OnOrderBalanceUpdated);
- SubscribeLocalEvent(OnEmagged);
Reset();
}
@@ -77,17 +75,6 @@ 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;
@@ -98,11 +85,9 @@ private void UpdateConsole(float frameTime)
{
_timer -= Delay;
- var stationQuery = EntityQueryEnumerator();
- while (stationQuery.MoveNext(out var uid, out var bank))
+ foreach (var account in EntityQuery())
{
- var balanceToAdd = bank.IncreasePerSecond * Delay;
- UpdateBankAccount(uid, bank, balanceToAdd);
+ account.Balance += account.IncreasePerSecond * Delay;
}
var query = EntityQueryEnumerator();
@@ -207,7 +192,7 @@ private void OnApproveOrderMessage(EntityUid uid, CargoOrderConsoleComponent com
order.Approved = true;
_audio.PlayPvs(component.ConfirmSound, uid);
- if (!_emag.CheckFlag(uid, EmagType.Interaction))
+ if (!HasComp(uid))
{
var tryGetIdentityShortInfoEvent = new TryGetIdentityShortInfoEvent(uid, player);
RaiseLocalEvent(tryGetIdentityShortInfoEvent);
@@ -228,7 +213,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);
- UpdateBankAccount(station.Value, bank, -cost);
+ DeductFunds(bank, cost);
UpdateOrders(station.Value);
}
diff --git a/Content.Server/Cloning/CloningSystem.cs b/Content.Server/Cloning/CloningSystem.cs
index 6746c26deec..a09ce97f6bb 100644
--- a/Content.Server/Cloning/CloningSystem.cs
+++ b/Content.Server/Cloning/CloningSystem.cs
@@ -62,7 +62,6 @@ 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;
@@ -300,15 +299,10 @@ 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;
}
@@ -339,7 +333,7 @@ private void EndFailedCloning(EntityUid uid, CloningPodComponent clonePod)
var indices = _transformSystem.GetGridTilePositionOrDefault((uid, transform));
var tileMix = _atmosphereSystem.GetTileMixture(transform.GridUid, null, indices, true);
- if (_emag.CheckFlag(uid, EmagType.Interaction))
+ if (HasComp(uid))
{
_audio.PlayPvs(clonePod.ScreamSound, uid);
Spawn(clonePod.MobSpawnId, transform.Coordinates);
@@ -358,7 +352,7 @@ private void EndFailedCloning(EntityUid uid, CloningPodComponent clonePod)
_puddleSystem.TrySpillAt(uid, bloodSolution, out _);
- if (!_emag.CheckFlag(uid, EmagType.Interaction))
+ if (!HasComp(uid))
{
_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 6d5ec85b947..ecd6356a05b 100644
--- a/Content.Server/Communications/CommunicationsConsoleSystem.cs
+++ b/Content.Server/Communications/CommunicationsConsoleSystem.cs
@@ -16,6 +16,7 @@
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;
@@ -176,7 +177,7 @@ private static bool CanAnnounce(CommunicationsConsoleComponent comp)
private bool CanUse(EntityUid user, EntityUid console)
{
- if (TryComp(console, out var accessReaderComponent))
+ if (TryComp(console, out var accessReaderComponent) && !HasComp(console))
{
return _accessReaderSystem.IsAllowed(user, console, accessReaderComponent);
}
diff --git a/Content.Server/Construction/Commands/FixRotationsCommand.cs b/Content.Server/Construction/Commands/FixRotationsCommand.cs
index 3232f12ed84..1a42d4bf38b 100644
--- a/Content.Server/Construction/Commands/FixRotationsCommand.cs
+++ b/Content.Server/Construction/Commands/FixRotationsCommand.cs
@@ -89,8 +89,6 @@ 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 72d66c76382..ca1d45e6449 100644
--- a/Content.Server/CriminalRecords/Systems/CriminalRecordsConsoleSystem.cs
+++ b/Content.Server/CriminalRecords/Systems/CriminalRecordsConsoleSystem.cs
@@ -13,8 +13,6 @@
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;
@@ -44,7 +42,6 @@ public override void Initialize()
subs.Event(OnChangeStatus);
subs.Event(OnAddHistory);
subs.Event(OnDeleteHistory);
- subs.Event(OnStatusFilterPressed);
});
}
@@ -60,11 +57,6 @@ 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)
{
@@ -120,26 +112,13 @@ 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), ("job", jobName) };
+ args = new (string, object)[] { ("name", name), ("officer", officer), ("reason", reason) };
else
- args = new (string, object)[] { ("name", name), ("officer", officer), ("job", jobName) };
+ args = new (string, object)[] { ("name", name), ("officer", officer) };
// figure out which radio message to send depending on transition
var statusString = (oldStatus, msg.Status) switch
@@ -214,18 +193,8 @@ 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)
{
@@ -236,9 +205,6 @@ 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 8dfe665541c..bc61c5d141a 100644
--- a/Content.Server/Damage/ForceSay/DamageForceSaySystem.cs
+++ b/Content.Server/Damage/ForceSay/DamageForceSaySystem.cs
@@ -1,6 +1,5 @@
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;
@@ -48,7 +47,7 @@ public override void Update(float frameTime)
}
}
- private void TryForceSay(EntityUid uid, DamageForceSayComponent component, bool useSuffix=true)
+ private void TryForceSay(EntityUid uid, DamageForceSayComponent component, bool useSuffix=true, string? suffixOverride = null)
{
if (!TryComp(uid, out var actor))
return;
@@ -58,13 +57,7 @@ private void TryForceSay(EntityUid uid, DamageForceSayComponent component, bool
_timing.CurTime < component.NextAllowedTime)
return;
- 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));
+ var suffix = Loc.GetString(suffixOverride ?? component.ForceSayStringPrefix + _random.Next(1, component.ForceSayStringCount));
// set cooldown & raise event
component.NextAllowedTime = _timing.CurTime + component.Cooldown;
@@ -87,7 +80,7 @@ private void OnSleep(EntityUid uid, DamageForceSayComponent component, SleepStat
if (!args.FellAsleep)
return;
- TryForceSay(uid, component);
+ TryForceSay(uid, component, true, "damage-force-say-sleep");
AllowNextSpeech(uid);
}
diff --git a/Content.Server/Database/ServerDbBase.cs b/Content.Server/Database/ServerDbBase.cs
index 9bb62b95626..cff7414462d 100644
--- a/Content.Server/Database/ServerDbBase.cs
+++ b/Content.Server/Database/ServerDbBase.cs
@@ -1120,7 +1120,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();
@@ -1130,7 +1130,7 @@ public async Task SetLastReadRules(NetUserId player, DateTimeOffset? date)
return;
}
- dbPlayer.LastReadRules = date?.UtcDateTime;
+ dbPlayer.LastReadRules = date.UtcDateTime;
await db.DbContext.SaveChangesAsync();
}
diff --git a/Content.Server/Database/ServerDbManager.cs b/Content.Server/Database/ServerDbManager.cs
index e3cfb66c7f7..5ddb3a590cb 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
@@ -830,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));
diff --git a/Content.Server/EntityEffects/Effects/ExplosionReactionEffect.cs b/Content.Server/EntityEffects/Effects/ExplosionReactionEffect.cs
index 24c58898c65..689757d0440 100644
--- a/Content.Server/EntityEffects/Effects/ExplosionReactionEffect.cs
+++ b/Content.Server/EntityEffects/Effects/ExplosionReactionEffect.cs
@@ -15,6 +15,7 @@ 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!;
///
@@ -22,12 +23,14 @@ 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;
///
@@ -38,20 +41,15 @@ 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;
@@ -74,7 +72,6 @@ public override void Effect(EntityEffectBaseArgs args)
ExplosionType,
intensity,
IntensitySlope,
- MaxIntensity,
- TileBreakScale);
+ MaxIntensity);
}
}
diff --git a/Content.Server/Fax/FaxSystem.cs b/Content.Server/Fax/FaxSystem.cs
index b73c101e3fe..a43d0171e60 100644
--- a/Content.Server/Fax/FaxSystem.cs
+++ b/Content.Server/Fax/FaxSystem.cs
@@ -50,7 +50,6 @@ 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";
@@ -228,7 +227,7 @@ private void OnInteractUsing(EntityUid uid, FaxMachineComponent component, Inter
return;
}
- if (component.KnownFaxes.ContainsValue(newName) && !_emag.CheckFlag(uid, EmagType.Interaction)) // Allow existing names if emagged for fun
+ if (component.KnownFaxes.ContainsValue(newName) && !HasComp(uid)) // Allow existing names if emagged for fun
{
_popupSystem.PopupEntity(Loc.GetString("fax-machine-popup-name-exist"), uid);
return;
@@ -247,12 +246,7 @@ private void OnInteractUsing(EntityUid uid, FaxMachineComponent component, Inter
private void OnEmagged(EntityUid uid, FaxMachineComponent component, ref GotEmaggedEvent args)
{
- if (!_emag.CompareFlag(args.Type, EmagType.Interaction))
- return;
-
- if (_emag.CheckFlag(uid, EmagType.Interaction))
- return;
-
+ _audioSystem.PlayPvs(component.EmagSound, uid);
args.Handled = true;
}
@@ -266,7 +260,7 @@ private void OnPacketReceived(EntityUid uid, FaxMachineComponent component, Devi
switch (command)
{
case FaxConstants.FaxPingCommand:
- var isForSyndie = _emag.CheckFlag(uid, EmagType.Interaction) &&
+ var isForSyndie = HasComp(uid) &&
args.Data.ContainsKey(FaxConstants.FaxSyndicateData);
if (!isForSyndie && !component.ResponsePings)
return;
@@ -411,7 +405,7 @@ public void Refresh(EntityUid uid, FaxMachineComponent? component = null)
{ DeviceNetworkConstants.Command, FaxConstants.FaxPingCommand }
};
- if (_emag.CheckFlag(uid, EmagType.Interaction))
+ if (HasComp(uid))
payload.Add(FaxConstants.FaxSyndicateData, true);
_deviceNetworkSystem.QueuePacket(uid, null, payload);
diff --git a/Content.Server/Implants/ImplanterSystem.cs b/Content.Server/Implants/ImplanterSystem.cs
index 5efd5dc6fb3..e441574213e 100644
--- a/Content.Server/Implants/ImplanterSystem.cs
+++ b/Content.Server/Implants/ImplanterSystem.cs
@@ -58,6 +58,17 @@ 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);
@@ -68,7 +79,14 @@ 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
deleted file mode 100644
index d9ba2290574..00000000000
--- a/Content.Server/Implants/RadioImplantSystem.cs
+++ /dev/null
@@ -1,76 +0,0 @@
-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 224d7f7d9af..f4d9e57bd4d 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/Lathe/LatheSystem.cs b/Content.Server/Lathe/LatheSystem.cs
index ba82e65aa79..18f246dcef4 100644
--- a/Content.Server/Lathe/LatheSystem.cs
+++ b/Content.Server/Lathe/LatheSystem.cs
@@ -16,7 +16,6 @@
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;
@@ -43,7 +42,6 @@ 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!;
@@ -294,7 +292,7 @@ private void GetEmagLatheRecipes(EntityUid uid, EmagLatheRecipesComponent compon
{
if (uid != args.Lathe || !TryComp(uid, out var technologyDatabase))
return;
- if (!args.getUnavailable && !_emag.CheckFlag(uid, EmagType.Interaction))
+ if (!args.getUnavailable && !HasComp(uid))
return;
foreach (var recipe in component.EmagDynamicRecipes)
{
diff --git a/Content.Server/Magic/MagicSystem.cs b/Content.Server/Magic/MagicSystem.cs
index 679bf0f3275..d230215bd59 100644
--- a/Content.Server/Magic/MagicSystem.cs
+++ b/Content.Server/Magic/MagicSystem.cs
@@ -28,17 +28,4 @@ private void OnSpellSpoken(ref SpeakSpellEvent args)
// // end-backmen: magick
_chat.TrySendInGameICMessage(args.Performer, Loc.GetString(args.Speech), InGameICChatType.Speak, false);
}
-
- public override void OnVoidApplause(VoidApplauseSpellEvent ev)
- {
- base.OnVoidApplause(ev);
-
- _chat.TryEmoteWithChat(ev.Performer, ev.Emote);
-
- var perfXForm = Transform(ev.Performer);
- var targetXForm = Transform(ev.Target);
-
- Spawn(ev.Effect, perfXForm.Coordinates);
- Spawn(ev.Effect, targetXForm.Coordinates);
- }
}
diff --git a/Content.Server/Medical/HealingSystem.cs b/Content.Server/Medical/HealingSystem.cs
index 27e1f6b854e..4ee0daf9bd3 100644
--- a/Content.Server/Medical/HealingSystem.cs
+++ b/Content.Server/Medical/HealingSystem.cs
@@ -79,10 +79,7 @@ entity.Comp.DamageContainerID is not null &&
_bloodstreamSystem.TryModifyBleedAmount(entity.Owner, healing.BloodlossModifier);
if (isBleeding != bloodstream.BleedAmount > 0)
{
- 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);
+ _popupSystem.PopupEntity(Loc.GetString("medical-item-stop-bleeding"), entity, args.User);
}
}
diff --git a/Content.Server/Mining/MiningSystem.cs b/Content.Server/Mining/MiningSystem.cs
index 6b1b0fed4d8..18e96e57696 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+1);
+ var toSpawn = _random.Next(proto.MinOreYield, proto.MaxOreYield);
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
deleted file mode 100644
index b3809fe794b..00000000000
--- a/Content.Server/Movement/Components/EyeCursorOffsetComponent.cs
+++ /dev/null
@@ -1,12 +0,0 @@
-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.Shared/NPC/Components/NPCRecentlyInjectedComponent.cs b/Content.Server/NPC/Components/NPCRecentlyInjectedComponent.cs
similarity index 78%
rename from Content.Shared/NPC/Components/NPCRecentlyInjectedComponent.cs
rename to Content.Server/NPC/Components/NPCRecentlyInjectedComponent.cs
index b79c4dd9ef0..0bc5dce55b9 100644
--- a/Content.Shared/NPC/Components/NPCRecentlyInjectedComponent.cs
+++ b/Content.Server/NPC/Components/NPCRecentlyInjectedComponent.cs
@@ -1,10 +1,8 @@
-using Robust.Shared.GameStates;
-
-namespace Content.Shared.NPC.Components
+namespace Content.Server.NPC.Components
{
/// Added when a medibot injects someone
/// So they don't get injected again for at least a minute.
- [RegisterComponent, NetworkedComponent]
+ [RegisterComponent]
public sealed partial class NPCRecentlyInjectedComponent : Component
{
[ViewVariables(VVAccess.ReadWrite), DataField("accumulator")]
diff --git a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Specific/MedibotInjectOperator.cs b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Specific/MedibotInjectOperator.cs
index 61a5014d762..906a8b883a0 100644
--- a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Specific/MedibotInjectOperator.cs
+++ b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Specific/MedibotInjectOperator.cs
@@ -1,7 +1,6 @@
using Content.Server.Chat.Systems;
using Content.Server.NPC.Components;
using Content.Shared.Backmen.Chat;
-using Content.Shared.NPC.Components;
using Content.Shared.Chemistry.EntitySystems;
using Content.Shared.Damage;
using Content.Shared.Emag.Components;
@@ -57,11 +56,34 @@ public override HTNOperatorStatus Update(NPCBlackboard blackboard, float frameTi
if (!_entMan.TryGetComponent(owner, out var botComp))
return HTNOperatorStatus.Failed;
- if (!_medibot.CheckInjectable((owner, botComp), target) || !_medibot.TryInject((owner, botComp), target))
+
+ if (!_entMan.TryGetComponent(target, out var damage))
return HTNOperatorStatus.Failed;
- _chat.TrySendInGameICMessage(owner, Loc.GetString("medibot-finish-inject"), InGameICChatType.Speak, hideChat: true, hideLog: true);
+ if (!_solutionContainer.TryGetInjectableSolution(target, out var injectable, out _))
+ 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 f351d582c6e..a71091ad97d 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.Shared.NPC.Components;
+using Content.Server.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 6d8cb9dfe54..dd4ff6c65f1 100644
--- a/Content.Server/NPC/Systems/NPCPerceptionSystem.RecentlyInjected.cs
+++ b/Content.Server/NPC/Systems/NPCPerceptionSystem.RecentlyInjected.cs
@@ -1,4 +1,4 @@
-using Content.Shared.NPC.Components;
+using Content.Server.NPC.Components;
namespace Content.Server.NPC.Systems;
diff --git a/Content.Server/Nuke/NukeComponent.cs b/Content.Server/Nuke/NukeComponent.cs
index e1a117f4bdb..141e99055cf 100644
--- a/Content.Server/Nuke/NukeComponent.cs
+++ b/Content.Server/Nuke/NukeComponent.cs
@@ -25,13 +25,6 @@ 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 84118931b10..0a622875058 100644
--- a/Content.Server/Nuke/NukeSystem.cs
+++ b/Content.Server/Nuke/NukeSystem.cs
@@ -522,9 +522,6 @@ 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 8f4c5f41500..6e9856a61dc 100644
--- a/Content.Server/Nutrition/EntitySystems/FatExtractorSystem.cs
+++ b/Content.Server/Nutrition/EntitySystems/FatExtractorSystem.cs
@@ -21,7 +21,6 @@ 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!;
@@ -37,13 +36,8 @@ 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)
@@ -109,7 +103,7 @@ public bool TryGetValidOccupant(EntityUid uid, [NotNullWhen(true)] out EntityUid
if (_hunger.GetHunger(hunger) < component.NutritionPerSecond)
return false;
- if (hunger.CurrentThreshold < component.MinHungerThreshold && !_emag.CheckFlag(uid, EmagType.Interaction))
+ if (hunger.CurrentThreshold < component.MinHungerThreshold && !HasComp(uid))
return false;
return true;
diff --git a/Content.Server/Nutrition/EntitySystems/SmokingSystem.Vape.cs b/Content.Server/Nutrition/EntitySystems/SmokingSystem.Vape.cs
index 48fb946135e..26fa5ca3cc8 100644
--- a/Content.Server/Nutrition/EntitySystems/SmokingSystem.Vape.cs
+++ b/Content.Server/Nutrition/EntitySystems/SmokingSystem.Vape.cs
@@ -24,7 +24,6 @@ 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!;
@@ -64,7 +63,7 @@ private void OnVapeInteraction(Entity entity, ref AfterInteractEv
forced = false;
}
- if (entity.Comp.ExplodeOnUse || _emag.CheckFlag(entity, EmagType.Interaction))
+ if (entity.Comp.ExplodeOnUse || HasComp(entity.Owner))
{
_explosionSystem.QueueExplosion(entity.Owner, "Default", entity.Comp.ExplosionIntensity, 0.5f, 3, canCreateVacuum: false);
EntityManager.DeleteEntity(entity);
@@ -162,15 +161,8 @@ 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 860b7b219a8..4ef88913339 100644
--- a/Content.Server/Power/Components/BatteryComponent.cs
+++ b/Content.Server/Power/Components/BatteryComponent.cs
@@ -1,5 +1,4 @@
using Content.Server.Power.EntitySystems;
-using Content.Shared.Guidebook;
namespace Content.Server.Power.Components
{
@@ -17,7 +16,6 @@ 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 fcef03903b9..a0f74df6a12 100644
--- a/Content.Server/Power/Components/PowerNetworkBatteryComponent.cs
+++ b/Content.Server/Power/Components/PowerNetworkBatteryComponent.cs
@@ -1,5 +1,4 @@
using Content.Server.Power.Pow3r;
-using Content.Shared.Guidebook;
namespace Content.Server.Power.Components
{
@@ -25,7 +24,6 @@ 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 30f8335c495..cf23288fcd6 100644
--- a/Content.Server/Power/Components/PowerSupplierComponent.cs
+++ b/Content.Server/Power/Components/PowerSupplierComponent.cs
@@ -1,6 +1,5 @@
using Content.Server.Power.NodeGroups;
using Content.Server.Power.Pow3r;
-using Content.Shared.Guidebook;
namespace Content.Server.Power.Components
{
@@ -9,7 +8,6 @@ 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 29c1431179d..14dddbb43e3 100644
--- a/Content.Server/Power/EntitySystems/ApcSystem.cs
+++ b/Content.Server/Power/EntitySystems/ApcSystem.cs
@@ -4,6 +4,7 @@
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;
@@ -18,7 +19,6 @@ 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,12 +111,7 @@ public void ApcToggleBreaker(EntityUid uid, ApcComponent? apc = null, PowerNetwo
private void OnEmagged(EntityUid uid, ApcComponent comp, ref GotEmaggedEvent args)
{
- if (!_emag.CompareFlag(args.Type, EmagType.Interaction))
- return;
-
- if (_emag.CheckFlag(uid, EmagType.Interaction))
- return;
-
+ // no fancy conditions
args.Handled = true;
}
@@ -175,7 +170,7 @@ public void UpdateUIState(EntityUid uid,
private ApcChargeState CalcChargeState(EntityUid uid, PowerState.Battery battery)
{
- if (_emag.CheckFlag(uid, EmagType.Interaction))
+ if (HasComp(uid))
return ApcChargeState.Emag;
if (battery.CurrentStorage / battery.Capacity > ApcComponent.HighPowerThreshold)
diff --git a/Content.Server/Research/Systems/ResearchSystem.Console.cs b/Content.Server/Research/Systems/ResearchSystem.Console.cs
index c227aee7f07..127b80a631e 100644
--- a/Content.Server/Research/Systems/ResearchSystem.Console.cs
+++ b/Content.Server/Research/Systems/ResearchSystem.Console.cs
@@ -3,7 +3,6 @@
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;
@@ -12,8 +11,6 @@ namespace Content.Server.Research.Systems;
public sealed partial class ResearchSystem
{
- [Dependency] private readonly EmagSystem _emag = default!;
-
private void InitializeConsole()
{
SubscribeLocalEvent(OnConsoleUnlock);
@@ -21,7 +18,6 @@ private void InitializeConsole()
SubscribeLocalEvent(OnPointsChanged);
SubscribeLocalEvent(OnConsoleRegistrationChanged);
SubscribeLocalEvent(OnConsoleDatabaseModified);
- SubscribeLocalEvent(OnEmagged);
}
private void OnConsoleUnlock(EntityUid uid, ResearchConsoleComponent component, ConsoleUnlockTechnologyMessage args)
@@ -43,7 +39,7 @@ private void OnConsoleUnlock(EntityUid uid, ResearchConsoleComponent component,
if (!UnlockTechnology(uid, args.Id, act))
return;
- if (!_emag.CheckFlag(uid, EmagType.Interaction))
+ if (!HasComp(uid))
{
var getIdentityEvent = new TryGetIdentityShortInfoEvent(uid, act);
RaiseLocalEvent(getIdentityEvent);
@@ -56,7 +52,7 @@ private void OnConsoleUnlock(EntityUid uid, ResearchConsoleComponent component,
);
_radio.SendRadioMessage(uid, message, component.AnnouncementChannel, uid, escapeMarkup: false);
}
-
+
SyncClientWithServer(uid);
UpdateConsoleInterface(uid, component);
}
@@ -104,15 +100,4 @@ 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 659e157dda8..57097e1e669 100644
--- a/Content.Server/Revenant/EntitySystems/RevenantSystem.Abilities.cs
+++ b/Content.Server/Revenant/EntitySystems/RevenantSystem.Abilities.cs
@@ -36,6 +36,7 @@ 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!;
@@ -353,8 +354,7 @@ private void OnMalfunctionAction(EntityUid uid, RevenantComponent component, Rev
_whitelistSystem.IsBlacklistPass(component.MalfunctionBlacklist, ent))
continue;
- var ev = new GotEmaggedEvent(uid, EmagType.Interaction | EmagType.Access);
- RaiseLocalEvent(ent, ref ev);
+ _emag.DoEmagEffect(uid, ent); //it does not emag itself. adorable.
}
}
}
diff --git a/Content.Server/Silicons/Borgs/BorgSystem.Transponder.cs b/Content.Server/Silicons/Borgs/BorgSystem.Transponder.cs
index 4d2a8912e83..b4ba1400441 100644
--- a/Content.Server/Silicons/Borgs/BorgSystem.Transponder.cs
+++ b/Content.Server/Silicons/Borgs/BorgSystem.Transponder.cs
@@ -8,7 +8,6 @@
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;
@@ -16,8 +15,6 @@ namespace Content.Server.Silicons.Borgs;
///
public sealed partial class BorgSystem
{
- [Dependency] private readonly EmagSystem _emag = default!;
-
private void InitializeTransponder()
{
SubscribeLocalEvent(OnPacketReceived);
@@ -130,7 +127,7 @@ private void Destroy(Entity ent)
private bool CheckEmagged(EntityUid uid, string name)
{
- if (_emag.CheckFlag(uid, EmagType.Interaction))
+ if (HasComp(uid))
{
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 3a0d4b61f5c..9c924799dd6 100644
--- a/Content.Server/Silicons/Laws/SiliconLawSystem.cs
+++ b/Content.Server/Silicons/Laws/SiliconLawSystem.cs
@@ -15,6 +15,7 @@
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,6 +23,7 @@
using Robust.Shared.Player;
using Robust.Shared.Prototypes;
using Robust.Shared.Toolshed;
+using Robust.Shared.Audio;
namespace Content.Server.Silicons.Laws;
@@ -33,8 +35,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()
@@ -51,7 +53,7 @@ public override void Initialize()
SubscribeLocalEvent(OnIonStormLaws);
SubscribeLocalEvent(OnLawProviderMindAdded);
SubscribeLocalEvent(OnLawProviderMindRemoved);
- SubscribeLocalEvent(OnEmagLawsAdded);
+ SubscribeLocalEvent(OnEmagLawsAdded);
}
private void OnMapInit(EntityUid uid, SiliconLawBoundComponent component, MapInitEvent args)
@@ -134,7 +136,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 (!_emag.CheckFlag(uid, EmagType.Interaction))
+ if (!HasComp(uid))
{
component.Lawset = args.Lawset;
@@ -151,8 +153,9 @@ private void OnIonStormLaws(EntityUid uid, SiliconLawProviderComponent component
}
}
- private void OnEmagLawsAdded(EntityUid uid, SiliconLawProviderComponent component, ref SiliconEmaggedEvent args)
+ private void OnEmagLawsAdded(EntityUid uid, SiliconLawProviderComponent component, ref GotEmaggedEvent args)
{
+
if (component.Lawset == null)
component.Lawset = GetLawset(component.Laws);
@@ -162,7 +165,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.user)), ("title", Loc.GetString(component.Lawset.ObeysTo))),
+ LawString = Loc.GetString("law-emag-custom", ("name", Name(args.UserUid)), ("title", Loc.GetString(component.Lawset.ObeysTo))),
Order = 0
});
@@ -174,6 +177,20 @@ 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/Stunnable/Systems/StunbatonSystem.cs b/Content.Server/Stunnable/Systems/StunbatonSystem.cs
index 1e2494203ab..97dd2c7e735 100644
--- a/Content.Server/Stunnable/Systems/StunbatonSystem.cs
+++ b/Content.Server/Stunnable/Systems/StunbatonSystem.cs
@@ -1,6 +1,7 @@
using Content.Server.Power.Components;
using Content.Server.Power.EntitySystems;
using Content.Server.Power.Events;
+using Content.Server.Stunnable.Components;
using Content.Shared.Chemistry.EntitySystems;
using Content.Shared.Damage.Events;
using Content.Shared.Examine;
diff --git a/Content.Server/VendingMachines/VendingMachineSystem.cs b/Content.Server/VendingMachines/VendingMachineSystem.cs
index c2ea6dd1ac0..c20a6a46446 100644
--- a/Content.Server/VendingMachines/VendingMachineSystem.cs
+++ b/Content.Server/VendingMachines/VendingMachineSystem.cs
@@ -39,7 +39,6 @@ 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;
@@ -49,6 +48,7 @@ public override void Initialize()
SubscribeLocalEvent(OnPowerChanged);
SubscribeLocalEvent(OnBreak);
+ SubscribeLocalEvent(OnEmagged);
SubscribeLocalEvent(OnDamageChanged);
SubscribeLocalEvent(OnVendingPrice);
SubscribeLocalEvent(OnEmpPulse);
@@ -123,6 +123,12 @@ 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)
@@ -226,7 +232,7 @@ public bool IsAuthorized(EntityUid uid, EntityUid sender, VendingMachineComponen
if (!TryComp(uid, out var accessReader))
return true;
- if (_accessReader.IsAllowed(sender, uid, accessReader))
+ if (_accessReader.IsAllowed(sender, uid, accessReader) || HasComp(uid))
return true;
Popup.PopupEntity(Loc.GetString("vending-machine-component-try-eject-access-denied"), uid);
@@ -416,7 +422,7 @@ private void EjectItem(EntityUid uid, VendingMachineComponent? vendComponent = n
if (!Resolve(uid, ref component))
return null;
- if (type == InventoryType.Emagged && _emag.CheckFlag(uid, EmagType.Interaction))
+ if (type == InventoryType.Emagged && HasComp(uid))
return component.EmaggedInventory.GetValueOrDefault(entryId);
if (type == InventoryType.Contraband && component.Contraband)
diff --git a/Content.Server/Wieldable/WieldableSystem.cs b/Content.Server/Wieldable/WieldableSystem.cs
deleted file mode 100644
index 35f75276a8f..00000000000
--- a/Content.Server/Wieldable/WieldableSystem.cs
+++ /dev/null
@@ -1,45 +0,0 @@
-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.Shared/Access/Components/AccessReaderComponent.cs b/Content.Shared/Access/Components/AccessReaderComponent.cs
index 0219fd2b1ad..903ceab186d 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 BreakOnAccessBreaker = true;
+ public bool BreakOnEmag = true;
}
[DataDefinition, Serializable, NetSerializable]
diff --git a/Content.Shared/Access/Systems/AccessReaderSystem.cs b/Content.Shared/Access/Systems/AccessReaderSystem.cs
index ca5aa0a85c2..d312163ecef 100644
--- a/Content.Shared/Access/Systems/AccessReaderSystem.cs
+++ b/Content.Shared/Access/Systems/AccessReaderSystem.cs
@@ -2,6 +2,7 @@
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,7 +25,6 @@ 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!;
@@ -72,28 +72,17 @@ private void OnLinkAttempt(EntityUid uid, AccessReaderComponent component, LinkA
{
if (args.User == null) // AutoLink (and presumably future external linkers) have no user.
return;
- if (!IsAllowed(args.User.Value, uid, component))
+ if (!HasComp(uid) && !IsAllowed(args.User.Value, uid, component))
args.Cancel();
}
private void OnEmagged(EntityUid uid, AccessReaderComponent reader, ref GotEmaggedEvent args)
{
- if (!_emag.CompareFlag(args.Type, EmagType.Access))
+ if (!reader.BreakOnEmag)
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;
- accessReader.Value.Comp.AccessLists.Clear();
- accessReader.Value.Comp.AccessLog.Clear();
+ reader.Enabled = false;
+ reader.AccessLog.Clear();
Dirty(uid, reader);
}
@@ -147,7 +136,6 @@ public bool GetMainAccessReader(EntityUid uid, [NotNullWhen(true)] out Entity
[DataField]
- [GuidebookData]
public float MaxTargetPressure = Atmospherics.MaxOutputPressure;
}
diff --git a/Content.Shared/Bed/Sleep/SleepingComponent.cs b/Content.Shared/Bed/Sleep/SleepingComponent.cs
index dbabb8bb9fd..cbea0a0516f 100644
--- a/Content.Shared/Bed/Sleep/SleepingComponent.cs
+++ b/Content.Shared/Bed/Sleep/SleepingComponent.cs
@@ -1,8 +1,6 @@
-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;
@@ -41,11 +39,4 @@ 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 028c8ff0525..179ce7a1ba8 100644
--- a/Content.Shared/Bed/Sleep/SleepingSystem.cs
+++ b/Content.Shared/Bed/Sleep/SleepingSystem.cs
@@ -2,7 +2,6 @@
using Content.Shared.Backmen.Mood;
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;
@@ -20,7 +19,6 @@
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;
@@ -66,8 +64,6 @@ public override void Initialize()
SubscribeLocalEvent(OnInit);
SubscribeLocalEvent(OnUnbuckleAttempt);
SubscribeLocalEvent(OnEmoteAttempt);
-
- SubscribeLocalEvent(OnChangeForceSay, after: new []{typeof(PainNumbnessSystem)});
}
private void OnUnbuckleAttempt(Entity ent, ref UnbuckleAttemptEvent args)
@@ -325,11 +321,6 @@ 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 f05eb3376ea..bbce533ed1b 100644
--- a/Content.Shared/CCVar/CCVars.Admin.cs
+++ b/Content.Shared/CCVar/CCVars.Admin.cs
@@ -89,12 +89,6 @@ 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.
///
diff --git a/Content.Shared/CCVar/CCVars.Interactions.cs b/Content.Shared/CCVar/CCVars.Interactions.cs
index fcefa73a96a..c62f81be0ca 100644
--- a/Content.Shared/CCVar/CCVars.Interactions.cs
+++ b/Content.Shared/CCVar/CCVars.Interactions.cs
@@ -51,23 +51,4 @@ public sealed partial class CCVars
///
public static readonly CVarDef OpaqueStorageWindow =
CVarDef.Create("control.opaque_storage_background", false, CVar.CLIENTONLY | CVar.ARCHIVE);
-
- ///
- /// Whether or not the storage window has a title of the entity name.
- ///
- public static readonly CVarDef StorageWindowTitle =
- CVarDef.Create("control.storage_window_title", false, CVar.CLIENTONLY | CVar.ARCHIVE);
-
- ///
- /// How many storage windows are allowed to be open at once.
- /// Recommended that you utilise this in conjunction with
- ///
- public static readonly CVarDef StorageLimit =
- CVarDef.Create("control.storage_limit", 1, CVar.REPLICATED | CVar.SERVER);
-
- ///
- /// Whether or not storage can be opened recursively.
- ///
- public static readonly CVarDef NestedStorage =
- CVarDef.Create("control.nested_storage", true, CVar.REPLICATED | CVar.SERVER);
}
diff --git a/Content.Shared/Camera/GetEyeOffsetEvent.cs b/Content.Shared/Camera/GetEyeOffsetEvent.cs
index 0e3c00110a3..de9c7c9e178 100644
--- a/Content.Shared/Camera/GetEyeOffsetEvent.cs
+++ b/Content.Shared/Camera/GetEyeOffsetEvent.cs
@@ -1,5 +1,4 @@
using System.Numerics;
-using Content.Shared.Inventory;
using Content.Shared.Movement.Systems;
namespace Content.Shared.Camera;
@@ -18,15 +17,3 @@ 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
deleted file mode 100644
index 482b755db8d..00000000000
--- a/Content.Shared/Camera/GetEyePvsScaleEvent.cs
+++ /dev/null
@@ -1,33 +0,0 @@
-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 66842c0a585..23c0566e6c9 100644
--- a/Content.Shared/Camera/SharedCameraRecoilSystem.cs
+++ b/Content.Shared/Camera/SharedCameraRecoilSystem.cs
@@ -1,6 +1,4 @@
using System.Numerics;
-using Content.Shared.Movement.Components;
-using Content.Shared.Movement.Systems;
using JetBrains.Annotations;
using Robust.Shared.Network;
using Robust.Shared.Serialization;
@@ -30,7 +28,7 @@ public abstract class SharedCameraRecoilSystem : EntitySystem
///
protected const float KickMagnitudeMax = 1f;
- [Dependency] private readonly SharedContentEyeSystem _eye = default!;
+ [Dependency] private readonly SharedEyeSystem _eye = default!;
[Dependency] private readonly INetManager _net = default!;
@@ -91,7 +89,9 @@ private void UpdateEyes(float frameTime)
continue;
recoil.LastKick = recoil.CurrentKick;
- _eye.UpdateEyeOffset((uid, eye));
+ var ev = new GetEyeOffsetEvent();
+ RaiseLocalEvent(uid, ref ev);
+ _eye.SetOffset(uid, ev.Offset, eye);
}
}
diff --git a/Content.Shared/Cargo/CargoBountyHistoryData.cs b/Content.Shared/Cargo/CargoBountyHistoryData.cs
deleted file mode 100644
index eb46bc19442..00000000000
--- a/Content.Shared/Cargo/CargoBountyHistoryData.cs
+++ /dev/null
@@ -1,67 +0,0 @@
-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 8c78312be19..bf82a08127e 100644
--- a/Content.Shared/Cargo/Components/CargoBountyConsoleComponent.cs
+++ b/Content.Shared/Cargo/Components/CargoBountyConsoleComponent.cs
@@ -50,13 +50,11 @@ public sealed partial class CargoBountyConsoleComponent : Component
public sealed class CargoBountyConsoleState : BoundUserInterfaceState
{
public List Bounties;
- public List History;
public TimeSpan UntilNextSkip;
- public CargoBountyConsoleState(List bounties, List history, TimeSpan untilNextSkip)
+ public CargoBountyConsoleState(List bounties, TimeSpan untilNextSkip)
{
Bounties = bounties;
- History = history;
UntilNextSkip = untilNextSkip;
}
}
diff --git a/Content.Shared/Cloning/CloningPodComponent.cs b/Content.Shared/Cloning/CloningPodComponent.cs
index d588b62eb37..88d587c1457 100644
--- a/Content.Shared/Cloning/CloningPodComponent.cs
+++ b/Content.Shared/Cloning/CloningPodComponent.cs
@@ -46,6 +46,15 @@ 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/CriminalRecords/Components/CriminalRecordsConsoleComponent.cs b/Content.Shared/CriminalRecords/Components/CriminalRecordsConsoleComponent.cs
index 3a35b807c01..70e927e3cb8 100644
--- a/Content.Shared/CriminalRecords/Components/CriminalRecordsConsoleComponent.cs
+++ b/Content.Shared/CriminalRecords/Components/CriminalRecordsConsoleComponent.cs
@@ -1,10 +1,7 @@
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;
@@ -34,12 +31,6 @@ 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 b8ad9ede15e..287de36ac73 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,20 +100,3 @@ 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
deleted file mode 100644
index 9e35f6ce730..00000000000
--- a/Content.Shared/Damage/Events/BeforeForceSayEvent.cs
+++ /dev/null
@@ -1,14 +0,0 @@
-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 e184f4beb97..163cc7cbf4c 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,7 +30,14 @@ public sealed partial class DamageForceSayComponent : Component
/// The fluent string prefix to use when picking a random suffix
///
[DataField]
- public ProtoId ForceSayStringDataset = "ForceSayStringDataset";
+ 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;
///
/// The amount of total damage between that needs to be taken before
diff --git a/Content.Shared/Disposal/SharedDisposalUnitSystem.cs b/Content.Shared/Disposal/SharedDisposalUnitSystem.cs
index a650ef72f80..9fdb4a6a804 100644
--- a/Content.Shared/Disposal/SharedDisposalUnitSystem.cs
+++ b/Content.Shared/Disposal/SharedDisposalUnitSystem.cs
@@ -24,7 +24,6 @@ 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!;
@@ -103,12 +102,6 @@ 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 cc9278dfe7e..3f7d6c3f704 100644
--- a/Content.Shared/Doors/Components/FirelockComponent.cs
+++ b/Content.Shared/Doors/Components/FirelockComponent.cs
@@ -1,4 +1,3 @@
-using Content.Shared.Guidebook;
using Robust.Shared.GameStates;
namespace Content.Shared.Doors.Components
@@ -24,14 +23,12 @@ 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 bbc645fd061..c73949e34c2 100644
--- a/Content.Shared/Doors/Systems/SharedDoorSystem.cs
+++ b/Content.Shared/Doors/Systems/SharedDoorSystem.cs
@@ -35,7 +35,6 @@ 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!;
@@ -79,6 +78,8 @@ public override void Initialize()
SubscribeLocalEvent(OnWeldAttempt);
SubscribeLocalEvent(OnWeldChanged);
SubscribeLocalEvent(OnPryTimeModifier);
+
+ SubscribeLocalEvent(OnAttemptEmag);
SubscribeLocalEvent(OnEmagged);
}
@@ -118,24 +119,31 @@ private void OnRemove(Entity door, ref ComponentRemove args)
_activeDoors.Remove(door);
}
- private void OnEmagged(EntityUid uid, DoorComponent door, ref GotEmaggedEvent args)
+ private void OnAttemptEmag(EntityUid uid, DoorComponent door, ref OnAttemptEmagEvent 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)
- return;
+ {
+ args.Handled = true;
+ }
+ }
+ private void OnEmagged(EntityUid uid, DoorComponent door, ref GotEmaggedEvent args)
+ {
if (!SetState(uid, DoorState.Emagging, door))
return;
-
- args.Repeatable = true;
+ Audio.PlayPredicted(door.SparkSound, uid, args.UserUid, AudioParams.Default.WithVolume(8));
args.Handled = true;
}
diff --git a/Content.Shared/DrawDepth/DrawDepth.cs b/Content.Shared/DrawDepth/DrawDepth.cs
index d0d1c9b079f..056bd15c286 100644
--- a/Content.Shared/DrawDepth/DrawDepth.cs
+++ b/Content.Shared/DrawDepth/DrawDepth.cs
@@ -9,43 +9,34 @@ public enum DrawDepth
///
/// This is for sub-floors, the floors you see after prying off a tile.
///
- LowFloors = DrawDepthTag.Default - 14,
+ LowFloors = DrawDepthTag.Default - 13,
// various entity types that require different
// draw depths, as to avoid hiding
#region SubfloorEntities
- ThickPipe = DrawDepthTag.Default - 13,
- ThickWire = DrawDepthTag.Default - 12,
- ThinPipe = DrawDepthTag.Default - 11,
- ThinWire = DrawDepthTag.Default - 10,
+ ThickPipe = DrawDepthTag.Default - 12,
+ ThickWire = DrawDepthTag.Default - 11,
+ ThinPipe = DrawDepthTag.Default - 10,
+ ThinWire = DrawDepthTag.Default - 9,
#endregion
///
/// Things that are beneath regular floors.
///
- BelowFloor = DrawDepthTag.Default - 9,
+ BelowFloor = DrawDepthTag.Default - 8,
///
/// Used for entities like carpets.
///
- FloorTiles = DrawDepthTag.Default - 8,
+ FloorTiles = DrawDepthTag.Default - 7,
///
- /// Things that are actually right on the floor, like ice crust or atmos devices. This does not mean objects like
+ /// Things that are actually right on the floor, like puddles. This does not mean objects like
/// tables, even though they are technically "on the floor".
///
- FloorObjects = DrawDepthTag.Default - 7,
- BlobTiles = DrawDepthTag.Default - 5, // backmen: blob
-
- ///
- // Discrete drawdepth to avoid z-fighting with other FloorObjects but also above floor entities.
- ///
- Puddles = DrawDepthTag.Default - 6,
+ FloorObjects = 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,
+ BlobTiles = DrawDepthTag.Default - 5, // backmen: blob
DeadMobs = DrawDepthTag.Default - 4,
diff --git a/Content.Shared/Emag/Components/EmagComponent.cs b/Content.Shared/Emag/Components/EmagComponent.cs
index 23d3b90eeda..235cf0c7444 100644
--- a/Content.Shared/Emag/Components/EmagComponent.cs
+++ b/Content.Shared/Emag/Components/EmagComponent.cs
@@ -1,8 +1,6 @@
using Content.Shared.Emag.Systems;
using Content.Shared.Tag;
-using Robust.Shared.Audio;
using Robust.Shared.GameStates;
-using Robust.Shared.Prototypes;
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
using Robust.Shared.Serialization;
@@ -16,21 +14,7 @@ public sealed partial class EmagComponent : Component
///
/// The tag that marks an entity as immune to emags
///
- [DataField]
+ [DataField("emagImmuneTag", customTypeSerializer: typeof(PrototypeIdSerializer)), ViewVariables(VVAccess.ReadWrite)]
[AutoNetworkedField]
- public ProtoId EmagImmuneTag = "EmagImmune";
-
- ///
- /// 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");
+ public string EmagImmuneTag = "EmagImmune";
}
diff --git a/Content.Shared/Emag/Components/EmaggedComponent.cs b/Content.Shared/Emag/Components/EmaggedComponent.cs
index 152fdca8e36..337f1a8e561 100644
--- a/Content.Shared/Emag/Components/EmaggedComponent.cs
+++ b/Content.Shared/Emag/Components/EmaggedComponent.cs
@@ -1,4 +1,3 @@
-using Content.Shared.Emag.Systems;
using Robust.Shared.GameStates;
namespace Content.Shared.Emag.Components;
@@ -6,12 +5,7 @@ namespace Content.Shared.Emag.Components;
///
/// Marker component for emagged entities
///
-[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
+[RegisterComponent, NetworkedComponent]
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 9626f177192..3a556b47063 100644
--- a/Content.Shared/Emag/Systems/EmagSystem.cs
+++ b/Content.Shared/Emag/Systems/EmagSystem.cs
@@ -6,9 +6,8 @@
using Content.Shared.IdentityManagement;
using Content.Shared.Interaction;
using Content.Shared.Popups;
+using Content.Shared.Silicons.Laws.Components;
using Content.Shared.Tag;
-using Robust.Shared.Audio.Systems;
-using Robust.Shared.Serialization;
namespace Content.Shared.Emag.Systems;
@@ -24,124 +23,88 @@ 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!;
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 = TryEmagEffect((uid, comp), args.User, target);
+ args.Handled = TryUseEmag(uid, args.User, target, comp);
}
///
- /// Does the emag effect on a specified entity
+ /// Tries to use the emag on a target entity
///
- public bool TryEmagEffect(Entity ent, EntityUid user, EntityUid target)
+ public bool TryUseEmag(EntityUid uid, EntityUid user, EntityUid target, EmagComponent? comp = null)
{
- if (!Resolve(ent, ref ent.Comp, false))
+ if (!Resolve(uid, ref comp, false))
return false;
- if (_tag.HasTag(target, ent.Comp.EmagImmuneTag))
+ if (_tag.HasTag(target, comp.EmagImmuneTag))
return false;
- TryComp(ent, out var charges);
- if (_charges.IsEmpty(ent, charges))
+ TryComp(uid, out var charges);
+ if (_charges.IsEmpty(uid, charges))
{
_popup.PopupClient(Loc.GetString("emag-no-charges"), user, user);
return false;
}
- var emaggedEvent = new GotEmaggedEvent(user, ent.Comp.EmagType);
- RaiseLocalEvent(target, ref emaggedEvent);
-
- if (!emaggedEvent.Handled)
+ var handled = DoEmagEffect(user, target);
+ if (!handled)
return false;
- _popup.PopupPredicted(Loc.GetString("emag-success", ("target", Identity.Entity(target, EntityManager))), user, user, PopupType.Medium);
+ _popup.PopupClient(Loc.GetString("emag-success", ("target", Identity.Entity(target, EntityManager))), user,
+ user, PopupType.Medium);
- _audio.PlayPredicted(ent.Comp.EmagSound, ent, ent);
+ _adminLogger.Add(LogType.Emag, LogImpact.High, $"{ToPrettyString(user):player} emagged {ToPrettyString(target):target}");
- _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;
+ if (charges != null)
+ _charges.UseCharge(uid, charges);
+ return true;
}
///
- /// Checks whether an entity has the EmaggedComponent with a set flag.
+ /// Does the emag effect on a specified entity
///
- /// 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)
+ public bool DoEmagEffect(EntityUid user, EntityUid target)
{
- if (!TryComp(target, out var comp))
+ // prevent emagging twice
+ if (HasComp(target))
return false;
- if ((comp.EmagType & flag) == flag)
- return true;
+ var onAttemptEmagEvent = new OnAttemptEmagEvent(user);
+ RaiseLocalEvent(target, ref onAttemptEmagEvent);
- return false;
- }
+ // prevent emagging if attempt fails
+ if (onAttemptEmagEvent.Handled)
+ return false;
- ///
- /// 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;
+ var emaggedEvent = new GotEmaggedEvent(user);
+ RaiseLocalEvent(target, ref emaggedEvent);
- return false;
+ if (emaggedEvent.Handled && !emaggedEvent.Repeatable)
+ EnsureComp(target);
+ return emaggedEvent.Handled;
}
}
-
-[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, EmagType Type, bool Handled = false, bool Repeatable = false);
+public record struct GotEmaggedEvent(EntityUid UserUid, bool Handled = false, bool Repeatable = false);
+
+[ByRefEvent]
+public record struct OnAttemptEmagEvent(EntityUid UserUid, bool Handled = false);
diff --git a/Content.Shared/Fax/Components/FaxMachineComponent.cs b/Content.Shared/Fax/Components/FaxMachineComponent.cs
index ae9842a7741..6933401edf1 100644
--- a/Content.Shared/Fax/Components/FaxMachineComponent.cs
+++ b/Content.Shared/Fax/Components/FaxMachineComponent.cs
@@ -68,6 +68,12 @@ public sealed partial class FaxMachineComponent : Component
public bool ReceiveStationGoal { get; set; } = false;
// Corvax-StationGoal-End
+ ///
+ /// 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 a0e02cf2e1a..9e8e0fa7441 100644
--- a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Relay.cs
+++ b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Relay.cs
@@ -1,4 +1,3 @@
-using Content.Shared.Camera;
using Content.Shared.Hands.Components;
using Content.Shared.Movement.Systems;
@@ -8,8 +7,6 @@ public abstract partial class SharedHandsSystem
{
private void InitializeRelay()
{
- SubscribeLocalEvent(RelayEvent);
- SubscribeLocalEvent(RelayEvent);
SubscribeLocalEvent(RelayEvent);
}
diff --git a/Content.Shared/Implants/Components/RadioImplantComponent.cs b/Content.Shared/Implants/Components/RadioImplantComponent.cs
deleted file mode 100644
index e0e7f556463..00000000000
--- a/Content.Shared/Implants/Components/RadioImplantComponent.cs
+++ /dev/null
@@ -1,37 +0,0 @@
-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 6f394fb932a..44803e721c0 100644
--- a/Content.Shared/Implants/SharedImplanterSystem.cs
+++ b/Content.Shared/Implants/SharedImplanterSystem.cs
@@ -52,14 +52,7 @@ 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)
@@ -67,16 +60,6 @@ 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/Inventory/Events/RefreshEquipmentHudEvent.cs b/Content.Shared/Inventory/Events/RefreshEquipmentHudEvent.cs
index e39fb056b4a..4f486fe695e 100644
--- a/Content.Shared/Inventory/Events/RefreshEquipmentHudEvent.cs
+++ b/Content.Shared/Inventory/Events/RefreshEquipmentHudEvent.cs
@@ -1,10 +1,13 @@
namespace Content.Shared.Inventory.Events;
-[ByRefEvent]
-public record struct RefreshEquipmentHudEvent(SlotFlags TargetSlots) : IInventoryRelayEvent
- where T : IComponent
+public sealed class RefreshEquipmentHudEvent : EntityEventArgs, IInventoryRelayEvent where T : IComponent
{
- public SlotFlags TargetSlots { get; } = TargetSlots;
+ public SlotFlags TargetSlots { get; init; }
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 e02901018df..31ac69c5cb9 100644
--- a/Content.Shared/Inventory/InventorySystem.Relay.cs
+++ b/Content.Shared/Inventory/InventorySystem.Relay.cs
@@ -60,14 +60,14 @@ public void InitializeRelay()
// NightVision-End
// ComponentActivatedClientSystems
- SubscribeLocalEvent>(RefRelayInventoryEvent);
- SubscribeLocalEvent>(RefRelayInventoryEvent);
- SubscribeLocalEvent>(RefRelayInventoryEvent);
- SubscribeLocalEvent>(RefRelayInventoryEvent);
- SubscribeLocalEvent>(RefRelayInventoryEvent);
- SubscribeLocalEvent>(RefRelayInventoryEvent);
- SubscribeLocalEvent>(RefRelayInventoryEvent);
- SubscribeLocalEvent>(RefRelayInventoryEvent);
+ SubscribeLocalEvent>(RelayInventoryEvent);
+ SubscribeLocalEvent>(RelayInventoryEvent);
+ SubscribeLocalEvent>(RelayInventoryEvent);
+ SubscribeLocalEvent>(RelayInventoryEvent);
+ SubscribeLocalEvent>(RelayInventoryEvent);
+ SubscribeLocalEvent>(RelayInventoryEvent);
+ SubscribeLocalEvent>(RelayInventoryEvent);
+ SubscribeLocalEvent>(RelayInventoryEvent);
SubscribeLocalEvent>(OnGetEquipmentVerbs);
}
diff --git a/Content.Shared/Lathe/SharedLatheSystem.cs b/Content.Shared/Lathe/SharedLatheSystem.cs
index 7328787f25e..dd251ed18b3 100644
--- a/Content.Shared/Lathe/SharedLatheSystem.cs
+++ b/Content.Shared/Lathe/SharedLatheSystem.cs
@@ -18,7 +18,6 @@ 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();
@@ -67,12 +66,6 @@ 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 6dc6cbfe0b3..8754de50583 100644
--- a/Content.Shared/Light/EntitySystems/UnpoweredFlashlightSystem.cs
+++ b/Content.Shared/Light/EntitySystems/UnpoweredFlashlightSystem.cs
@@ -2,7 +2,6 @@
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;
@@ -23,7 +22,6 @@ 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()
{
@@ -80,9 +78,6 @@ 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 2689602ae8c..070d5801c1c 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]
+ [DataField("breakOnEmag")]
[AutoNetworkedField]
- public bool BreakOnAccessBreaker = true;
+ public bool BreakOnEmag = 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 0b24bc67221..10652800953 100644
--- a/Content.Shared/Lock/LockSystem.cs
+++ b/Content.Shared/Lock/LockSystem.cs
@@ -28,7 +28,6 @@ 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!;
@@ -296,10 +295,7 @@ private void AddToggleLockVerb(EntityUid uid, LockComponent component, GetVerbsE
private void OnEmagged(EntityUid uid, LockComponent component, ref GotEmaggedEvent args)
{
- if (!_emag.CompareFlag(args.Type, EmagType.Access))
- return;
-
- if (!component.Locked || !component.BreakOnAccessBreaker)
+ if (!component.Locked || !component.BreakOnEmag)
return;
_audio.PlayPredicted(component.UnlockSound, uid, args.UserUid);
@@ -311,7 +307,7 @@ private void OnEmagged(EntityUid uid, LockComponent component, ref GotEmaggedEve
var ev = new LockToggledEvent(false);
RaiseLocalEvent(uid, ref ev, true);
- args.Repeatable = true;
+ RemComp(uid); //Literally destroys the lock as a tell it was emagged
args.Handled = true;
}
diff --git a/Content.Shared/Magic/Events/VoidApplauseSpellEvent.cs b/Content.Shared/Magic/Events/VoidApplauseSpellEvent.cs
deleted file mode 100644
index c134790da88..00000000000
--- a/Content.Shared/Magic/Events/VoidApplauseSpellEvent.cs
+++ /dev/null
@@ -1,24 +0,0 @@
-using Content.Shared.Actions;
-using Content.Shared.Chat.Prototypes;
-using Robust.Shared.Prototypes;
-using Robust.Shared.Serialization;
-
-namespace Content.Shared.Magic.Events;
-
-public sealed partial class VoidApplauseSpellEvent : EntityTargetActionEvent, ISpeakSpell
-{
- [DataField]
- public string? Speech { get; private set; }
-
- ///
- /// Emote to use.
- ///
- [DataField]
- public ProtoId Emote = "ClapSingle";
-
- ///
- /// Visual effect entity that is spawned at both the user's and the target's location.
- ///
- [DataField]
- public EntProtoId Effect = "EffectVoidBlink";
-}
diff --git a/Content.Shared/Magic/SharedMagicSystem.cs b/Content.Shared/Magic/SharedMagicSystem.cs
index b075d2a090c..cd3e7a15115 100644
--- a/Content.Shared/Magic/SharedMagicSystem.cs
+++ b/Content.Shared/Magic/SharedMagicSystem.cs
@@ -80,7 +80,6 @@ public override void Initialize()
SubscribeLocalEvent(OnChargeSpell);
SubscribeLocalEvent(OnRandomGlobalSpawnSpell);
SubscribeLocalEvent(OnMindSwapSpell);
- SubscribeLocalEvent(OnVoidApplause);
// Spell wishlist
// A wishlish of spells that I'd like to implement or planning on implementing in a future PR
@@ -403,7 +402,8 @@ private void OnTeleportSpell(TeleportSpellEvent args)
return;
var transform = Transform(args.Performer);
- if (transform.MapID != _transform.GetMapId(args.Target) || !_interaction.InRangeUnobstructed(args.Performer, args.Target, range: 1000F, collisionMask: CollisionGroup.Opaque, popup: true))
+
+ if (transform.MapID != args.Target.GetMapId(EntityManager) || !_interaction.InRangeUnobstructed(args.Performer, args.Target, range: 1000F, collisionMask: CollisionGroup.Opaque, popup: true))
return;
_transform.SetCoordinates(args.Performer, args.Target);
@@ -411,17 +411,6 @@ private void OnTeleportSpell(TeleportSpellEvent args)
Speak(args);
args.Handled = true;
}
-
- public virtual void OnVoidApplause(VoidApplauseSpellEvent ev)
- {
- if (ev.Handled || !PassesSpellPrerequisites(ev.Action, ev.Performer))
- return;
-
- ev.Handled = true;
- Speak(ev);
-
- _transform.SwapPositions(ev.Performer, ev.Target);
- }
// End Teleport Spells
#endregion
#region Spell Helpers
diff --git a/Content.Shared/Materials/SharedMaterialReclaimerSystem.cs b/Content.Shared/Materials/SharedMaterialReclaimerSystem.cs
index 8eb541ee598..d143f509485 100644
--- a/Content.Shared/Materials/SharedMaterialReclaimerSystem.cs
+++ b/Content.Shared/Materials/SharedMaterialReclaimerSystem.cs
@@ -29,7 +29,6 @@ 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";
@@ -61,12 +60,6 @@ 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;
}
@@ -214,7 +207,7 @@ public bool CanGib(EntityUid uid, EntityUid victim, MaterialReclaimerComponent c
component.Enabled &&
!component.Broken &&
HasComp(victim) &&
- _emag.CheckFlag(uid, EmagType.Interaction);
+ HasComp(uid);
}
///
diff --git a/Content.Shared/Medical/Cryogenics/SharedCryoPodSystem.cs b/Content.Shared/Medical/Cryogenics/SharedCryoPodSystem.cs
index 957e94c27a3..2644b55e815 100644
--- a/Content.Shared/Medical/Cryogenics/SharedCryoPodSystem.cs
+++ b/Content.Shared/Medical/Cryogenics/SharedCryoPodSystem.cs
@@ -20,7 +20,6 @@ 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!;
@@ -157,13 +156,9 @@ 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
deleted file mode 100644
index 788de804f44..00000000000
--- a/Content.Shared/Mindshield/Components/FakeMindShieldImplantComponent.cs
+++ /dev/null
@@ -1,8 +0,0 @@
-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
deleted file mode 100644
index 106f43367ee..00000000000
--- a/Content.Shared/Mindshield/Components/FakeMindshieldComponent.cs
+++ /dev/null
@@ -1,22 +0,0 @@
-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
deleted file mode 100644
index cb48ef6997f..00000000000
--- a/Content.Shared/Mindshield/FakeMindShield/SharedFakeMindShieldImplantSystem.cs
+++ /dev/null
@@ -1,44 +0,0 @@
-using Content.Shared.Actions;
-using Content.Shared.Implants;
-using Content.Shared.Implants.Components;
-using Content.Shared.Mindshield.Components;
-using Robust.Shared.Containers;
-
-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);
- SubscribeLocalEvent(ImplantDraw);
- }
-
- ///
- /// 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);
- }
-
- private void ImplantDraw(Entity ent, ref EntGotRemovedFromContainerMessage ev)
- {
- RemComp(ev.Container.Owner);
- }
-}
diff --git a/Content.Shared/Mindshield/FakeMindShield/SharedFakeMindshieldSystem.cs b/Content.Shared/Mindshield/FakeMindShield/SharedFakeMindshieldSystem.cs
deleted file mode 100644
index 0a7c9742001..00000000000
--- a/Content.Shared/Mindshield/FakeMindShield/SharedFakeMindshieldSystem.cs
+++ /dev/null
@@ -1,21 +0,0 @@
-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
deleted file mode 100644
index e729314d39b..00000000000
--- a/Content.Shared/Mobs/Events/BeforeAlertSeverityCheckEvent.cs
+++ /dev/null
@@ -1,16 +0,0 @@
-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 a059c18dd8f..eeaecc24d80 100644
--- a/Content.Shared/Mobs/Systems/MobThresholdSystem.cs
+++ b/Content.Shared/Mobs/Systems/MobThresholdSystem.cs
@@ -4,7 +4,6 @@
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;
@@ -392,16 +391,6 @@ 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
deleted file mode 100644
index 3f5a12874b9..00000000000
--- a/Content.Shared/Movement/Components/CursorOffsetRequiresWieldComponent.cs
+++ /dev/null
@@ -1,13 +0,0 @@
-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
deleted file mode 100644
index e0884222f25..00000000000
--- a/Content.Shared/Movement/Components/EyeCursorOffsetComponent.cs
+++ /dev/null
@@ -1,32 +0,0 @@
-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/Systems/SharedContentEyeSystem.cs b/Content.Shared/Movement/Systems/SharedContentEyeSystem.cs
index 71bc65a79ea..faade44c858 100644
--- a/Content.Shared/Movement/Systems/SharedContentEyeSystem.cs
+++ b/Content.Shared/Movement/Systems/SharedContentEyeSystem.cs
@@ -140,29 +140,11 @@ 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);
-
- 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);
+ _eye.SetOffset(eye, ev.Offset, eye);
}
///
diff --git a/Content.Shared/Ninja/Components/EmagProviderComponent.cs b/Content.Shared/Ninja/Components/EmagProviderComponent.cs
index 630ce12d53c..ae3e85cbe42 100644
--- a/Content.Shared/Ninja/Components/EmagProviderComponent.cs
+++ b/Content.Shared/Ninja/Components/EmagProviderComponent.cs
@@ -1,8 +1,6 @@
-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;
@@ -19,23 +17,11 @@ public sealed partial class EmagProviderComponent : Component
/// The tag that marks an entity as immune to emagging.
///
[DataField]
- public ProtoId AccessBreakerImmuneTag = "AccessBreakerImmune";
+ public ProtoId EmagImmuneTag = "EmagImmune";
///
/// 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 3be2ae52e13..ae0bacaf5f6 100644
--- a/Content.Shared/Ninja/Systems/EmagProviderSystem.cs
+++ b/Content.Shared/Ninja/Systems/EmagProviderSystem.cs
@@ -5,7 +5,6 @@
using Content.Shared.Ninja.Components;
using Content.Shared.Tag;
using Content.Shared.Whitelist;
-using Robust.Shared.Audio.Systems;
namespace Content.Shared.Ninja.Systems;
@@ -14,7 +13,6 @@ 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!;
@@ -44,18 +42,14 @@ private void OnBeforeInteractHand(Entity ent, ref BeforeI
return;
// only allowed to emag non-immune entities
- if (_tag.HasTag(target, comp.AccessBreakerImmuneTag))
+ if (_tag.HasTag(target, comp.EmagImmuneTag))
return;
- var emagEv = new GotEmaggedEvent(uid, EmagType.Access);
- RaiseLocalEvent(args.Target, ref emagEv);
-
- if (!emagEv.Handled)
+ var handled = _emag.DoEmagEffect(uid, target);
+ if (!handled)
return;
- _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}");
+ _adminLogger.Add(LogType.Emag, LogImpact.High, $"{ToPrettyString(uid):player} emagged {ToPrettyString(target):target}");
var ev = new EmaggedSomethingEvent(target);
RaiseLocalEvent(uid, ref ev);
args.Handled = true;
@@ -63,7 +57,7 @@ private void OnBeforeInteractHand(Entity ent, ref BeforeI
}
///
-/// Raised on the player when access breaking something.
+/// Raised on the player when emagging something.
///
[ByRefEvent]
public record struct EmaggedSomethingEvent(EntityUid Target);
diff --git a/Content.Shared/Pinpointer/SharedPinpointerSystem.cs b/Content.Shared/Pinpointer/SharedPinpointerSystem.cs
index 47109601835..7f6b8891255 100644
--- a/Content.Shared/Pinpointer/SharedPinpointerSystem.cs
+++ b/Content.Shared/Pinpointer/SharedPinpointerSystem.cs
@@ -10,7 +10,6 @@ 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()
{
@@ -138,15 +137,6 @@ 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/Roles/JobRequirement/RoleTimeRequirement.cs b/Content.Shared/Roles/JobRequirement/RoleTimeRequirement.cs
index f096cfcb420..e75a18f011d 100644
--- a/Content.Shared/Roles/JobRequirement/RoleTimeRequirement.cs
+++ b/Content.Shared/Roles/JobRequirement/RoleTimeRequirement.cs
@@ -40,16 +40,13 @@ public override bool Check(IEntityManager entManager,
var formattedRoleDiff = ContentLocalizationManager.FormatPlaytime(roleDiffSpan);
var departmentColor = Color.Yellow;
- if (!entManager.EntitySysManager.TryGetEntitySystem(out SharedJobSystem? jobSystem))
- return false;
-
- var jobProto = jobSystem.GetJobPrototype(proto);
-
- if (jobSystem.TryGetDepartment(jobProto, out var departmentProto))
- departmentColor = departmentProto.Color;
+ if (entManager.EntitySysManager.TryGetEntitySystem(out SharedJobSystem? jobSystem))
+ {
+ var jobProto = jobSystem.GetJobPrototype(proto);
- if (!protoManager.TryIndex(jobProto, out var indexedJob))
- return false;
+ if (jobSystem.TryGetDepartment(jobProto, out var departmentProto))
+ departmentColor = departmentProto.Color;
+ }
if (!Inverted)
{
@@ -59,7 +56,7 @@ public override bool Check(IEntityManager entManager,
reason = FormattedMessage.FromMarkupPermissive(Loc.GetString(
"role-timer-role-insufficient",
("time", formattedRoleDiff),
- ("job", indexedJob.LocalizedName),
+ ("job", Loc.GetString(proto)),
("departmentColor", departmentColor.ToHex())));
return false;
}
@@ -69,7 +66,7 @@ public override bool Check(IEntityManager entManager,
reason = FormattedMessage.FromMarkupPermissive(Loc.GetString(
"role-timer-role-too-high",
("time", formattedRoleDiff),
- ("job", indexedJob.LocalizedName),
+ ("job", Loc.GetString(proto)),
("departmentColor", departmentColor.ToHex())));
return false;
}
diff --git a/Content.Shared/Silicons/Bots/EmaggableMedibotComponent.cs b/Content.Shared/Silicons/Bots/EmaggableMedibotComponent.cs
index 0253cf12bc0..73775aaf91a 100644
--- a/Content.Shared/Silicons/Bots/EmaggableMedibotComponent.cs
+++ b/Content.Shared/Silicons/Bots/EmaggableMedibotComponent.cs
@@ -16,4 +16,13 @@ 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 407e586eb1c..3ab73149c08 100644
--- a/Content.Shared/Silicons/Bots/MedibotSystem.cs
+++ b/Content.Shared/Silicons/Bots/MedibotSystem.cs
@@ -1,15 +1,6 @@
-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;
@@ -20,32 +11,21 @@ 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 (!_emag.CompareFlag(args.Type, EmagType.Interaction))
- return;
-
- if (_emag.CheckFlag(uid, EmagType.Interaction))
- return;
-
if (!TryComp(uid, out var medibot))
return;
+ _audio.PlayPredicted(comp.SparkSound, uid, args.UserUid);
+
foreach (var (state, treatment) in comp.Replacements)
{
medibot.Treatments[state] = treatment;
@@ -54,25 +34,6 @@ 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.
///
@@ -83,66 +44,4 @@ 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 c3a8c228084..a30e7c8980f 100644
--- a/Content.Shared/Silicons/Laws/SharedSiliconLawSystem.cs
+++ b/Content.Shared/Silicons/Laws/SharedSiliconLawSystem.cs
@@ -1,10 +1,7 @@
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;
@@ -14,29 +11,22 @@ 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);
}
- private void OnGotEmagged(EntityUid uid, EmagSiliconLawComponent component, ref GotEmaggedEvent args)
+ protected virtual void OnAttemptEmag(EntityUid uid, EmagSiliconLawComponent component, ref OnAttemptEmagEvent args)
{
- if (!_emag.CompareFlag(args.Type, EmagType.Interaction))
- return;
-
- if (_emag.CheckFlag(uid, EmagType.Interaction))
- return;
-
- // prevent self-emagging
+ //prevent self emagging
if (uid == args.UserUid)
{
_popup.PopupClient(Loc.GetString("law-emag-cannot-emag-self"), uid, args.UserUid);
+ args.Handled = true;
return;
}
@@ -45,33 +35,14 @@ private void OnGotEmagged(EntityUid uid, EmagSiliconLawComponent component, ref
!panel.Open)
{
_popup.PopupClient(Loc.GetString("law-emag-require-panel"), uid, args.UserUid);
- return;
+ args.Handled = true;
}
- var ev = new SiliconEmaggedEvent(args.UserUid);
- RaiseLocalEvent(uid, ref ev);
-
- 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 NotifyLawsChanged(EntityUid uid, SoundSpecifier? cue = null)
- {
-
}
- protected virtual void EnsureSubvertedSiliconRole(EntityUid mindId)
+ protected virtual void OnGotEmagged(EntityUid uid, EmagSiliconLawComponent component, ref GotEmaggedEvent args)
{
-
+ component.OwnerName = Name(args.UserUid);
+ 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 331c1fa4ddb..ee6dc89bb84 100644
--- a/Content.Shared/Singularity/EntitySystems/SharedSingularityGeneratorSystem.cs
+++ b/Content.Shared/Singularity/EntitySystems/SharedSingularityGeneratorSystem.cs
@@ -11,7 +11,6 @@ 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()
@@ -23,16 +22,7 @@ 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/Storage/EntitySystems/SharedStorageSystem.cs b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs
index 7bf6d74c60b..123282fbdbe 100644
--- a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs
+++ b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs
@@ -3,7 +3,6 @@
using System.Linq;
using Content.Shared.ActionBlocker;
using Content.Shared.Administration.Logs;
-using Content.Shared.CCVar;
using Content.Shared.Containers.ItemSlots;
using Content.Shared.Database;
using Content.Shared.Destructible;
@@ -28,7 +27,6 @@
using Content.Shared.Whitelist;
using Robust.Shared.Audio;
using Robust.Shared.Audio.Systems;
-using Robust.Shared.Configuration;
using Robust.Shared.Containers;
using Robust.Shared.GameStates;
using Robust.Shared.Input.Binding;
@@ -37,46 +35,36 @@
using Robust.Shared.Prototypes;
using Robust.Shared.Random;
using Robust.Shared.Serialization;
-using Robust.Shared.Timing;
using Robust.Shared.Utility;
namespace Content.Shared.Storage.EntitySystems;
public abstract class SharedStorageSystem : EntitySystem
{
- [Dependency] private readonly IConfigurationManager _cfg = default!;
- [Dependency] protected readonly IGameTiming Timing = default!;
- [Dependency] private readonly IPrototypeManager _prototype = default!;
+ [Dependency] private readonly IPrototypeManager _prototype = default!;
[Dependency] protected readonly IRobustRandom Random = default!;
- [Dependency] private readonly ISharedAdminLogManager _adminLog = default!;
-
[Dependency] protected readonly ActionBlockerSystem ActionBlocker = default!;
- [Dependency] private readonly EntityLookupSystem _entityLookupSystem = default!;
- [Dependency] private readonly EntityWhitelistSystem _whitelistSystem = default!;
- [Dependency] private readonly InventorySystem _inventory = default!;
- [Dependency] private readonly SharedAppearanceSystem _appearance = default!;
+ [Dependency] private readonly EntityLookupSystem _entityLookupSystem = default!;
+ [Dependency] private readonly SharedAppearanceSystem _appearance = default!;
[Dependency] protected readonly SharedAudioSystem Audio = default!;
- [Dependency] protected readonly SharedContainerSystem ContainerSystem = default!;
- [Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!;
+ [Dependency] private readonly SharedContainerSystem _containerSystem = default!;
+ [Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!;
[Dependency] protected readonly SharedEntityStorageSystem EntityStorage = default!;
- [Dependency] private readonly SharedInteractionSystem _interactionSystem = default!;
+ [Dependency] private readonly SharedInteractionSystem _interactionSystem = default!;
+ [Dependency] private readonly InventorySystem _inventory = default!;
[Dependency] protected readonly SharedItemSystem ItemSystem = default!;
- [Dependency] private readonly SharedPopupSystem _popupSystem = default!;
- [Dependency] private readonly SharedHandsSystem _sharedHandsSystem = default!;
- [Dependency] private readonly SharedStackSystem _stack = default!;
+ [Dependency] private readonly SharedPopupSystem _popupSystem = default!;
+ [Dependency] private readonly SharedHandsSystem _sharedHandsSystem = default!;
+ [Dependency] private readonly SharedStackSystem _stack = default!;
[Dependency] protected readonly SharedTransformSystem TransformSystem = default!;
- [Dependency] protected readonly SharedUserInterfaceSystem UI = default!;
+ [Dependency] private readonly SharedUserInterfaceSystem _ui = default!;
[Dependency] protected readonly UseDelaySystem UseDelay = default!;
+ [Dependency] private readonly EntityWhitelistSystem _whitelistSystem = default!;
+ [Dependency] private readonly ISharedAdminLogManager _adminLog = default!;
private EntityQuery _itemQuery;
private EntityQuery _stackQuery;
private EntityQuery _xformQuery;
- private EntityQuery _userQuery;
-
- ///
- /// Whether we're allowed to go up-down storage via UI.
- ///
- public bool NestedStorage = true;
[ValidatePrototypeId]
public const string DefaultStorageMaxItemSize = "Normal";
@@ -88,15 +76,10 @@ public abstract class SharedStorageSystem : EntitySystem
private ItemSizePrototype _defaultStorageMaxItemSize = default!;
- ///
- /// Flag for whether we're checking for nested storage interactions.
- ///
- private bool _nestedCheck;
-
public bool CheckingCanInsert;
- private readonly List _entList = new();
- private readonly HashSet _entSet = new();
+ private List _entList = new();
+ private HashSet _entSet = new();
private readonly List _sortedSizes = new();
private FrozenDictionary _nextSmallest = FrozenDictionary.Empty;
@@ -104,11 +87,6 @@ public abstract class SharedStorageSystem : EntitySystem
private const string QuickInsertUseDelayID = "quickInsert";
private const string OpenUiUseDelayID = "storage";
- ///
- /// How many storage windows are allowed to be open at once.
- ///
- private int _openStorageLimit = -1;
-
protected readonly List CantFillReasons = [];
///
@@ -119,11 +97,8 @@ public override void Initialize()
_itemQuery = GetEntityQuery();
_stackQuery = GetEntityQuery();
_xformQuery = GetEntityQuery();
- _userQuery = GetEntityQuery();
_prototype.PrototypesReloaded += OnPrototypesReloaded;
- Subs.CVar(_cfg, CCVars.StorageLimit, OnStorageLimitChanged, true);
-
Subs.BuiEvents(StorageComponent.StorageUiKey.Key, subs =>
{
subs.Event(OnBoundUIClosed);
@@ -133,6 +108,7 @@ public override void Initialize()
SubscribeLocalEvent(OnMapInit);
SubscribeLocalEvent>(AddUiVerb);
SubscribeLocalEvent(OnStorageGetState);
+ SubscribeLocalEvent(OnStorageHandleState);
SubscribeLocalEvent(OnComponentInit, before: new[] { typeof(SharedContainerSystem) });
SubscribeLocalEvent>(AddTransferVerbs);
SubscribeLocalEvent(OnInteractUsing, after: new[] { typeof(ItemSlotsSystem) });
@@ -140,7 +116,6 @@ public override void Initialize()
SubscribeLocalEvent(OnImplantActivate);
SubscribeLocalEvent(AfterInteract);
SubscribeLocalEvent(OnDestroy);
- SubscribeLocalEvent(OnBoundUIAttempt);
SubscribeLocalEvent(OnBoundUIOpen);
SubscribeLocalEvent(OnLockToggled);
SubscribeLocalEvent(OnStackCountChanged);
@@ -151,8 +126,6 @@ public override void Initialize()
SubscribeLocalEvent(OnDoAfter);
- SubscribeAllEvent(OnStorageNested);
- SubscribeAllEvent(OnStorageTransfer);
SubscribeAllEvent(OnInteractWithItem);
SubscribeAllEvent(OnSetItemLocation);
SubscribeAllEvent(OnInsertItemIntoLocation);
@@ -165,24 +138,12 @@ public override void Initialize()
.Bind(ContentKeyFunctions.OpenBelt, InputCmdHandler.FromDelegate(HandleOpenBelt, handle: false))
.Register();
- Subs.CVar(_cfg, CCVars.NestedStorage, OnNestedStorageCvar, true);
-
UpdatePrototypeCache();
}
- private void OnNestedStorageCvar(bool obj)
- {
- NestedStorage = obj;
- }
-
- private void OnStorageLimitChanged(int obj)
- {
- _openStorageLimit = obj;
- }
-
private void OnRemove(Entity entity, ref ComponentRemove args)
{
- UI.CloseUi(entity.Owner, StorageComponent.StorageUiKey.Key);
+ _ui.CloseUi(entity.Owner, StorageComponent.StorageUiKey.Key);
}
private void OnMapInit(Entity entity, ref MapInitEvent args)
@@ -211,6 +172,28 @@ private void OnStorageGetState(EntityUid uid, StorageComponent component, ref Co
};
}
+ private void OnStorageHandleState(EntityUid uid, StorageComponent component, ref ComponentHandleState args)
+ {
+ if (args.Current is not StorageComponentState state)
+ return;
+
+ component.Grid.Clear();
+ component.Grid.AddRange(state.Grid);
+ component.MaxItemSize = state.MaxItemSize;
+ component.Whitelist = state.Whitelist;
+ component.Blacklist = state.Blacklist;
+
+ component.StoredItems.Clear();
+
+ foreach (var (nent, location) in state.StoredItems)
+ {
+ var ent = EnsureEntity(nent, uid);
+ component.StoredItems[ent] = location;
+ }
+
+ component.SavedLocations = state.SavedLocations;
+ }
+
public override void Shutdown()
{
_prototype.PrototypesReloaded -= OnPrototypesReloaded;
@@ -245,7 +228,7 @@ private void UpdatePrototypeCache()
private void OnComponentInit(EntityUid uid, StorageComponent storageComp, ComponentInit args)
{
- storageComp.Container = ContainerSystem.EnsureContainer(uid, StorageComponent.ContainerId);
+ storageComp.Container = _containerSystem.EnsureContainer(uid, StorageComponent.ContainerId);
UpdateAppearance((uid, storageComp, null));
}
@@ -264,7 +247,7 @@ private void CloseNestedInterfaces(EntityUid uid, EntityUid actor, StorageCompon
// close ui
foreach (var entity in storageComp.Container.ContainedEntities)
{
- UI.CloseUis(entity, actor);
+ _ui.CloseUis(entity, actor);
}
}
@@ -273,7 +256,7 @@ private void OnBoundUIClosed(EntityUid uid, StorageComponent storageComp, BoundU
CloseNestedInterfaces(uid, args.Actor, storageComp);
// If UI is closed for everyone
- if (!UI.IsUiOpen(uid, args.UiKey))
+ if (!_ui.IsUiOpen(uid, args.UiKey))
{
UpdateAppearance((uid, storageComp, null));
Audio.PlayPredicted(storageComp.StorageCloseSound, uid, args.Actor);
@@ -286,7 +269,7 @@ private void AddUiVerb(EntityUid uid, StorageComponent component, GetVerbsEvent<
return;
// Does this player currently have the storage UI open?
- var uiOpen = UI.IsUiOpen(uid, StorageComponent.StorageUiKey.Key, args.User);
+ var uiOpen = _ui.IsUiOpen(uid, StorageComponent.StorageUiKey.Key, args.User);
ActivationVerb verb = new()
{
@@ -294,7 +277,7 @@ private void AddUiVerb(EntityUid uid, StorageComponent component, GetVerbsEvent<
{
if (uiOpen)
{
- UI.CloseUi(uid, StorageComponent.StorageUiKey.Key, args.User);
+ _ui.CloseUi(uid, StorageComponent.StorageUiKey.Key, args.User);
}
else
{
@@ -332,16 +315,16 @@ public void OpenStorageUI(EntityUid uid, EntityUid entity, StorageComponent? sto
if (!CanInteract(entity, (uid, storageComp), silent: silent))
return;
- if (!UI.TryOpenUi(uid, StorageComponent.StorageUiKey.Key, entity))
- return;
-
if (!silent)
{
- Audio.PlayPredicted(storageComp.StorageOpenSound, uid, entity);
+ if (!_ui.IsUiOpen(uid, StorageComponent.StorageUiKey.Key))
+ Audio.PlayPredicted(storageComp.StorageOpenSound, uid, entity);
if (useDelay != null)
UseDelay.TryResetDelay((uid, useDelay), id: OpenUiUseDelayID);
}
+
+ _ui.OpenUi(uid, StorageComponent.StorageUiKey.Key, entity);
}
public virtual void UpdateUI(Entity entity) {}
@@ -401,43 +384,18 @@ private void OnActivate(EntityUid uid, StorageComponent storageComp, ActivateInW
return;
// Toggle
- if (UI.IsUiOpen(uid, StorageComponent.StorageUiKey.Key, args.User))
+ if (_ui.IsUiOpen(uid, StorageComponent.StorageUiKey.Key, args.User))
{
- UI.CloseUi(uid, StorageComponent.StorageUiKey.Key, args.User);
+ _ui.CloseUi(uid, StorageComponent.StorageUiKey.Key, args.User);
}
else
{
- // Handle recursively opening nested storages.
- if (ContainerSystem.TryGetContainingContainer((args.Target, null, null), out var container) &&
- UI.IsUiOpen(container.Owner, StorageComponent.StorageUiKey.Key, args.User))
- {
- _nestedCheck = true;
- HideStorageWindow(container.Owner, args.User);
- OpenStorageUI(uid, args.User, storageComp, silent: true);
- _nestedCheck = false;
- }
- else
- {
- // If you need something more sophisticated for multi-UI you'll need to code some smarter
- // interactions.
- if (_openStorageLimit == 1)
- UI.CloseUserUis(args.User);
-
- OpenStorageUI(uid, args.User, storageComp, silent: false);
- }
+ OpenStorageUI(uid, args.User, storageComp, false);
}
args.Handled = true;
}
- protected virtual void HideStorageWindow(EntityUid uid, EntityUid actor)
- {
- }
-
- protected virtual void ShowStorageWindow(EntityUid uid, EntityUid actor)
- {
- }
-
///
/// Specifically for storage implants.
///
@@ -446,10 +404,10 @@ private void OnImplantActivate(EntityUid uid, StorageComponent storageComp, Open
if (args.Handled)
return;
- var uiOpen = UI.IsUiOpen(uid, StorageComponent.StorageUiKey.Key, args.Performer);
+ var uiOpen = _ui.IsUiOpen(uid, StorageComponent.StorageUiKey.Key, args.Performer);
if (uiOpen)
- UI.CloseUi(uid, StorageComponent.StorageUiKey.Key, args.Performer);
+ _ui.CloseUi(uid, StorageComponent.StorageUiKey.Key, args.Performer);
else
OpenStorageUI(uid, args.Performer, storageComp, false);
@@ -516,7 +474,7 @@ private void AfterInteract(EntityUid uid, StorageComponent storageComp, AfterInt
if (args.Target is not { Valid: true } target)
return;
- if (ContainerSystem.IsEntityInContainer(target)
+ if (_containerSystem.IsEntityInContainer(target)
|| target == args.User
|| !_itemQuery.HasComponent(target))
{
@@ -567,7 +525,7 @@ private void OnDoAfter(EntityUid uid, StorageComponent component, AreaPickupDoAf
var entity = GetEntity(args.Entities[i]);
// Check again, situation may have changed for some entities, but we'll still pick up any that are valid
- if (ContainerSystem.IsEntityInContainer(entity)
+ if (_containerSystem.IsEntityInContainer(entity)
|| entity == args.Args.User
|| !_itemQuery.HasComponent(entity))
{
@@ -612,7 +570,7 @@ private void OnDoAfter(EntityUid uid, StorageComponent component, AreaPickupDoAf
private void OnReclaimed(EntityUid uid, StorageComponent storageComp, GotReclaimedEvent args)
{
- ContainerSystem.EmptyContainer(storageComp.Container, destination: args.ReclaimerCoordinates);
+ _containerSystem.EmptyContainer(storageComp.Container, destination: args.ReclaimerCoordinates);
}
private void OnDestroy(EntityUid uid, StorageComponent storageComp, DestructionEventArgs args)
@@ -620,7 +578,7 @@ private void OnDestroy(EntityUid uid, StorageComponent storageComp, DestructionE
var coordinates = TransformSystem.GetMoverCoordinates(uid);
// Being destroyed so need to recalculate.
- ContainerSystem.EmptyContainer(storageComp.Container, destination: coordinates);
+ _containerSystem.EmptyContainer(storageComp.Container, destination: coordinates);
}
///
@@ -680,54 +638,6 @@ private void OnSetItemLocation(StorageSetItemLocationEvent msg, EntitySessionEve
TrySetItemStorageLocation(item!, storage!, msg.Location);
}
- private void OnStorageNested(OpenNestedStorageEvent msg, EntitySessionEventArgs args)
- {
- if (!NestedStorage)
- return;
-
- if (!TryGetEntity(msg.InteractedItemUid, out var itemEnt))
- return;
-
- _nestedCheck = true;
-
- var result = ValidateInput(args,
- msg.StorageUid,
- msg.InteractedItemUid,
- out var player,
- out var storage,
- out var item);
-
- if (!result)
- {
- _nestedCheck = false;
- return;
- }
-
- HideStorageWindow(storage.Owner, player.Owner);
- OpenStorageUI(item.Owner, player.Owner, silent: true);
- _nestedCheck = false;
- }
-
- private void OnStorageTransfer(StorageTransferItemEvent msg, EntitySessionEventArgs args)
- {
- if (!TryGetEntity(msg.ItemEnt, out var itemEnt))
- return;
-
- var localPlayer = args.SenderSession.AttachedEntity;
-
- if (!TryComp(localPlayer, out HandsComponent? handsComp) || !_sharedHandsSystem.TryPickup(localPlayer.Value, itemEnt.Value, handsComp: handsComp, animate: false))
- return;
-
- if (!ValidateInput(args, msg.StorageEnt, msg.ItemEnt, out var player, out var storage, out var item, held: true))
- return;
-
- _adminLog.Add(
- LogType.Storage,
- LogImpact.Low,
- $"{ToPrettyString(player):player} is inserting {ToPrettyString(item):item} into {ToPrettyString(storage):storage}");
- InsertAt(storage!, item!, msg.Location, out _, player, stackAutomatically: false);
- }
-
private void OnInsertItemIntoLocation(StorageInsertItemIntoLocationEvent msg, EntitySessionEventArgs args)
{
if (!ValidateInput(args, msg.StorageEnt, msg.ItemEnt, out var player, out var storage, out var item, held: true))
@@ -748,46 +658,9 @@ private void OnSaveItemLocation(StorageSaveItemLocationEvent msg, EntitySessionE
SaveItemLocation(storage!, item.Owner);
}
- private void OnBoundUIOpen(Entity ent, ref BoundUIOpenedEvent args)
- {
- UpdateAppearance((ent.Owner, ent.Comp, null));
- }
-
- private void OnBoundUIAttempt(BoundUserInterfaceMessageAttempt args)
+ private void OnBoundUIOpen(EntityUid uid, StorageComponent storageComp, BoundUIOpenedEvent args)
{
- if (args.UiKey is not StorageComponent.StorageUiKey.Key ||
- _openStorageLimit == -1 ||
- _nestedCheck ||
- args.Message is not OpenBoundInterfaceMessage)
- return;
-
- var uid = args.Target;
- var actor = args.Actor;
- var count = 0;
-
- if (_userQuery.TryComp(actor, out var userComp))
- {
- foreach (var (ui, keys) in userComp.OpenInterfaces)
- {
- if (ui == uid)
- continue;
-
- foreach (var key in keys)
- {
- if (key is not StorageComponent.StorageUiKey)
- continue;
-
- count++;
-
- if (count >= _openStorageLimit)
- {
- args.Cancel();
- }
-
- break;
- }
- }
- }
+ UpdateAppearance((uid, storageComp, null));
}
private void OnEntInserted(Entity entity, ref EntInsertedIntoContainerMessage args)
@@ -803,7 +676,7 @@ private void OnEntInserted(Entity entity, ref EntInsertedIntoC
{
if (!TryGetAvailableGridSpace((entity.Owner, entity.Comp), (args.Entity, null), out var location))
{
- ContainerSystem.Remove(args.Entity, args.Container, force: true);
+ _containerSystem.Remove(args.Entity, args.Container, force: true);
return;
}
@@ -865,7 +738,7 @@ public void UpdateAppearance(Entity ent
var capacity = storage.Grid.GetArea();
var used = GetCumulativeItemAreas((uid, storage));
- var isOpen = UI.IsUiOpen(entity.Owner, StorageComponent.StorageUiKey.Key);
+ var isOpen = _ui.IsUiOpen(entity.Owner, StorageComponent.StorageUiKey.Key);
_appearance.SetData(uid, StorageVisuals.StorageUsed, used, appearance);
_appearance.SetData(uid, StorageVisuals.Capacity, capacity, appearance);
@@ -975,7 +848,7 @@ public bool CanInsert(
}
CheckingCanInsert = true;
- if (!ContainerSystem.CanInsert(insertEnt, storageComp.Container))
+ if (!_containerSystem.CanInsert(insertEnt, storageComp.Container))
{
CheckingCanInsert = false;
reason = null;
@@ -1076,7 +949,7 @@ public bool Insert(
if (!stackAutomatically || !_stackQuery.TryGetComponent(insertEnt, out var insertStack))
{
- if (!ContainerSystem.Insert(insertEnt, storageComp.Container))
+ if (!_containerSystem.Insert(insertEnt, storageComp.Container))
return false;
if (playSound)
@@ -1102,7 +975,7 @@ public bool Insert(
// Still stackable remaining
if (insertStack.Count > 0
- && !ContainerSystem.Insert(insertEnt, storageComp.Container)
+ && !_containerSystem.Insert(insertEnt, storageComp.Container)
&& toInsertCount == insertStack.Count)
{
// Failed to insert anything.
@@ -1181,7 +1054,6 @@ public bool TrySetItemStorageLocation(Entity itemEnt, Entity ent, Entity
@@ -1486,16 +1357,16 @@ private void OnLockToggled(EntityUid uid, StorageComponent component, ref LockTo
return;
// Gets everyone looking at the UI
- foreach (var actor in UI.GetActors(uid, StorageComponent.StorageUiKey.Key).ToList())
+ foreach (var actor in _ui.GetActors(uid, StorageComponent.StorageUiKey.Key).ToList())
{
if (!CanInteract(actor, (uid, component)))
- UI.CloseUi(uid, StorageComponent.StorageUiKey.Key, actor);
+ _ui.CloseUi(uid, StorageComponent.StorageUiKey.Key, actor);
}
}
private void OnStackCountChanged(EntityUid uid, MetaDataComponent component, StackCountChangedEvent args)
{
- if (ContainerSystem.TryGetContainingContainer((uid, null, component), out var container) &&
+ if (_containerSystem.TryGetContainingContainer((uid, null, component), out var container) &&
container.ID == StorageComponent.ContainerId)
{
UpdateAppearance(container.Owner);
@@ -1527,13 +1398,13 @@ private void HandleToggleSlotUI(ICommonSession? session, string slot)
if (!ActionBlocker.CanInteract(playerEnt, storageEnt))
return;
- if (!UI.IsUiOpen(storageEnt.Value, StorageComponent.StorageUiKey.Key, playerEnt))
+ if (!_ui.IsUiOpen(storageEnt.Value, StorageComponent.StorageUiKey.Key, playerEnt))
{
OpenStorageUI(storageEnt.Value, playerEnt, silent: false);
}
else
{
- UI.CloseUi(storageEnt.Value, StorageComponent.StorageUiKey.Key, playerEnt);
+ _ui.CloseUi(storageEnt.Value, StorageComponent.StorageUiKey.Key, playerEnt);
}
}
@@ -1588,7 +1459,7 @@ private bool ValidateInput(
// TODO STORAGE use BUI events
// This would automatically validate that the UI is open & that the user can interact.
// However, we still need to manually validate that items being used are in the users hands or in the storage.
- if (!UI.IsUiOpen(storageUid.Value, StorageComponent.StorageUiKey.Key, playerUid))
+ if (!_ui.IsUiOpen(storageUid.Value, StorageComponent.StorageUiKey.Key, playerUid))
return false;
if (!ActionBlocker.CanInteract(playerUid, storageUid))
diff --git a/Content.Shared/Storage/StorageComponent.cs b/Content.Shared/Storage/StorageComponent.cs
index c59f7ab00e9..52547454a07 100644
--- a/Content.Shared/Storage/StorageComponent.cs
+++ b/Content.Shared/Storage/StorageComponent.cs
@@ -148,19 +148,6 @@ public enum StorageUiKey : byte
}
}
- [Serializable, NetSerializable]
- public sealed class OpenNestedStorageEvent : EntityEventArgs
- {
- public readonly NetEntity InteractedItemUid;
- public readonly NetEntity StorageUid;
-
- public OpenNestedStorageEvent(NetEntity interactedItemUid, NetEntity storageUid)
- {
- InteractedItemUid = interactedItemUid;
- StorageUid = storageUid;
- }
- }
-
[Serializable, NetSerializable]
public sealed class StorageInteractWithItemEvent : EntityEventArgs
{
@@ -192,26 +179,6 @@ public StorageSetItemLocationEvent(NetEntity itemEnt, NetEntity storageEnt, Item
}
}
- [Serializable, NetSerializable]
- public sealed class StorageTransferItemEvent : EntityEventArgs
- {
- public readonly NetEntity ItemEnt;
-
- ///
- /// Target storage to receive the transfer.
- ///
- public readonly NetEntity StorageEnt;
-
- public readonly ItemStorageLocation Location;
-
- public StorageTransferItemEvent(NetEntity itemEnt, NetEntity storageEnt, ItemStorageLocation location)
- {
- ItemEnt = itemEnt;
- StorageEnt = storageEnt;
- Location = location;
- }
- }
-
[Serializable, NetSerializable]
public sealed class StorageInsertItemIntoLocationEvent : EntityEventArgs
{
diff --git a/Content.Shared/Stunnable/StunbatonComponent.cs b/Content.Shared/Stunnable/StunbatonComponent.cs
index b133679cd36..1df009f780b 100644
--- a/Content.Shared/Stunnable/StunbatonComponent.cs
+++ b/Content.Shared/Stunnable/StunbatonComponent.cs
@@ -2,7 +2,7 @@
using Robust.Shared.Audio;
using Robust.Shared.GameStates;
-namespace Content.Shared.Stunnable;
+namespace Content.Server.Stunnable.Components;
[RegisterComponent, NetworkedComponent]
[AutoGenerateComponentState]
diff --git a/Content.Shared/Traits/Assorted/PainNumbnessComponent.cs b/Content.Shared/Traits/Assorted/PainNumbnessComponent.cs
deleted file mode 100644
index 9ae72c62867..00000000000
--- a/Content.Shared/Traits/Assorted/PainNumbnessComponent.cs
+++ /dev/null
@@ -1,16 +0,0 @@
-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
deleted file mode 100644
index 3ded13300d9..00000000000
--- a/Content.Shared/Traits/Assorted/PainNumbnessSystem.cs
+++ /dev/null
@@ -1,46 +0,0 @@
-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 c4f3eede2d2..94562ce8d1b 100644
--- a/Content.Shared/VendingMachines/SharedVendingMachineSystem.cs
+++ b/Content.Shared/VendingMachines/SharedVendingMachineSystem.cs
@@ -2,7 +2,6 @@
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;
@@ -20,14 +19,11 @@ 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);
}
@@ -53,21 +49,9 @@ 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
- /// with the EmagType.Interaction flag exists and is true
+ /// exists and is true
/// are true respectively.
///
///
@@ -80,7 +64,7 @@ public List GetAllInventory(EntityUid uid, Vending
var inventory = new List(component.Inventory.Values);
- if (_emag.CheckFlag(uid, EmagType.Interaction))
+ if (HasComp(uid))
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 ffa78ba42a2..b322bbe51bc 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(SharedWieldableSystem))]
+[RegisterComponent, NetworkedComponent, Access(typeof(WieldableSystem))]
public sealed partial class MeleeRequiresWieldComponent : Component
{
diff --git a/Content.Shared/Weapons/Ranged/Components/GunRequiresWieldComponent.cs b/Content.Shared/Weapons/Ranged/Components/GunRequiresWieldComponent.cs
index d5016c90e72..2016459b9d5 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(SharedWieldableSystem))]
+[Access(typeof(WieldableSystem))]
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 bd2e9d4dd1e..522319ccbd3 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(SharedWieldableSystem))]
+[RegisterComponent, NetworkedComponent, AutoGenerateComponentState, Access(typeof(WieldableSystem))]
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 8c9d4688449..74e48dbf262 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, user);
+ CreateEffect(gun, ev, gun);
}
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 86afe1897b0..3336923b024 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(SharedWieldableSystem))]
+[RegisterComponent, Access(typeof(WieldableSystem))]
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 c146940b7a2..5dc6abbbbea 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(SharedWieldableSystem)), AutoGenerateComponentState]
+[RegisterComponent, NetworkedComponent, Access(typeof(WieldableSystem)), AutoGenerateComponentState]
public sealed partial class WieldableComponent : Component
{
[DataField("wieldSound")]
diff --git a/Content.Shared/Wieldable/SharedWieldableSystem.cs b/Content.Shared/Wieldable/WieldableSystem.cs
similarity index 99%
rename from Content.Shared/Wieldable/SharedWieldableSystem.cs
rename to Content.Shared/Wieldable/WieldableSystem.cs
index 24c63c5f2f1..200a50d28f7 100644
--- a/Content.Shared/Wieldable/SharedWieldableSystem.cs
+++ b/Content.Shared/Wieldable/WieldableSystem.cs
@@ -1,5 +1,4 @@
using System.Linq;
-using Content.Shared.Camera;
using Content.Shared.Examine;
using Content.Shared.Hands;
using Content.Shared.Hands.Components;
@@ -8,7 +7,6 @@
using Content.Shared.Interaction.Events;
using Content.Shared.Inventory.VirtualItem;
using Content.Shared.Item;
-using Content.Shared.Movement.Components;
using Content.Shared.Popups;
using Content.Shared.Timing;
using Content.Shared.Verbs;
@@ -25,7 +23,7 @@
namespace Content.Shared.Wieldable;
-public abstract class SharedWieldableSystem : EntitySystem
+public sealed class WieldableSystem : EntitySystem
{
[Dependency] private readonly IGameTiming _timing = default!;
[Dependency] private readonly INetManager _netManager = default!;
diff --git a/Content.Shared/Xenoarchaeology/Equipment/SharedArtifactCrusherSystem.cs b/Content.Shared/Xenoarchaeology/Equipment/SharedArtifactCrusherSystem.cs
index 2d7d86822f9..da253ba80af 100644
--- a/Content.Shared/Xenoarchaeology/Equipment/SharedArtifactCrusherSystem.cs
+++ b/Content.Shared/Xenoarchaeology/Equipment/SharedArtifactCrusherSystem.cs
@@ -14,7 +14,6 @@ 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()
@@ -41,15 +40,6 @@ 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/Resources/Audio/Effects/Emotes/attributions.yml b/Resources/Audio/Effects/Emotes/attributions.yml
index 6b580a930bb..0c62b483660 100644
--- a/Resources/Audio/Effects/Emotes/attributions.yml
+++ b/Resources/Audio/Effects/Emotes/attributions.yml
@@ -6,11 +6,6 @@
license: "CC-BY-SA-3.0"
copyright: "Taken from tgstation at https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432"
source: "https://github.com/tgstation/tgstation"
-- files:
- - clap-single.ogg
- license: "CC-BY-SA-3.0"
- copyright: "Taken from Citadel Station at https://github.com/Citadel-Station-13/Citadel-Station-13/commit/e145bdafe83e2cf38d148c39f073da5e7b0cb456"
- source: "https://github.com/Citadel-Station-13/Citadel-Station-13"
- files:
- snap1.ogg
- snap2.ogg
diff --git a/Resources/Audio/Effects/Emotes/clap-single.ogg b/Resources/Audio/Effects/Emotes/clap-single.ogg
deleted file mode 100644
index 94d8b10107e..00000000000
Binary files a/Resources/Audio/Effects/Emotes/clap-single.ogg and /dev/null differ
diff --git a/Resources/Audio/Machines/attributions.yml b/Resources/Audio/Machines/attributions.yml
index 4a95138ca5d..50a4914f554 100644
--- a/Resources/Audio/Machines/attributions.yml
+++ b/Resources/Audio/Machines/attributions.yml
@@ -196,8 +196,3 @@
license: "CC0-1.0"
copyright: "by AftrLite (Github). Uses audio from hypospray.ogg and hiss.ogg (Found in Resources/Audio/Items)"
source: "https://github.com/space-wizards/space-station-14/pull/33097"
-
-- files: ["shutter.ogg"]
- license: "CC-BY-3.0"
- copyright: "Created by Tomlija, converted to OGG and modified by themias."
- source: "https://freesound.org/people/Tomlija/sounds/99565/"
\ No newline at end of file
diff --git a/Resources/Audio/Machines/shutter.ogg b/Resources/Audio/Machines/shutter.ogg
deleted file mode 100644
index f3430aaf47f..00000000000
Binary files a/Resources/Audio/Machines/shutter.ogg and /dev/null differ
diff --git a/Resources/Audio/Magic/Eldritch/voidblink.ogg b/Resources/Audio/Magic/Eldritch/voidblink.ogg
deleted file mode 100644
index 84855918d1e..00000000000
Binary files a/Resources/Audio/Magic/Eldritch/voidblink.ogg and /dev/null differ
diff --git a/Resources/Audio/Magic/attributions.yml b/Resources/Audio/Magic/attributions.yml
index 92a4ae3c450..bfbe4d6ec24 100644
--- a/Resources/Audio/Magic/attributions.yml
+++ b/Resources/Audio/Magic/attributions.yml
@@ -22,9 +22,3 @@
copyright: '"forcewall.ogg", "knock.ogg", "blink.ogg", "ethereal_enter.ogg", and "ethereal_exit.ogg" by Citadel Station 13'
license: CC-BY-SA-3.0
source: https://github.com/Citadel-Station-13/Citadel-Station-13/commit/35a1723e98a60f375df590ca572cc90f1bb80bd5
-
-- files:
- - voidblink.ogg
- copyright: '"voidblink.ogg" by Citadel Station 13'
- license: CC-BY-SA-3.0
- source: https://github.com/Citadel-Station-13/Citadel-Station-13/commit/e145bdafe83e2cf38d148c39f073da5e7b0cb456
diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml
index 53e6fe59465..2f4aaf703a4 100644
--- a/Resources/Changelog/Changelog.yml
+++ b/Resources/Changelog/Changelog.yml
@@ -1,4 +1,315 @@
Entries:
+- 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.
+ type: Fix
+ id: 7381
+ time: '2024-09-16T00:04:45.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/32192
+- author: DrSmugleaf
+ changes:
+ - message: Fixed examine sometimes flickering and closing until you examine something
+ around you.
+ type: Fix
+ id: 7382
+ time: '2024-09-16T08:51:54.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/32205
+- author: ArtisticRoomba
+ changes:
+ - message: The Bruise-O-Mat alcohol vendor has been added to the nukie outpost,
+ for all your pre-op drinking needs. Seems to have developed a witty personality,
+ too...
+ type: Add
+ id: 7383
+ time: '2024-09-16T08:59:00.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/32107
+- author: ArtisticRoomba
+ changes:
+ - message: The binary translator key in the syndie uplink is now correctly marked
+ as syndicate contraband.
+ type: Tweak
+ id: 7384
+ time: '2024-09-16T10:01:49.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/32193
+- author: MissKay1994
+ changes:
+ - message: Lizards are now poisoned by hot chocolate
+ type: Fix
+ id: 7385
+ time: '2024-09-16T12:45:15.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/32147
+- author: Alice Liddel
+ changes:
+ - message: Crayon charges increased from 15 to 25
+ type: Add
+ id: 7386
+ time: '2024-09-17T00:35:57.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/32061
+- author: TheShuEd
+ changes:
+ - message: Anomalous infections added! People can now be infected by anomalies!
+ This allows you to use abnormal abilities, but can easily kill the host. To
+ cure them, bombard them with containment particles, because if the anomaly inside
+ them explodes, their bodies will be gibbed....
+ type: Add
+ - message: Flesh anomaly resprite
+ type: Tweak
+ - message: anomalies now disconnect from the anomaly synchronizer if they are too
+ far away from it.
+ type: Fix
+ id: 7387
+ time: '2024-09-17T09:49:19.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/31876
+- author: TheShuEd
+ changes:
+ - message: fix Tech anomaly loud sounds and superfast flickering
+ type: Fix
+ id: 7388
+ time: '2024-09-17T16:05:38.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/32245
+- author: drakewill-CRL
+ changes:
+ - message: Fixed plant mutations carrying over to other plants and future rounds.
+ type: Fix
+ id: 7389
+ time: '2024-09-17T19:45:42.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/32257
- author: Moomoobeef
changes:
- message: Added more names to the pool of names the AI can have.
@@ -3576,333 +3887,3 @@
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
-- author: keronshb
- changes:
- - message: Added Void's Applause! A Wizard Spell that switches your location with
- the target.
- type: Add
- id: 7881
- time: '2025-01-31T00:10:36.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/34591
-- author: Nox38
- changes:
- - message: Rebalanced Box's armory and increased its max security officers to 7.
- type: Tweak
- id: 7882
- time: '2025-01-31T07:23:03.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/34750
-- author: SlamBamActionman
- changes:
- - message: Forcefeeding pills now takes 2 seconds (was 1 second), while eating them
- takes 0.6 seconds (was 1 second).
- type: Tweak
- id: 7883
- time: '2025-01-31T11:59:38.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/34764
-- author: themias
- changes:
- - message: Updated sound effects for shutters
- type: Tweak
- id: 7884
- time: '2025-01-31T17:41:52.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/34774
-- author: Nox38
- changes:
- - message: Renamed riot bullet shield to ballistic shield
- type: Tweak
- - message: Renamed riot laser shield to ablative shield
- type: Tweak
- id: 7885
- time: '2025-01-31T23:39:22.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/34794
-- author: Nox38
- changes:
- - message: Set Marathon's max secoffs to 8.
- type: Tweak
- - message: Restocked Marathon's armory.
- type: Tweak
- id: 7886
- time: '2025-02-01T06:32:42.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/34798
-- author: ToxicSonicFan04
- changes:
- - message: Added Sink to Chemistry on Box Station!
- type: Add
- id: 7887
- time: '2025-02-01T06:35:36.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/34803
-- author: NazrinNya
- changes:
- - message: Flesh Kudzu now contains razorium, making it unsafe to eat.
- type: Tweak
- id: 7888
- time: '2025-02-01T12:10:20.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/32821
-- author: Boaz1111
- changes:
- - message: 'New Reagent: Coldsauce! It can be made using the Frost Oil from Chilly
- Peppers, similar to Hotsauce from Capsaicin Oil!'
- type: Add
- - message: Coldsauce packets and bottles now contain Coldsauce, instead of Frost
- Oil.
- type: Tweak
- id: 7889
- time: '2025-02-01T15:20:01.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/34458
diff --git a/Resources/ConfigPresets/WizardsDen/vulture.toml b/Resources/ConfigPresets/WizardsDen/vulture.toml
index 95aecb284a4..2bd16b61b8f 100644
--- a/Resources/ConfigPresets/WizardsDen/vulture.toml
+++ b/Resources/ConfigPresets/WizardsDen/vulture.toml
@@ -5,3 +5,6 @@ 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/Credits/GitHub.txt b/Resources/Credits/GitHub.txt
index cbd4e77d553..244ba8874bd 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, 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
+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, 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, 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, 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, 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, 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, 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
diff --git a/Resources/Locale/en-US/cargo/cargo-bounty-console.ftl b/Resources/Locale/en-US/cargo/cargo-bounty-console.ftl
index d7a7025927f..4314cbf4496 100644
--- a/Resources/Locale/en-US/cargo/cargo-bounty-console.ftl
+++ b/Resources/Locale/en-US/cargo/cargo-bounty-console.ftl
@@ -18,9 +18,3 @@ 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 9d17dea6299..b7f5d6a2fae 100644
--- a/Resources/Locale/en-US/changelog/changelog-window.ftl
+++ b/Resources/Locale/en-US/changelog/changelog-window.ftl
@@ -5,8 +5,7 @@ changelog-author-changed = [color=#EEE]{ $author }[/color] changed:
changelog-today = Today
changelog-yesterday = Yesterday
changelog-new-changes = new changes
-changelog-version-unknown = Unknown Version
-changelog-version-tag = { $fork }/{ $version }
+changelog-version-tag = version v{ $version }
changelog-button = Changelog
changelog-button-new-entries = Changelog (new!)
diff --git a/Resources/Locale/en-US/chat/emotes.ftl b/Resources/Locale/en-US/chat/emotes.ftl
index 74e669b5072..479e9daab4a 100644
--- a/Resources/Locale/en-US/chat/emotes.ftl
+++ b/Resources/Locale/en-US/chat/emotes.ftl
@@ -11,7 +11,6 @@ chat-emote-name-squeak = Squeak
chat-emote-name-thump = Thump Tail
chat-emote-name-click = Click
chat-emote-name-clap = Clap
-chat-emote-name-clap-single = Single Clap
chat-emote-name-snap = Snap
chat-emote-name-salute = Salute
chat-emote-name-gasp = Gasp
@@ -46,7 +45,6 @@ chat-emote-msg-squeak = squeaks.
chat-emote-msg-thump = thumps {POSS-ADJ($entity)} tail.
chat-emote-msg-click = clicks.
chat-emote-msg-clap = claps!
-chat-emote-msg-clap-single = claps their hands together.
chat-emote-msg-snap = snaps {POSS-ADJ($entity)} fingers.
chat-emote-msg-salute = salutes.
chat-emote-msg-gasp = gasps.
diff --git a/Resources/Locale/en-US/criminal-records/criminal-records.ftl b/Resources/Locale/en-US/criminal-records/criminal-records.ftl
index 20eb160c137..2a7c09912fa 100644
--- a/Resources/Locale/en-US/criminal-records/criminal-records.ftl
+++ b/Resources/Locale/en-US/criminal-records/criminal-records.ftl
@@ -3,9 +3,6 @@ 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
@@ -17,8 +14,8 @@ criminal-records-status-suspected = Suspect
criminal-records-status-discharged = Discharged
criminal-records-status-paroled = Paroled
-criminal-records-console-wanted-reason = Wanted Reason
-criminal-records-console-suspected-reason = Suspected Reason
+criminal-records-console-wanted-reason = [color=gray]Wanted Reason[/color]
+criminal-records-console-suspected-reason = [color=gray]Suspected Reason[/color]
criminal-records-console-reason = Reason
criminal-records-console-reason-placeholder = For example: {$placeholder}
@@ -34,14 +31,14 @@ criminal-records-permission-denied = Permission denied
## Security channel notifications
-criminal-records-console-wanted = {$name} ({$job}) was made wanted by {$officer} for: {$reason}.
-criminal-records-console-not-wanted = {$officer} cleared the wanted status of {$name} ({$job}).
-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-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-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-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 83934a181e0..a4360351145 100644
--- a/Resources/Locale/en-US/damage/damage-force-say.ftl
+++ b/Resources/Locale/en-US/damage/damage-force-say.ftl
@@ -9,10 +9,4 @@ damage-force-say-5 = OW!
damage-force-say-6 = URGH!
damage-force-say-7 = HRNK!
-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-
+damage-force-say-sleep = zzz...
diff --git a/Resources/Locale/en-US/datasets/names/ai.ftl b/Resources/Locale/en-US/datasets/names/ai.ftl
index eaa268b3de5..ac6ce0d83e6 100644
--- a/Resources/Locale/en-US/datasets/names/ai.ftl
+++ b/Resources/Locale/en-US/datasets/names/ai.ftl
@@ -73,7 +73,7 @@ names-ai-dataset-55 = Hivebot Overmind
names-ai-dataset-56 = Huey
# A play on the fad apple spawned of putting "i" infront of your tech products name
-names-ai-dataset-57 = iCore
+names-ai-dataset-57 = iAI
# Hell on earth (web browser)
names-ai-dataset-58 = I.E. 6
@@ -99,7 +99,7 @@ names-ai-dataset-70 = Max 404
names-ai-dataset-71 = Metalhead
names-ai-dataset-72 = M.I.M.I
names-ai-dataset-73 = MK ULTRA
-names-ai-dataset-74 = Monarch
+names-ai-dataset-74 = MoMMI
names-ai-dataset-75 = Mugsy3000
names-ai-dataset-76 = Multivac
names-ai-dataset-77 = NCH
diff --git a/Resources/Locale/en-US/emag/emag.ftl b/Resources/Locale/en-US/emag/emag.ftl
index e91bacbc657..b4679870b52 100644
--- a/Resources/Locale/en-US/emag/emag.ftl
+++ b/Resources/Locale/en-US/emag/emag.ftl
@@ -1,2 +1,2 @@
-emag-success = The device zaps something in {THE($target)}.
+emag-success = The card zaps something in {THE($target)}.
emag-no-charges = No charges left!
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 1c1e0bc0e7a..a03c2f8c199 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 get out before the payload detonates. Begin mission.
+nukeops-briefing = Your objectives are simple. Deliver the payload and make sure it 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/guidebook/guides.ftl b/Resources/Locale/en-US/guidebook/guides.ftl
index 17e8f5ab7af..c2e0bf8ec6d 100644
--- a/Resources/Locale/en-US/guidebook/guides.ftl
+++ b/Resources/Locale/en-US/guidebook/guides.ftl
@@ -1,59 +1,18 @@
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-singularityteslaengine = Singularity / Tesla
-guide-entry-singularityengine = Singularity Engine
-guide-entry-teslaengine = Tesla Engine
-guide-entry-solarpanels = Solar Panels
+guide-entry-singularity = Singularity / Tesla
guide-entry-teg = Thermo-electric Generator (TEG)
guide-entry-rtg = RTG
guide-entry-changelings = Changelings
diff --git a/Resources/Locale/en-US/implant/implant.ftl b/Resources/Locale/en-US/implant/implant.ftl
index 813ed3e7a98..073757f53c7 100644
--- a/Resources/Locale/en-US/implant/implant.ftl
+++ b/Resources/Locale/en-US/implant/implant.ftl
@@ -17,9 +17,6 @@ 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 81f59df6227..9f678c1802e 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, Convex 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 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, Convex, 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, 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 37265b875ce..686fcb93cb1 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 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-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-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 20ad23dcb21..1deb39db091 100644
--- a/Resources/Locale/en-US/medical/components/healing-component.ftl
+++ b/Resources/Locale/en-US/medical/components/healing-component.ftl
@@ -1,5 +1,4 @@
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 = {CAPITALIZE($target)} has stopped bleeding
-medical-item-stop-bleeding-self = You have stopped bleeding
+medical-item-stop-bleeding = They 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 79be6d371b2..b6452201198 100644
--- a/Resources/Locale/en-US/npc/medibot.ftl
+++ b/Resources/Locale/en-US/npc/medibot.ftl
@@ -1,7 +1,2 @@
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 9d8d9d839a0..da3221e4f85 100644
--- a/Resources/Locale/en-US/particle-accelerator/components/ui/particle-accelerator-control-menu.ftl
+++ b/Resources/Locale/en-US/particle-accelerator/components/ui/particle-accelerator-control-menu.ftl
@@ -8,6 +8,7 @@ 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]
@@ -15,8 +16,6 @@ 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/reagents/frostoil.ftl b/Resources/Locale/en-US/reagents/frostoil.ftl
deleted file mode 100644
index f2181e7e4a2..00000000000
--- a/Resources/Locale/en-US/reagents/frostoil.ftl
+++ /dev/null
@@ -1,3 +0,0 @@
-### Messages that pop up when metabolizing Frost Oil.
-
-frost-oil-effect-light-cold = You feel a slight cold tingle in your throat...
\ No newline at end of file
diff --git a/Resources/Locale/en-US/reagents/meta/consumable/food/condiments.ftl b/Resources/Locale/en-US/reagents/meta/consumable/food/condiments.ftl
index 0fe7be6b371..809fbafffd9 100644
--- a/Resources/Locale/en-US/reagents/meta/consumable/food/condiments.ftl
+++ b/Resources/Locale/en-US/reagents/meta/consumable/food/condiments.ftl
@@ -7,8 +7,8 @@ reagent-desc-bbq-sauce = Hand wipes not included.
reagent-name-cornoil = corn oil
reagent-desc-cornoil = Corn oil, A delicious oil used in cooking. Made from corn.
-reagent-name-coldsauce = coldsauce
-reagent-desc-coldsauce = Leaves the tongue numb in its passage.
+reagent-name-frostoil = frostoil
+reagent-desc-frostoil = Leaves the tongue numb in its passage.
reagent-name-horseradish-sauce = horseradish sauce
reagent-desc-horseradish-sauce = Smelly horseradish sauce.
diff --git a/Resources/Locale/en-US/reagents/meta/consumable/food/ingredients.ftl b/Resources/Locale/en-US/reagents/meta/consumable/food/ingredients.ftl
index 98dc73ecbc3..4f5c5ae7826 100644
--- a/Resources/Locale/en-US/reagents/meta/consumable/food/ingredients.ftl
+++ b/Resources/Locale/en-US/reagents/meta/consumable/food/ingredients.ftl
@@ -36,6 +36,3 @@ reagent-desc-oil = Used by chefs to cook.
reagent-name-capsaicin-oil = Capsaicin Oil
reagent-desc-capsaicin-oil = Capsaicin Oil is the ingredient found in different types of hot peppers.
-
-reagent-name-frost-oil = Frost Oil
-reagent-desc-frost-oil = Frost Oil is the ingredient found in chilly peppers, a rare pepper mutation.
diff --git a/Resources/Locale/en-US/shutter/shutter.ftl b/Resources/Locale/en-US/shutter/shutter.ftl
deleted file mode 100644
index 3ddcf6d0845..00000000000
--- a/Resources/Locale/en-US/shutter/shutter.ftl
+++ /dev/null
@@ -1 +0,0 @@
-shutter-rattle = *rattle rattle*
\ No newline at end of file
diff --git a/Resources/Locale/en-US/shuttles/console.ftl b/Resources/Locale/en-US/shuttles/console.ftl
index 0ed364b9333..5b8be6ff021 100644
--- a/Resources/Locale/en-US/shuttles/console.ftl
+++ b/Resources/Locale/en-US/shuttles/console.ftl
@@ -10,13 +10,9 @@ 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
new file mode 100644
index 00000000000..c8f07c1b2ff
--- /dev/null
+++ b/Resources/Locale/en-US/station-events/events/radiation-storm.ftl
@@ -0,0 +1,4 @@
+## RadiationStorm
+
+station-event-radiation-storm-start-announcement = High levels of radiation detected near the station. Evacuate any areas containing abnormal green energy fields.
+station-event-radiation-storm-end-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/spellbook-catalog.ftl b/Resources/Locale/en-US/store/spellbook-catalog.ftl
index 98d19817c67..1450cc86082 100644
--- a/Resources/Locale/en-US/store/spellbook-catalog.ftl
+++ b/Resources/Locale/en-US/store/spellbook-catalog.ftl
@@ -5,9 +5,6 @@ spellbook-fireball-desc = Get most crew exploding with rage when they see this f
spellbook-blink-name = Blink
spellbook-blink-desc = Don't blink or you'll miss yourself teleporting away.
-spellbook-voidapplause-name = Void Applause
-spellbook-voidapplause-desc = Swap places with the target, doesn't it make you want to do the boogie?
-
spellbook-force-wall-name = Force Wall
spellbook-force-wall-desc = Make three walls of pure force that you can pass through, but other's can't.
diff --git a/Resources/Locale/en-US/store/uplink-catalog.ftl b/Resources/Locale/en-US/store/uplink-catalog.ftl
index 16e2761e1d2..acba66d74bb 100644
--- a/Resources/Locale/en-US/store/uplink-catalog.ftl
+++ b/Resources/Locale/en-US/store/uplink-catalog.ftl
@@ -113,10 +113,7 @@ uplink-chest-rig-name = Chest Rig
uplink-chest-rig-desc = Explosion-resistant tactical webbing used for holding traitor goods.
uplink-emag-name = Emag
-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-emag-desc = The business card of the syndicate, this sequencer is able to break open airlocks and tamper with a variety of station devices. 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.
@@ -203,9 +200,6 @@ 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.
@@ -460,6 +454,3 @@ 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.)
diff --git a/Resources/Locale/en-US/thief/backpack.ftl b/Resources/Locale/en-US/thief/backpack.ftl
index 6d3baa2c0d8..6a69ab8bc6f 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, Access Breaker, Interdyne cigs, a Syndicate codeword,
+ Includes: An Emag, 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 0263c447a01..b5202356142 100644
--- a/Resources/Locale/en-US/tiles/tiles.ftl
+++ b/Resources/Locale/en-US/tiles/tiles.ftl
@@ -128,5 +128,4 @@ 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
diff --git a/Resources/Locale/en-US/traits/traits.ftl b/Resources/Locale/en-US/traits/traits.ftl
index f4e5736db5d..7f4dcfe2eca 100644
--- a/Resources/Locale/en-US/traits/traits.ftl
+++ b/Resources/Locale/en-US/traits/traits.ftl
@@ -59,6 +59,3 @@ trait-french-desc = Your accent seems to have a certain «je ne sais quoi».
trait-spanish-name = Spanish accent
trait-spanish-desc = Hola señor, donde esta la biblioteca.
-
-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/Maps/Dungeon/maints.yml b/Resources/Maps/Dungeon/maints.yml
deleted file mode 100644
index ae7ec858588..00000000000
--- a/Resources/Maps/Dungeon/maints.yml
+++ /dev/null
@@ -1,2402 +0,0 @@
-meta:
- format: 6
- postmapinit: false
-tilemap:
- 0: Space
- 2: FloorAsteroidSand
- 6: FloorAsteroidSandUnvariantized
- 5: FloorAsteroidTile
- 10: FloorAstroGrass
- 8: FloorBrokenWood
- 11: FloorRGlass
- 82: FloorShuttleOrange
- 1: FloorShuttlePurple
- 89: FloorSteel
- 9: FloorSteelDamaged
- 7: FloorWood
- 3: Plating
- 4: PlatingAsteroid
-entities:
-- proto: ""
- entities:
- - uid: 1
- components:
- - type: MetaData
- - type: Transform
- - type: Map
- mapPaused: True
- - type: PhysicsMap
- - type: GridTree
- - type: MovedGrids
- - type: Broadphase
- - type: OccluderTree
- - type: MapGrid
- chunks:
- -1,-1:
- ind: -1,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAA
- version: 6
- 0,0:
- ind: 0,0
- tiles: WQAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAWQAAAAACAQAAAAADAwAAAAAAWQAAAAADWQAAAAADAwAAAAAAAwAAAAAAAQAAAAADAwAAAAAAAwAAAAAAWQAAAAADWQAAAAABWQAAAAACCAAAAAAEBwAAAAABCAAAAAABBwAAAAADAQAAAAADAwAAAAAAWQAAAAACWQAAAAADWQAAAAABAwAAAAAAAQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAABCAAAAAABBwAAAAABBwAAAAACBwAAAAABAQAAAAADWQAAAAACWQAAAAACWQAAAAADAwAAAAAAAwAAAAAAAQAAAAAAWQAAAAABAwAAAAAAWQAAAAADAwAAAAAAAwAAAAAABwAAAAADBwAAAAAABwAAAAABCAAAAAAFAQAAAAADWQAAAAACWQAAAAACAwAAAAAAAwAAAAAAWQAAAAABAQAAAAAAWQAAAAABWQAAAAABAwAAAAAAAwAAAAAAWQAAAAAABwAAAAADCAAAAAABBwAAAAACCAAAAAAAAQAAAAADAwAAAAAAAwAAAAAAAwAAAAAAWQAAAAABWQAAAAACAQAAAAADAwAAAAAAAwAAAAAAAwAAAAAAWQAAAAACAQAAAAADAQAAAAACAQAAAAADAQAAAAACAQAAAAACAQAAAAACAQAAAAADAQAAAAADAQAAAAACAQAAAAABAQAAAAAAAQAAAAABAQAAAAABAQAAAAABAQAAAAADAQAAAAABWQAAAAABCgAAAAABAwAAAAAACQAAAAAACgAAAAADAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAACCgAAAAACCgAAAAADCgAAAAAAWQAAAAACAQAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAACCQAAAAACCgAAAAAAAwAAAAAACgAAAAADCgAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAACgAAAAACCgAAAAADCgAAAAACCgAAAAABWQAAAAACAQAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAAwAAAAAAWQAAAAACWQAAAAABAQAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAABAQAAAAADAQAAAAACAQAAAAAAAQAAAAABAQAAAAADAQAAAAACAQAAAAADAQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAADAQAAAAABAQAAAAAAAQAAAAABWQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAACAwAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAAwAAAAAAAQAAAAABAwAAAAAAAwAAAAAAWQAAAAABWQAAAAACAwAAAAAAAwAAAAAAWQAAAAAAWQAAAAACAwAAAAAAAQAAAAADWQAAAAABWQAAAAABWQAAAAABAwAAAAAAWQAAAAACAQAAAAACWQAAAAACAwAAAAAAAwAAAAAAWQAAAAACAwAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAWQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAWQAAAAAAAQAAAAACWQAAAAAAWQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAWQAAAAADAwAAAAAAWQAAAAAAAwAAAAAAAQAAAAADAwAAAAAAWQAAAAAAWQAAAAADWQAAAAADAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAA
- version: 6
- 0,1:
- ind: 0,1
- tiles: WQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAWQAAAAAAAQAAAAABWQAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAACWQAAAAACWQAAAAADAwAAAAAAWQAAAAACAQAAAAADAQAAAAABAQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAACAQAAAAABAQAAAAAAAQAAAAADAQAAAAADAQAAAAADAQAAAAABAQAAAAAAAQAAAAABAwAAAAAAAwAAAAAAWQAAAAABAwAAAAAAAwAAAAAAAQAAAAAAWQAAAAADWQAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAACWQAAAAABWQAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAWQAAAAABWQAAAAABAwAAAAAAAQAAAAAAWQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAWQAAAAADAQAAAAADAwAAAAAAWQAAAAAAWQAAAAABAwAAAAAAWQAAAAADAwAAAAAAWQAAAAADAwAAAAAAAwAAAAAAAQAAAAACAwAAAAAAAwAAAAAAWQAAAAADWQAAAAADAwAAAAAAAQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAWQAAAAAAWQAAAAABAQAAAAADAwAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAWQAAAAADAQAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAWQAAAAACAwAAAAAAAwAAAAAAWQAAAAABAwAAAAAAAQAAAAACWQAAAAABAwAAAAAAWQAAAAACWQAAAAABAwAAAAAAAQAAAAABAwAAAAAAAwAAAAAAAwAAAAAAWQAAAAABAQAAAAADAQAAAAAAAQAAAAABAQAAAAAAAQAAAAACAQAAAAAAAQAAAAAAAQAAAAACAQAAAAADAQAAAAACAQAAAAAAAQAAAAABAQAAAAAAAQAAAAABAQAAAAACAQAAAAADAwAAAAAAAwAAAAAAAwAAAAAAWQAAAAADAwAAAAAAAQAAAAACAwAAAAAAAwAAAAAAWQAAAAADAwAAAAAAAwAAAAAAAQAAAAADWQAAAAABAwAAAAAAWQAAAAADAwAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAADAQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAADAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAWQAAAAACAwAAAAAAWQAAAAABWQAAAAACWQAAAAAAAwAAAAAAAwAAAAAAAQAAAAADAwAAAAAAWQAAAAACCwAAAAADWQAAAAABAwAAAAAAAQAAAAABWQAAAAADWQAAAAADWQAAAAACAwAAAAAAAwAAAAAAAwAAAAAAWQAAAAABWQAAAAAAAwAAAAAAAQAAAAAAWQAAAAACWQAAAAAAWQAAAAABAwAAAAAAAwAAAAAAAQAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAWQAAAAACAwAAAAAAAwAAAAAAWQAAAAABAQAAAAADAwAAAAAAAwAAAAAAAwAAAAAAWQAAAAAAWQAAAAACAQAAAAABAwAAAAAAWQAAAAACAwAAAAAAAwAAAAAAAQAAAAADAQAAAAACAQAAAAABAQAAAAAAAQAAAAACAQAAAAADAQAAAAAAAQAAAAABAQAAAAABAQAAAAAAAQAAAAAAAQAAAAACAQAAAAADAQAAAAACAQAAAAAAAQAAAAACAQAAAAAAAQAAAAADAQAAAAACAQAAAAAAAQAAAAACAQAAAAADAQAAAAADAQAAAAADAQAAAAABAQAAAAACAQAAAAAAAQAAAAAAAQAAAAACAQAAAAAAAQAAAAABAQAAAAABAQAAAAADAQAAAAABAQAAAAAAAQAAAAABAQAAAAABAQAAAAABAQAAAAADAQAAAAABAQAAAAABAQAAAAAAAQAAAAADAQAAAAAAAQAAAAACAQAAAAABAQAAAAADAQAAAAAC
- version: 6
- 0,-1:
- ind: 0,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAABAQAAAAAAAQAAAAACAQAAAAAAAQAAAAADAQAAAAABAQAAAAACAQAAAAACAQAAAAACAQAAAAABAQAAAAABAQAAAAADAQAAAAACAQAAAAACAQAAAAAD
- version: 6
- -1,0:
- ind: -1,0
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAA
- version: 6
- -1,1:
- ind: -1,1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAD
- version: 6
- 1,-1:
- ind: 1,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAABAQAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- version: 6
- 1,0:
- ind: 1,0
- tiles: AwAAAAAAAQAAAAABAwAAAAAAWQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADAQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAACAwAAAAAAWQAAAAADAwAAAAAAWQAAAAABWQAAAAADAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAWQAAAAADAwAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACAQAAAAAAWQAAAAACWQAAAAAAAwAAAAAAWQAAAAACAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAADAQAAAAAAAQAAAAAAAQAAAAABAQAAAAADAQAAAAADAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAQAAAAADAwAAAAAAWQAAAAACWQAAAAADAwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAQAAAAACAwAAAAAAAwAAAAAAWQAAAAABAwAAAAAAAwAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAADAwAAAAAAWQAAAAABWQAAAAACAwAAAAAAWQAAAAABAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADAQAAAAACAwAAAAAAWQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACAQAAAAACWQAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAADAQAAAAACAQAAAAABAQAAAAAAAQAAAAABAQAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAABWQAAAAABAwAAAAAAWQAAAAACAwAAAAAAAwAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAADAwAAAAAAWQAAAAACAwAAAAAAWQAAAAAAWQAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAWQAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAQAAAAABWQAAAAAAWQAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- version: 6
- 1,1:
- ind: 1,1
- tiles: WQAAAAABAQAAAAABAwAAAAAAWQAAAAADWQAAAAABWQAAAAADAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAAAAQAAAAADAQAAAAACAQAAAAACAQAAAAABAQAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACAQAAAAACWQAAAAAAAwAAAAAAAwAAAAAAWQAAAAACAwAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACAQAAAAABWQAAAAABAwAAAAAAWQAAAAAAWQAAAAACAwAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAQAAAAACAwAAAAAAWQAAAAAAWQAAAAACWQAAAAADAwAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAACAwAAAAAAAwAAAAAAWQAAAAADAwAAAAAAWQAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAABAwAAAAAAWQAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAACAQAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAABAwAAAAAAWQAAAAADAwAAAAAAWQAAAAACWQAAAAADAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAQAAAAABWQAAAAABAwAAAAAAWQAAAAACWQAAAAADWQAAAAABAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAWQAAAAABWQAAAAABWQAAAAACAwAAAAAAAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAABWQAAAAAAAwAAAAAAWQAAAAACAwAAAAAAWQAAAAABAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACAQAAAAAAWQAAAAAAAwAAAAAAAwAAAAAAWQAAAAABAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAADAQAAAAAAAQAAAAABAQAAAAACAQAAAAAAAQAAAAADAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAADAQAAAAABAQAAAAADAQAAAAADAQAAAAABAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAABAQAAAAAAAQAAAAACAQAAAAAAAQAAAAADAQAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- version: 6
- -1,2:
- ind: -1,2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- version: 6
- 0,2:
- ind: 0,2
- tiles: AQAAAAABAQAAAAAAAQAAAAADAQAAAAABAQAAAAAAAQAAAAAAAQAAAAACAQAAAAACAQAAAAACAQAAAAACAQAAAAAAAQAAAAACAQAAAAABAQAAAAABAQAAAAACAQAAAAADAQAAAAACAQAAAAAAAQAAAAADAQAAAAABAQAAAAADAQAAAAABAQAAAAABAQAAAAACAQAAAAACAQAAAAADAQAAAAACAQAAAAAAAQAAAAABAQAAAAACAQAAAAACAQAAAAADAQAAAAADAQAAAAACAQAAAAABAQAAAAACAQAAAAACAQAAAAADAQAAAAACAQAAAAAAAQAAAAAAAQAAAAADAQAAAAACAQAAAAABAQAAAAACAQAAAAAAAQAAAAABAQAAAAADAQAAAAAAAQAAAAACAQAAAAADAQAAAAADAQAAAAADAQAAAAABAQAAAAACAQAAAAACAQAAAAACAQAAAAADAQAAAAAAAQAAAAADAQAAAAABAQAAAAACAQAAAAACAQAAAAAAAQAAAAADAQAAAAADAQAAAAADAQAAAAABAQAAAAABAQAAAAAAAQAAAAACAQAAAAAAAQAAAAADAQAAAAACAQAAAAAAAQAAAAACAQAAAAAAAQAAAAAAAQAAAAABAQAAAAADAQAAAAABAQAAAAABAQAAAAAAAQAAAAADAQAAAAABAQAAAAADAQAAAAABAQAAAAABAQAAAAABAQAAAAACAQAAAAAAAQAAAAAAAQAAAAACAQAAAAADAQAAAAADAQAAAAABAQAAAAACAQAAAAACAQAAAAACAQAAAAABAQAAAAAAAQAAAAADAQAAAAADAQAAAAABAQAAAAAAAQAAAAADAQAAAAABAQAAAAADAQAAAAAAAQAAAAACAQAAAAAAAQAAAAAAAQAAAAABAQAAAAACAQAAAAADAQAAAAACAQAAAAAAAQAAAAADAQAAAAADAQAAAAACAQAAAAADAQAAAAAAAQAAAAABAQAAAAAAAQAAAAAAAQAAAAADAQAAAAADAQAAAAABAQAAAAAAAQAAAAADAQAAAAABAQAAAAAAAQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAADAQAAAAABAQAAAAACAQAAAAAAAQAAAAABAQAAAAACAQAAAAADAQAAAAABAQAAAAADAQAAAAACAQAAAAABAQAAAAADAQAAAAABAQAAAAADAQAAAAABAQAAAAACAQAAAAAAAQAAAAABAQAAAAADAQAAAAAAAQAAAAABAQAAAAAAAQAAAAACAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- version: 6
- 1,2:
- ind: 1,2
- tiles: AQAAAAACAQAAAAACAQAAAAACAQAAAAAAAQAAAAADAQAAAAABAQAAAAADAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAADAQAAAAABAQAAAAACAQAAAAAAAQAAAAABAQAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAACAQAAAAAAAQAAAAABAQAAAAACAQAAAAACAQAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAABAQAAAAABAQAAAAACAQAAAAAAAQAAAAAAAQAAAAACAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAAAAQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAADAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAAAAQAAAAADAQAAAAADAQAAAAACAQAAAAAAAQAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAABAQAAAAABAQAAAAADAQAAAAADAQAAAAAAAQAAAAACAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAADAQAAAAABAQAAAAABAQAAAAAAAQAAAAADAQAAAAABAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAACAQAAAAAAAQAAAAADAQAAAAADAQAAAAABAQAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAADAQAAAAAAAQAAAAADAQAAAAADAQAAAAAAAQAAAAABAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- version: 6
- - type: Gravity
- gravityShakeSound: !type:SoundPathSpecifier
- path: /Audio/Effects/alert.ogg
- - type: DecalGrid
- chunkCollection:
- version: 2
- nodes:
- - node:
- cleanable: True
- color: '#00D4D4FF'
- id: Blasto
- decals:
- 447: 15.750851,6.288084
- - node:
- color: '#FFFFFFFF'
- id: Bot
- decals:
- 219: 1,15
- 221: 15,9
- 222: 14,9
- 223: 13,9
- 806: 3,21
- 807: 1,26
- 808: 19,20
- 809: 7,3
- - node:
- color: '#FFFFFFFF'
- id: Bushf1
- decals:
- 66: 0.9926146,6.054738
- 71: 2.9403546,6.9957204
- 75: 1.1116524,7.4451113
- - node:
- color: '#FFFFFFFF'
- id: Bushf2
- decals:
- 67: -0.025895834,9.01513
- 74: 3.3199868,7.922289
- - node:
- color: '#FFFFFFFF'
- id: Bushf3
- decals:
- 68: 3.011142,9.186537
- 77: 1.743463,9.159254
- - node:
- cleanable: True
- color: '#FF5F00FF'
- id: Clandestine
- decals:
- 564: 6,13
- - node:
- cleanable: True
- color: '#FFFFFF6D'
- id: Dirt
- decals:
- 38: 2,1
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: Dirt
- decals:
- 26: 3,8
- 28: 1,6
- 153: 19,7
- 154: 18,9
- 155: 21,10
- 156: 21,6
- 183: 9,6
- 184: 6,8
- 185: 8,10
- 186: 10,9
- 188: 7,8
- 214: 0,13
- 215: 2,12
- 216: 2,15
- 217: 4,15
- 218: 2,16
- 267: 10,0
- 268: 7,2
- 269: 6,0
- 271: 13,6
- 272: 16,8
- 303: 18,13
- 339: 22,4
- 341: 18,3
- 348: 13,0
- 349: 15,2
- 350: 13,3
- 351: 12,4
- 379: 20,2
- 380: 16,12
- 381: 14,15
- 385: 10,16
- 469: 15,14
- 569: 9,7
- 573: 8,13
- 574: 6,14
- 602: 18,21
- 603: 21,22
- 604: 22,19
- 605: 19,18
- 606: 20,20
- 649: 14,18
- 650: 12,20
- 651: 16,22
- 652: 8,20
- 653: 10,22
- 654: 9,18
- 655: 6,20
- 656: 7,24
- 657: 10,26
- 658: 7,28
- 659: 4,25
- 660: 2,24
- 661: 2,26
- 662: 3,27
- 663: 0,27
- 664: 3,21
- 665: 0,21
- 666: 3,19
- 667: 2,18
- 668: 16,24
- 669: 15,25
- 670: 13,25
- 672: 16,28
- 673: 21,25
- 674: 20,26
- 675: 18,28
- 676: 22,27
- 677: 19,24
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: DirtHeavy
- decals:
- 95: 3,0
- 127: 18,6
- 128: 18,7
- 129: 19,7
- 131: 18,8
- 159: 7,9
- 169: 7,7
- 170: 8,8
- 171: 9,9
- 172: 10,10
- 173: 9,10
- 174: 8,10
- 175: 10,9
- 176: 10,8
- 177: 10,6
- 178: 8,6
- 179: 7,6
- 180: 6,6
- 181: 6,7
- 182: 6,8
- 191: 1,13
- 192: 0,13
- 193: 0,14
- 194: 1,14
- 195: 2,14
- 196: 2,13
- 197: 2,12
- 198: 3,12
- 199: 3,13
- 200: 4,12
- 201: 4,13
- 202: 4,14
- 203: 3,14
- 205: 4,15
- 208: 2,15
- 209: 2,16
- 210: 1,16
- 211: 1,15
- 212: 0,15
- 225: 7,1
- 226: 6,1
- 229: 8,1
- 252: 12,0
- 253: 13,0
- 256: 13,3
- 258: 13,2
- 274: 12,6
- 277: 16,6
- 278: 15,6
- 279: 15,9
- 281: 12,9
- 296: 13,1
- 297: 22,12
- 298: 21,14
- 299: 19,13
- 301: 19,15
- 305: 18,13
- 309: 22,16
- 311: 22,15
- 313: 19,12
- 317: 20,0
- 318: 19,1
- 319: 19,2
- 322: 22,4
- 345: 14,4
- 355: 14,15
- 356: 13,15
- 359: 9,12
- 362: 8,16
- 366: 8,12
- 386: 10,16
- 459: 12,12
- 461: 14,16
- 462: 12,15
- 464: 15,13
- 465: 14,13
- 466: 15,15
- 467: 14,14
- 468: 15,14
- 470: 0,0
- 471: 0,2
- 472: 0,4
- 473: 4,0
- 474: 2,0
- 475: 0,1
- 483: 14,0
- 484: 15,0
- 485: 16,1
- 486: 16,3
- 487: 15,4
- 488: 12,1
- 489: 12,3
- 490: 22,1
- 491: 22,2
- 492: 21,4
- 493: 19,4
- 494: 19,0
- 495: 20,6
- 496: 18,10
- 497: 22,8
- 498: 16,7
- 499: 14,7
- 500: 12,10
- 501: 14,10
- 502: 15,10
- 503: 20,12
- 504: 18,12
- 505: 21,16
- 506: 22,13
- 510: 16,16
- 511: 15,16
- 512: 10,13
- 513: 7,15
- 514: 6,13
- 524: 8,13
- 525: 7,13
- 526: 12,16
- 527: 12,14
- 528: 12,13
- 529: 15,12
- 530: 14,12
- 531: 16,14
- 532: 16,15
- 533: 18,15
- 534: 20,16
- 535: 19,16
- 536: 18,4
- 537: 16,4
- 544: 10,3
- 545: 8,0
- 567: 9,7
- 568: 8,7
- 570: 21,2
- 571: 21,1
- 572: 6,15
- 575: 18,14
- 576: 18,16
- 577: 21,18
- 578: 22,18
- 579: 22,19
- 581: 19,20
- 582: 20,21
- 583: 22,21
- 584: 21,21
- 585: 20,19
- 586: 21,20
- 587: 22,20
- 588: 20,18
- 590: 18,18
- 591: 18,19
- 592: 18,20
- 593: 19,22
- 594: 18,22
- 595: 22,22
- 596: 20,22
- 629: 13,18
- 630: 12,18
- 631: 12,19
- 632: 16,20
- 633: 16,19
- 634: 13,20
- 635: 12,22
- 636: 13,22
- 637: 15,22
- 638: 15,18
- 648: 14,21
- 678: 13,24
- 679: 14,25
- 680: 13,25
- 683: 16,28
- 684: 16,26
- 685: 16,24
- 702: 20,25
- 703: 19,27
- 706: 21,24
- 707: 22,25
- 708: 18,27
- 709: 21,28
- 710: 18,24
- 711: 21,26
- 725: 6,16
- 726: 4,16
- 727: 0,16
- 728: 7,22
- 729: 10,24
- 730: 9,25
- 731: 7,26
- 732: 9,28
- 733: 6,27
- 734: 6,26
- 735: 7,24
- 736: 10,26
- 737: 10,27
- 738: 7,28
- 754: 20,26
- 755: 4,24
- 756: 2,25
- 757: 3,27
- 759: 0,25
- 760: 0,24
- 785: 2,20
- 786: 3,20
- 787: 2,19
- 788: 3,21
- 789: 3,19
- 805: 3,15
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: DirtHeavyMonotile
- decals:
- 753: 8,26
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: DirtLight
- decals:
- 17: 4,7
- 18: 4,7
- 19: 4,7
- 22: 0,8
- 23: 3,6
- 24: 2,10
- 25: 2,10
- 94: 1,0
- 143: 19,10
- 144: 20,9
- 145: 21,8
- 146: 22,7
- 148: 21,9
- 149: 22,10
- 151: 22,9
- 152: 21,10
- 168: 6,10
- 231: 8,4
- 232: 9,3
- 233: 10,2
- 241: 7,3
- 243: 7,2
- 244: 8,2
- 245: 9,1
- 246: 9,0
- 247: 6,0
- 248: 3,16
- 291: 16,8
- 293: 13,6
- 294: 14,2
- 295: 14,1
- 332: 18,0
- 333: 21,0
- 334: 18,2
- 335: 18,3
- 336: 20,3
- 337: 20,4
- 387: 9,16
- 388: 6,12
- 518: 7,13
- 519: 6,14
- 520: 8,15
- 521: 9,15
- 522: 10,14
- 550: 1,10
- 551: 3,10
- 552: 4,10
- 553: 4,9
- 554: 12,7
- 555: 16,10
- 556: 13,10
- 557: 19,6
- 558: 20,10
- 559: 21,3
- 562: 22,14
- 565: 2,6
- 566: 8,14
- 622: 6,21
- 623: 6,22
- 624: 8,22
- 625: 9,20
- 626: 9,21
- 627: 10,21
- 628: 10,18
- 646: 12,21
- 647: 16,21
- 697: 12,24
- 698: 12,26
- 699: 12,28
- 700: 14,28
- 701: 14,26
- 719: 18,25
- 720: 19,28
- 721: 20,28
- 722: 21,27
- 723: 20,24
- 749: 9,24
- 750: 10,25
- 751: 8,25
- 752: 8,27
- 774: 0,26
- 775: 2,26
- 776: 3,25
- 777: 0,28
- 778: 2,28
- 779: 4,28
- 801: 0,18
- 802: 4,18
- 803: 4,21
- 804: 0,22
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: DirtMedium
- decals:
- 134: 18,9
- 135: 19,8
- 136: 20,7
- 137: 21,6
- 138: 22,6
- 139: 21,7
- 140: 20,8
- 141: 19,9
- 161: 9,8
- 162: 9,6
- 163: 10,7
- 164: 7,8
- 165: 8,9
- 166: 7,10
- 167: 6,9
- 236: 6,4
- 237: 7,4
- 239: 10,0
- 240: 10,1
- 260: 16,0
- 263: 12,4
- 264: 13,4
- 266: 16,2
- 283: 12,8
- 285: 14,6
- 287: 16,9
- 327: 22,3
- 331: 22,0
- 338: 19,3
- 346: 14,3
- 347: 15,3
- 367: 7,12
- 369: 10,15
- 371: 7,16
- 374: 10,12
- 376: 13,16
- 378: 16,13
- 517: 0,12
- 538: 12,2
- 539: 6,2
- 540: 6,3
- 541: 10,4
- 542: 9,4
- 546: 7,0
- 547: 0,6
- 548: 0,7
- 549: 0,10
- 597: 18,21
- 598: 19,21
- 599: 21,22
- 600: 20,20
- 601: 19,18
- 608: 9,18
- 609: 6,19
- 610: 9,22
- 611: 10,20
- 612: 8,20
- 613: 7,18
- 614: 6,18
- 615: 10,19
- 616: 6,20
- 618: 8,18
- 619: 10,22
- 620: 9,19
- 621: 8,21
- 639: 15,19
- 640: 14,19
- 641: 14,18
- 642: 12,20
- 643: 16,22
- 644: 14,22
- 645: 16,18
- 686: 14,24
- 687: 12,25
- 688: 13,26
- 689: 12,27
- 690: 13,28
- 691: 15,28
- 692: 16,27
- 693: 16,25
- 694: 15,24
- 695: 15,25
- 696: 15,26
- 704: 19,26
- 705: 21,25
- 712: 18,26
- 713: 20,27
- 714: 22,24
- 715: 18,28
- 716: 22,26
- 717: 22,28
- 718: 22,27
- 739: 6,24
- 740: 7,25
- 741: 7,27
- 742: 6,28
- 743: 8,28
- 744: 9,27
- 745: 10,28
- 746: 6,25
- 747: 8,24
- 748: 9,26
- 761: 1,24
- 762: 1,25
- 763: 3,24
- 764: 4,25
- 765: 4,26
- 766: 2,24
- 767: 0,27
- 768: 1,26
- 769: 1,28
- 770: 2,27
- 771: 3,26
- 772: 4,27
- 773: 3,28
- 790: 3,18
- 791: 1,18
- 792: 0,19
- 793: 0,21
- 794: 2,22
- 795: 1,22
- 796: 3,22
- 797: 4,20
- 798: 4,19
- 799: 0,20
- 800: 4,22
- - node:
- color: '#FFFFFFFF'
- id: Flowersbr1
- decals:
- 80: 1.0463814,8.287419
- - node:
- color: '#FFFFFFFF'
- id: Flowerspv3
- decals:
- 81: 2.0432951,6.945241
- - node:
- color: '#FFFFFFFF'
- id: Flowersy3
- decals:
- 79: 0.92909765,9.108977
- - node:
- color: '#FFFFFFFF'
- id: Flowersy4
- decals:
- 78: 4.043461,6.0179305
- - node:
- cleanable: True
- color: '#9ABB00FF'
- id: Gib
- decals:
- 449: 19.008198,0.9538171
- - node:
- color: '#FFFFFFFF'
- id: Grassd2
- decals:
- 82: 2.49391,8.717236
- 83: 4.099624,7.9493446
- 84: 0.97462475,7.0111895
- 85: 3.2385101,8.651217
- - node:
- cleanable: True
- color: '#D439DBFF'
- id: Max
- decals:
- 450: 13.987783,1.9440596
- - node:
- cleanable: True
- color: '#6129B0FF'
- id: Prima
- decals:
- 452: 8.033474,8.849318
- - node:
- cleanable: True
- color: '#D48335FF'
- id: Psyke
- decals:
- 451: 13,16
- - node:
- color: '#FFFFFFFF'
- id: WoodTrimThinCornerNe
- decals:
- 106: 4,4
- - node:
- color: '#FFFFFFFF'
- id: WoodTrimThinCornerNw
- decals:
- 107: 1,4
- - node:
- color: '#FFFFFFFF'
- id: WoodTrimThinCornerSe
- decals:
- 108: 4,1
- - node:
- color: '#FFFFFFFF'
- id: WoodTrimThinCornerSw
- decals:
- 99: 1,1
- - node:
- color: '#FFFFFFFF'
- id: WoodTrimThinLineE
- decals:
- 109: 4,2
- 110: 4,3
- - node:
- color: '#FFFFFFFF'
- id: WoodTrimThinLineN
- decals:
- 111: 2,4
- 112: 3,4
- - node:
- color: '#FFFFFFFF'
- id: WoodTrimThinLineS
- decals:
- 103: 2,1
- 104: 3,1
- - node:
- color: '#FFFFFFFF'
- id: WoodTrimThinLineW
- decals:
- 100: 1,2
- 101: 1,3
- - node:
- cleanable: True
- color: '#FF5F6CFF'
- id: amyjon
- decals:
- 563: 22,13
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: body
- decals:
- 157: 19,9
- - node:
- cleanable: True
- color: '#9D1500FF'
- id: engie
- decals:
- 448: 7.010515,0.8736541
- - node:
- cleanable: True
- color: '#4D00A1FF'
- id: matt
- decals:
- 86: 4.0649,9.103307
- - node:
- cleanable: True
- color: '#348800FF'
- id: prolizard
- decals:
- 453: 7.1689034,7.1397905
- - node:
- cleanable: True
- color: '#503E005B'
- id: splatter
- decals:
- 810: 2.0135477,19.99514
- - type: LoadedMap
- - type: SpreaderGrid
- - type: GridPathfinding
- - type: RadiationGridResistance
-- proto: AirCanister
- entities:
- - uid: 146
- components:
- - type: Transform
- pos: 15.5,15.5
- parent: 1
-- proto: AltarConvertMaint
- entities:
- - uid: 3
- components:
- - type: Transform
- pos: 2.5,14.5
- parent: 1
-- proto: Barricade
- entities:
- - uid: 122
- components:
- - type: Transform
- pos: 22.5,15.5
- parent: 1
- - uid: 217
- components:
- - type: Transform
- pos: 16.5,8.5
- parent: 1
- - uid: 219
- components:
- - type: Transform
- pos: 8.5,18.5
- parent: 1
- - uid: 223
- components:
- - type: Transform
- pos: 7.5,22.5
- parent: 1
-- proto: Catwalk
- entities:
- - uid: 64
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,6.5
- parent: 1
- - uid: 65
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,7.5
- parent: 1
- - uid: 66
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,8.5
- parent: 1
- - uid: 67
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,9.5
- parent: 1
- - uid: 68
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,10.5
- parent: 1
- - uid: 69
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,10.5
- parent: 1
- - uid: 70
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,10.5
- parent: 1
- - uid: 71
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,10.5
- parent: 1
- - uid: 72
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,10.5
- parent: 1
- - uid: 73
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,9.5
- parent: 1
- - uid: 74
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,8.5
- parent: 1
- - uid: 75
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,7.5
- parent: 1
- - uid: 76
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,6.5
- parent: 1
- - uid: 77
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,6.5
- parent: 1
- - uid: 78
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,6.5
- parent: 1
- - uid: 79
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,6.5
- parent: 1
- - uid: 163
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,12.5
- parent: 1
- - uid: 164
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,12.5
- parent: 1
- - uid: 166
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,12.5
- parent: 1
- - uid: 167
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,13.5
- parent: 1
- - uid: 168
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,14.5
- parent: 1
- - uid: 169
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,16.5
- parent: 1
- - uid: 171
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,16.5
- parent: 1
- - uid: 172
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,14.5
- parent: 1
- - uid: 173
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,13.5
- parent: 1
-- proto: Chair
- entities:
- - uid: 5
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 19.5,8.5
- parent: 1
- - uid: 6
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,2.5
- parent: 1
- - uid: 7
- components:
- - type: Transform
- pos: 13.5,7.5
- parent: 1
- - uid: 45
- components:
- - type: Transform
- pos: 15.5,7.5
- parent: 1
- - uid: 49
- components:
- - type: Transform
- pos: 14.5,7.5
- parent: 1
- - uid: 115
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,8.5
- parent: 1
- - uid: 127
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,13.5
- parent: 1
- - uid: 153
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,2.5
- parent: 1
- - uid: 154
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,1.5
- parent: 1
- - uid: 175
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 13.5,14.5
- parent: 1
-- proto: ChairFolding
- entities:
- - uid: 82
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,8.5
- parent: 1
- - uid: 83
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,6.5
- parent: 1
- - uid: 84
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,9.5
- parent: 1
- - uid: 94
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.59151,2.6490026
- parent: 1
-- proto: ChairFoldingSpawnFolded
- entities:
- - uid: 85
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,7.5
- parent: 1
-- proto: ChairOfficeDark
- entities:
- - uid: 10
- components:
- - type: Transform
- pos: 14.5,3.5
- parent: 1
- - uid: 53
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,1.5
- parent: 1
- - uid: 247
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,26.5
- parent: 1
-- proto: ChairOfficeLight
- entities:
- - uid: 201
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 20.5,20.5
- parent: 1
- - uid: 208
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,20.5
- parent: 1
-- proto: ChairWood
- entities:
- - uid: 2
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,3.5
- parent: 1
- - uid: 16
- components:
- - type: Transform
- pos: 2.5,15.5
- parent: 1
- - uid: 30
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,1.5
- parent: 1
- - uid: 31
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,3.5
- parent: 1
-- proto: ClosetEmergencyFilledRandom
- entities:
- - uid: 47
- components:
- - type: Transform
- pos: 13.5,9.5
- parent: 1
-- proto: ClosetEmergencyN2FilledRandom
- entities:
- - uid: 11
- components:
- - type: Transform
- pos: 14.5,9.5
- parent: 1
-- proto: ClosetMaintenanceFilledRandom
- entities:
- - uid: 17
- components:
- - type: Transform
- pos: 3.5,21.5
- parent: 1
- - uid: 20
- components:
- - type: Transform
- pos: 10.5,25.5
- parent: 1
- - uid: 56
- components:
- - type: Transform
- pos: 15.5,9.5
- parent: 1
- - uid: 158
- components:
- - type: Transform
- pos: 7.5,3.5
- parent: 1
- - uid: 161
- components:
- - type: Transform
- pos: 1.5,15.5
- parent: 1
- - uid: 203
- components:
- - type: Transform
- pos: 19.5,20.5
- parent: 1
-- proto: ComputerBroken
- entities:
- - uid: 48
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,1.5
- parent: 1
- - uid: 207
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,20.5
- parent: 1
- - uid: 245
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,25.5
- parent: 1
-- proto: ComputerFrame
- entities:
- - uid: 51
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,3.5
- parent: 1
- - uid: 246
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,26.5
- parent: 1
-- proto: CrateHydroponicsSeeds
- entities:
- - uid: 23
- components:
- - type: Transform
- pos: 4.5,10.5
- parent: 1
-- proto: DisposalBend
- entities:
- - uid: 258
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,20.5
- parent: 1
- - uid: 263
- components:
- - type: Transform
- pos: 3.5,22.5
- parent: 1
-- proto: DisposalPipe
- entities:
- - uid: 260
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,22.5
- parent: 1
- - uid: 261
- components:
- - type: Transform
- pos: 3.5,21.5
- parent: 1
-- proto: DisposalPipeBroken
- entities:
- - uid: 262
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,22.5
- parent: 1
-- proto: DisposalTrunk
- entities:
- - uid: 259
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,20.5
- parent: 1
-- proto: FolderSpawner
- entities:
- - uid: 38
- components:
- - type: Transform
- pos: 14.5,19.5
- parent: 1
-- proto: GasMixerFlipped
- entities:
- - uid: 177
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,14.5
- parent: 1
-- proto: GasPipeBend
- entities:
- - uid: 141
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,15.5
- parent: 1
- - uid: 178
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 13.5,14.5
- parent: 1
- - uid: 183
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,13.5
- parent: 1
-- proto: GasPipeStraight
- entities:
- - uid: 151
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,15.5
- parent: 1
-- proto: GasPort
- entities:
- - uid: 145
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,13.5
- parent: 1
- - uid: 148
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,15.5
- parent: 1
- - uid: 176
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,14.5
- parent: 1
-- proto: Girder
- entities:
- - uid: 50
- components:
- - type: Transform
- pos: 15.5,8.5
- parent: 1
- - uid: 215
- components:
- - type: Transform
- pos: 14.5,21.5
- parent: 1
- - uid: 271
- components:
- - type: Transform
- pos: 15.5,27.5
- parent: 1
-- proto: Grille
- entities:
- - uid: 98
- components:
- - type: Transform
- pos: 14.5,8.5
- parent: 1
- - uid: 99
- components:
- - type: Transform
- pos: 13.5,8.5
- parent: 1
-- proto: GrilleSpawner
- entities:
- - uid: 44
- components:
- - type: Transform
- pos: 8.5,14.5
- parent: 1
- - uid: 46
- components:
- - type: Transform
- pos: 2.5,6.5
- parent: 1
- - uid: 86
- components:
- - type: Transform
- pos: 2.5,10.5
- parent: 1
- - uid: 87
- components:
- - type: Transform
- pos: 12.5,8.5
- parent: 1
- - uid: 228
- components:
- - type: Transform
- pos: 9.5,19.5
- parent: 1
-- proto: hydroponicsSoil
- entities:
- - uid: 4
- components:
- - type: Transform
- pos: 1.5,7.5
- parent: 1
- - uid: 14
- components:
- - type: Transform
- pos: 3.5,9.5
- parent: 1
-- proto: HydroponicsTrayEmpty
- entities:
- - uid: 18
- components:
- - type: Transform
- pos: 2.5,9.5
- parent: 1
-- proto: KitchenMicrowave
- entities:
- - uid: 236
- components:
- - type: Transform
- pos: 21.5,25.5
- parent: 1
-- proto: KitchenReagentGrinder
- entities:
- - uid: 197
- components:
- - type: Transform
- pos: 20.5,19.5
- parent: 1
-- proto: LockerElectricalSupplies
- entities:
- - uid: 180
- components:
- - type: Transform
- pos: 9.5,15.5
- parent: 1
-- proto: LootSpawnerCableCoil
- entities:
- - uid: 184
- components:
- - type: Transform
- pos: 8.5,13.5
- parent: 1
- - uid: 212
- components:
- - type: Transform
- pos: 13.5,19.5
- parent: 1
-- proto: LootSpawnerIndustrial
- entities:
- - uid: 32
- components:
- - type: Transform
- pos: 12.5,14.5
- parent: 1
- - uid: 152
- components:
- - type: Transform
- pos: 7.5,15.5
- parent: 1
- - uid: 226
- components:
- - type: Transform
- pos: 8.5,20.5
- parent: 1
-- proto: LootSpawnerIndustrialFluff
- entities:
- - uid: 109
- components:
- - type: Transform
- pos: 1.5,14.5
- parent: 1
- - uid: 117
- components:
- - type: Transform
- pos: 15.5,12.5
- parent: 1
- - uid: 242
- components:
- - type: Transform
- pos: 7.5,25.5
- parent: 1
-- proto: LootSpawnerMaterials
- entities:
- - uid: 227
- components:
- - type: Transform
- pos: 8.5,21.5
- parent: 1
-- proto: LootSpawnerMedicalMinor
- entities:
- - uid: 24
- components:
- - type: Transform
- pos: 20.5,1.5
- parent: 1
- - uid: 42
- components:
- - type: Transform
- pos: 20.5,2.5
- parent: 1
- - uid: 196
- components:
- - type: Transform
- pos: 21.5,21.5
- parent: 1
- - uid: 266
- components:
- - type: Transform
- pos: 3.5,26.5
- parent: 1
- - uid: 267
- components:
- - type: Transform
- pos: 1.5,24.5
- parent: 1
-- proto: MachineFrame
- entities:
- - uid: 272
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,25.5
- parent: 1
-- proto: MaintenanceFluffSpawner
- entities:
- - uid: 36
- components:
- - type: Transform
- pos: 16.5,7.5
- parent: 1
- - uid: 97
- components:
- - type: Transform
- pos: 2.5,3.5
- parent: 1
- - uid: 111
- components:
- - type: Transform
- pos: 21.5,1.5
- parent: 1
- - uid: 125
- components:
- - type: Transform
- pos: 3.5,25.5
- parent: 1
- - uid: 134
- components:
- - type: Transform
- pos: 19.5,15.5
- parent: 1
- - uid: 159
- components:
- - type: Transform
- pos: 13.5,2.5
- parent: 1
-- proto: MaintenancePlantSpawner
- entities:
- - uid: 41
- components:
- - type: Transform
- pos: 9.5,0.5
- parent: 1
- - uid: 93
- components:
- - type: Transform
- pos: 18.5,1.5
- parent: 1
- - uid: 102
- components:
- - type: Transform
- pos: 3.5,0.5
- parent: 1
- - uid: 129
- components:
- - type: Transform
- pos: 19.5,16.5
- parent: 1
- - uid: 185
- components:
- - type: Transform
- pos: 13.5,12.5
- parent: 1
- - uid: 206
- components:
- - type: Transform
- pos: 18.5,21.5
- parent: 1
- - uid: 248
- components:
- - type: Transform
- pos: 9.5,27.5
- parent: 1
-- proto: MaintenanceToolSpawner
- entities:
- - uid: 104
- components:
- - type: Transform
- pos: 15.5,2.5
- parent: 1
- - uid: 130
- components:
- - type: Transform
- pos: 21.5,14.5
- parent: 1
-- proto: MaintenanceWeaponSpawner
- entities:
- - uid: 103
- components:
- - type: Transform
- pos: 9.5,7.5
- parent: 1
- - uid: 114
- components:
- - type: Transform
- pos: 20.5,8.5
- parent: 1
- - uid: 128
- components:
- - type: Transform
- pos: 21.5,13.5
- parent: 1
-- proto: Mattress
- entities:
- - uid: 95
- components:
- - type: Transform
- pos: 22.5,4.5
- parent: 1
-- proto: OperatingTable
- entities:
- - uid: 21
- components:
- - type: Transform
- pos: 1.5,26.5
- parent: 1
-- proto: PortableGeneratorJrPacman
- entities:
- - uid: 143
- components:
- - type: Transform
- pos: 7.5,13.5
- parent: 1
-- proto: PosterBroken
- entities:
- - uid: 239
- components:
- - type: Transform
- pos: 21.5,15.5
- parent: 1
- - uid: 240
- components:
- - type: Transform
- pos: 7.5,14.5
- parent: 1
-- proto: PosterContrabandAmbrosiaVulgaris
- entities:
- - uid: 25
- components:
- - type: Transform
- pos: 2.5,8.5
- parent: 1
-- proto: PosterContrabandEAT
- entities:
- - uid: 230
- components:
- - type: Transform
- pos: 19.5,25.5
- parent: 1
-- proto: Rack
- entities:
- - uid: 96
- components:
- - type: Transform
- pos: 16.5,7.5
- parent: 1
- - uid: 105
- components:
- - type: Transform
- pos: 21.5,1.5
- parent: 1
- - uid: 106
- components:
- - type: Transform
- pos: 21.5,13.5
- parent: 1
- - uid: 126
- components:
- - type: Transform
- pos: 21.5,14.5
- parent: 1
- - uid: 133
- components:
- - type: Transform
- pos: 19.5,15.5
- parent: 1
- - uid: 150
- components:
- - type: Transform
- pos: 8.5,13.5
- parent: 1
- - uid: 224
- components:
- - type: Transform
- pos: 8.5,20.5
- parent: 1
- - uid: 225
- components:
- - type: Transform
- pos: 8.5,21.5
- parent: 1
- - uid: 237
- components:
- - type: Transform
- pos: 19.5,27.5
- parent: 1
- - uid: 238
- components:
- - type: Transform
- pos: 19.5,26.5
- parent: 1
- - uid: 264
- components:
- - type: Transform
- pos: 2.5,19.5
- parent: 1
-- proto: Railing
- entities:
- - uid: 8
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,8.5
- parent: 1
- - uid: 61
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,9.5
- parent: 1
- - uid: 62
- components:
- - type: Transform
- pos: 8.5,7.5
- parent: 1
- - uid: 63
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,8.5
- parent: 1
-- proto: RailingCorner
- entities:
- - uid: 57
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,9.5
- parent: 1
- - uid: 58
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,9.5
- parent: 1
- - uid: 59
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,7.5
- parent: 1
- - uid: 60
- components:
- - type: Transform
- pos: 9.5,7.5
- parent: 1
-- proto: RandomDrinkGlass
- entities:
- - uid: 13
- components:
- - type: Transform
- pos: 2.5,2.5
- parent: 1
- - uid: 37
- components:
- - type: Transform
- pos: 3.5,3.5
- parent: 1
-- proto: RandomDrinkSoda
- entities:
- - uid: 194
- components:
- - type: Transform
- pos: 8.5,1.5
- parent: 1
- - uid: 205
- components:
- - type: Transform
- pos: 21.5,20.5
- parent: 1
-- proto: RandomFoodBakedWhole
- entities:
- - uid: 231
- components:
- - type: Transform
- pos: 20.5,25.5
- parent: 1
-- proto: RandomIngredient
- entities:
- - uid: 233
- components:
- - type: Transform
- pos: 19.5,26.5
- parent: 1
-- proto: RandomPosterContraband
- entities:
- - uid: 89
- components:
- - type: Transform
- pos: 13.5,21.5
- parent: 1
- - uid: 90
- components:
- - type: Transform
- pos: 7.5,20.5
- parent: 1
- - uid: 160
- components:
- - type: Transform
- pos: 8.5,3.5
- parent: 1
- - uid: 204
- components:
- - type: Transform
- pos: 19.5,19.5
- parent: 1
-- proto: RandomProduce
- entities:
- - uid: 34
- components:
- - type: Transform
- pos: 4.5,7.5
- parent: 1
- - uid: 35
- components:
- - type: Transform
- pos: 0.5,9.5
- parent: 1
- - uid: 232
- components:
- - type: Transform
- pos: 19.5,27.5
- parent: 1
-- proto: RandomSnacks
- entities:
- - uid: 144
- components:
- - type: Transform
- pos: 8.5,2.5
- parent: 1
-- proto: RandomSoap
- entities:
- - uid: 252
- components:
- - type: Transform
- pos: 2.5,19.5
- parent: 1
-- proto: RandomSpawner
- entities:
- - uid: 39
- components:
- - type: Transform
- pos: 10.5,3.5
- parent: 1
- - uid: 40
- components:
- - type: Transform
- pos: 13.5,22.5
- parent: 1
- - uid: 139
- components:
- - type: Transform
- pos: 18.5,26.5
- parent: 1
- - uid: 140
- components:
- - type: Transform
- pos: 22.5,22.5
- parent: 1
- - uid: 142
- components:
- - type: Transform
- pos: 20.5,24.5
- parent: 1
- - uid: 179
- components:
- - type: Transform
- pos: 7.5,18.5
- parent: 1
- - uid: 181
- components:
- - type: Transform
- pos: 15.5,24.5
- parent: 1
- - uid: 182
- components:
- - type: Transform
- pos: 13.5,28.5
- parent: 1
- - uid: 186
- components:
- - type: Transform
- pos: 6.5,1.5
- parent: 1
- - uid: 187
- components:
- - type: Transform
- pos: 1.5,2.5
- parent: 1
- - uid: 188
- components:
- - type: Transform
- pos: 3.5,10.5
- parent: 1
- - uid: 189
- components:
- - type: Transform
- pos: 9.5,10.5
- parent: 1
- - uid: 190
- components:
- - type: Transform
- pos: 6.5,7.5
- parent: 1
- - uid: 191
- components:
- - type: Transform
- pos: 22.5,0.5
- parent: 1
- - uid: 192
- components:
- - type: Transform
- pos: 19.5,6.5
- parent: 1
- - uid: 193
- components:
- - type: Transform
- pos: 15.5,16.5
- parent: 1
- - uid: 213
- components:
- - type: Transform
- pos: 20.5,18.5
- parent: 1
- - uid: 241
- components:
- - type: Transform
- pos: 21.5,27.5
- parent: 1
- - uid: 249
- components:
- - type: Transform
- pos: 9.5,24.5
- parent: 1
- - uid: 250
- components:
- - type: Transform
- pos: 9.5,22.5
- parent: 1
- - uid: 251
- components:
- - type: Transform
- pos: 3.5,12.5
- parent: 1
-- proto: SignBiohazardMed
- entities:
- - uid: 43
- components:
- - type: Transform
- pos: 1.5,27.5
- parent: 1
-- proto: SignElectricalMed
- entities:
- - uid: 149
- components:
- - type: Transform
- pos: 9.5,14.5
- parent: 1
-- proto: SignFlammableMed
- entities:
- - uid: 268
- components:
- - type: Transform
- pos: 13.5,13.5
- parent: 1
-- proto: SignLaserMed
- entities:
- - uid: 118
- components:
- - type: Transform
- pos: 13.5,27.5
- parent: 1
-- proto: SignRestroom
- entities:
- - uid: 265
- components:
- - type: Transform
- pos: 1.5,20.5
- parent: 1
-- proto: SinkWide
- entities:
- - uid: 137
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,27.5
- parent: 1
-- proto: SpawnMobMonkey
- entities:
- - uid: 80
- components:
- - type: Transform
- pos: 8.5,8.5
- parent: 1
-- proto: Stool
- entities:
- - uid: 9
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,13.5
- parent: 1
- - uid: 81
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,13.5
- parent: 1
- - uid: 91
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,13.5
- parent: 1
-- proto: Table
- entities:
- - uid: 33
- components:
- - type: Transform
- pos: 21.5,21.5
- parent: 1
- - uid: 52
- components:
- - type: Transform
- pos: 13.5,2.5
- parent: 1
- - uid: 54
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 15.5,2.5
- parent: 1
- - uid: 55
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 15.5,1.5
- parent: 1
- - uid: 92
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 20.5,1.5
- parent: 1
- - uid: 110
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 20.5,2.5
- parent: 1
- - uid: 116
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 20.5,8.5
- parent: 1
- - uid: 119
- components:
- - type: Transform
- pos: 21.5,19.5
- parent: 1
- - uid: 120
- components:
- - type: Transform
- pos: 3.5,25.5
- parent: 1
- - uid: 121
- components:
- - type: Transform
- pos: 21.5,20.5
- parent: 1
- - uid: 155
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,1.5
- parent: 1
- - uid: 156
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,2.5
- parent: 1
- - uid: 162
- components:
- - type: Transform
- pos: 3.5,26.5
- parent: 1
- - uid: 195
- components:
- - type: Transform
- pos: 20.5,19.5
- parent: 1
- - uid: 209
- components:
- - type: Transform
- pos: 15.5,19.5
- parent: 1
- - uid: 210
- components:
- - type: Transform
- pos: 14.5,19.5
- parent: 1
- - uid: 211
- components:
- - type: Transform
- pos: 13.5,19.5
- parent: 1
- - uid: 229
- components:
- - type: Transform
- pos: 20.5,25.5
- parent: 1
- - uid: 235
- components:
- - type: Transform
- pos: 21.5,25.5
- parent: 1
-- proto: TableCarpet
- entities:
- - uid: 26
- components:
- - type: Transform
- pos: 3.5,3.5
- parent: 1
- - uid: 27
- components:
- - type: Transform
- pos: 3.5,2.5
- parent: 1
- - uid: 28
- components:
- - type: Transform
- pos: 2.5,3.5
- parent: 1
- - uid: 29
- components:
- - type: Transform
- pos: 2.5,2.5
- parent: 1
-- proto: TableWood
- entities:
- - uid: 22
- components:
- - type: Transform
- pos: 3.5,15.5
- parent: 1
- - uid: 112
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,14.5
- parent: 1
- - uid: 113
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,14.5
- parent: 1
-- proto: ToiletDirtyWater
- entities:
- - uid: 257
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,20.5
- parent: 1
-- proto: WallSolid
- entities:
- - uid: 12
- components:
- - type: Transform
- pos: 20.5,14.5
- parent: 1
- - uid: 88
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,27.5
- parent: 1
- - uid: 132
- components:
- - type: Transform
- pos: 21.5,15.5
- parent: 1
- - uid: 136
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,14.5
- parent: 1
- - uid: 216
- components:
- - type: Transform
- pos: 13.5,21.5
- parent: 1
- - uid: 221
- components:
- - type: Transform
- pos: 7.5,20.5
- parent: 1
- - uid: 222
- components:
- - type: Transform
- pos: 7.5,19.5
- parent: 1
- - uid: 254
- components:
- - type: Transform
- pos: 1.5,20.5
- parent: 1
- - uid: 255
- components:
- - type: Transform
- pos: 2.5,21.5
- parent: 1
- - uid: 269
- components:
- - type: Transform
- pos: 13.5,27.5
- parent: 1
-- proto: WallSolidRust
- entities:
- - uid: 15
- components:
- - type: Transform
- pos: 2.5,8.5
- parent: 1
- - uid: 107
- components:
- - type: Transform
- pos: 19.5,14.5
- parent: 1
- - uid: 108
- components:
- - type: Transform
- pos: 20.5,13.5
- parent: 1
- - uid: 131
- components:
- - type: Transform
- pos: 20.5,15.5
- parent: 1
- - uid: 135
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,14.5
- parent: 1
- - uid: 138
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,13.5
- parent: 1
- - uid: 147
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 13.5,13.5
- parent: 1
- - uid: 157
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,3.5
- parent: 1
- - uid: 202
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 19.5,19.5
- parent: 1
- - uid: 214
- components:
- - type: Transform
- pos: 15.5,21.5
- parent: 1
- - uid: 218
- components:
- - type: Transform
- pos: 7.5,21.5
- parent: 1
- - uid: 220
- components:
- - type: Transform
- pos: 8.5,19.5
- parent: 1
- - uid: 234
- components:
- - type: Transform
- pos: 19.5,25.5
- parent: 1
- - uid: 253
- components:
- - type: Transform
- pos: 1.5,19.5
- parent: 1
- - uid: 256
- components:
- - type: Transform
- pos: 1.5,21.5
- parent: 1
- - uid: 270
- components:
- - type: Transform
- pos: 14.5,27.5
- parent: 1
-- proto: WaterTankFull
- entities:
- - uid: 19
- components:
- - type: Transform
- pos: 3.5,6.5
- parent: 1
-- proto: Window
- entities:
- - uid: 100
- components:
- - type: Transform
- pos: 14.5,8.5
- parent: 1
- - uid: 101
- components:
- - type: Transform
- pos: 13.5,8.5
- parent: 1
-- proto: WindowDirectional
- entities:
- - uid: 123
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,1.5
- parent: 1
- - uid: 124
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,2.5
- parent: 1
- - uid: 165
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,3.5
- parent: 1
- - uid: 170
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,2.5
- parent: 1
- - uid: 174
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,1.5
- parent: 1
- - uid: 198
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,21.5
- parent: 1
- - uid: 199
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,20.5
- parent: 1
- - uid: 200
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,19.5
- parent: 1
- - uid: 243
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,26.5
- parent: 1
- - uid: 244
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,25.5
- parent: 1
-...
diff --git a/Resources/Maps/Nonstations/nukieplanet.yml b/Resources/Maps/Nonstations/nukieplanet.yml
index 5d6cbb69305..6c0a209deca 100644
--- a/Resources/Maps/Nonstations/nukieplanet.yml
+++ b/Resources/Maps/Nonstations/nukieplanet.yml
@@ -1661,15 +1661,6 @@ 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
@@ -6585,12 +6576,12 @@ entities:
- uid: 2031
components:
- type: Transform
- pos: 3.3130646,-11.479682
+ pos: 4.0109396,-12.223828
parent: 104
- uid: 2095
components:
- type: Transform
- pos: 3.6099396,-11.479682
+ pos: 4.017678,-12.520861
parent: 104
- proto: Bed
entities:
@@ -6665,7 +6656,7 @@ entities:
- uid: 2114
components:
- type: Transform
- pos: 7.223599,-12.19286
+ pos: 5.539936,-12.489611
parent: 104
- proto: BoxFolderBlack
entities:
@@ -6693,7 +6684,7 @@ entities:
- uid: 1844
components:
- type: Transform
- pos: 7.629849,-12.44286
+ pos: 5.430561,-12.364611
parent: 104
- proto: BoxShotgunPractice
entities:
@@ -10200,13 +10191,6 @@ 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
@@ -10301,7 +10285,7 @@ entities:
- uid: 1738
components:
- type: Transform
- pos: 3.5005646,-10.854682
+ pos: 3.5009227,-11.519134
parent: 104
- proto: ClothingNeckScarfStripedRed
entities:
@@ -10315,16 +10299,8 @@ entities:
- uid: 1336
components:
- type: Transform
- pos: -2.327716,-12.470306
+ pos: 7.5027137,-12.301802
parent: 104
- - type: Stethoscope
- actionEntity: 1739
- - type: ActionsContainer
- - type: ContainerContainer
- containers:
- actions: !type:Container
- ents:
- - 1739
- proto: ClothingShoesBootsSalvage
entities:
- uid: 542
@@ -10533,18 +10509,15 @@ entities:
parent: 104
- type: Fixtures
fixtures: {}
-- proto: FloraRockSolid
+- proto: FloraRockSolid01
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
@@ -10555,72 +10528,81 @@ entities:
- type: Transform
pos: -1.3676796,16.13784
parent: 104
-- proto: FloraTreeConifer
+- proto: FloraRockSolid03
entities:
- - uid: 219
+ - uid: 1706
components:
- type: Transform
- pos: 5.5,4.5
+ pos: 13.550529,12.489372
parent: 104
- - uid: 260
+- proto: FloraTreeConifer01
+ entities:
+ - uid: 261
components:
- type: Transform
- pos: 7.7267694,7.536619
+ pos: 7.7892694,4.987089
parent: 104
- - uid: 261
+ - uid: 275
components:
- type: Transform
- pos: 7.7892694,4.987089
+ pos: -3.80645,4.798395
parent: 104
- - uid: 267
+ - uid: 281
components:
- type: Transform
- pos: 12.789269,3.6888618
+ pos: -1.0279694,6.890992
parent: 104
- - uid: 268
+ - uid: 1619
components:
- type: Transform
- pos: -0.17814255,7.5043383
+ pos: 16.10984,7.3249645
parent: 104
- - uid: 271
+ - uid: 1622
components:
- type: Transform
- pos: -1.1000175,4.26659
+ pos: 7.42463,16.597832
parent: 104
- - uid: 273
+ - uid: 1626
components:
- type: Transform
- pos: -2.591959,2.9214401
+ pos: 11.605486,16.944057
parent: 104
- - uid: 275
+- proto: FloraTreeConifer02
+ entities:
+ - uid: 219
components:
- type: Transform
- pos: -3.80645,4.798395
+ pos: 5.5,4.5
parent: 104
- - uid: 280
+ - uid: 260
components:
- type: Transform
- pos: 1.5111885,4.4898434
+ pos: 7.7267694,7.536619
parent: 104
- - uid: 281
+ - uid: 267
components:
- type: Transform
- pos: -1.0279694,6.890992
+ pos: 12.789269,3.6888618
parent: 104
- - uid: 1035
+ - uid: 268
components:
- type: Transform
- pos: 0.74747276,19.424063
+ pos: -0.17814255,7.5043383
parent: 104
- - uid: 1618
+ - uid: 273
components:
- type: Transform
- pos: 11.32859,10.093473
+ pos: -2.591959,2.9214401
parent: 104
- - uid: 1619
+ - uid: 280
components:
- type: Transform
- pos: 16.10984,7.3249645
+ pos: 1.5111885,4.4898434
+ parent: 104
+ - uid: 1618
+ components:
+ - type: Transform
+ pos: 11.32859,10.093473
parent: 104
- uid: 1620
components:
@@ -10632,15 +10614,17 @@ entities:
- type: Transform
pos: 14.582346,17.286049
parent: 104
- - uid: 1622
+- proto: FloraTreeConifer03
+ entities:
+ - uid: 271
components:
- type: Transform
- pos: 7.42463,16.597832
+ pos: -1.1000175,4.26659
parent: 104
- - uid: 1626
+ - uid: 1035
components:
- type: Transform
- pos: 11.605486,16.944057
+ pos: 0.74747276,19.424063
parent: 104
- uid: 1673
components:
@@ -10652,32 +10636,43 @@ entities:
- type: Transform
pos: 8.497473,19.862019
parent: 104
-- proto: FloraTreeSnow
+- proto: FloraTreeSnow01
entities:
- uid: 262
components:
- type: Transform
pos: 9.630766,6.7434845
parent: 104
- - uid: 265
+- proto: FloraTreeSnow02
+ entities:
+ - uid: 270
components:
- type: Transform
- pos: 0.24603653,5.7335367
+ pos: -2.3114033,5.0917635
parent: 104
- - uid: 269
+ - uid: 1630
components:
- type: Transform
- pos: 0.30623245,3.9068413
+ pos: 4.558771,16.696045
parent: 104
- - uid: 270
+- proto: FloraTreeSnow03
+ entities:
+ - uid: 274
components:
- type: Transform
- pos: -2.3114033,5.0917635
+ pos: -3.3325882,6.8936405
parent: 104
- - uid: 274
+ - uid: 1629
components:
- type: Transform
- pos: -3.3325882,6.8936405
+ pos: 9.924105,15.382175
+ parent: 104
+- proto: FloraTreeSnow04
+ entities:
+ - uid: 265
+ components:
+ - type: Transform
+ pos: 0.24603653,5.7335367
parent: 104
- uid: 276
components:
@@ -10689,6 +10684,13 @@ 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
@@ -10699,16 +10701,6 @@ 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
@@ -10788,6 +10780,8 @@ entities:
- type: Transform
pos: 22.5,-15.5
parent: 104
+ - type: GravityGenerator
+ charge: 100
- type: PointLight
radius: 175.75
- proto: GrenadeFlashBang
@@ -11004,7 +10998,7 @@ entities:
- uid: 1826
components:
- type: Transform
- pos: 3.5161896,-10.573432
+ pos: 3.4542694,-10.616036
parent: 104
- proto: KitchenKnife
entities:
@@ -11025,7 +11019,7 @@ entities:
- uid: 2021
components:
- type: Transform
- pos: 3.9919167,-12.28661
+ pos: 5.039936,-12.489611
parent: 104
- proto: LightPostSmall
entities:
@@ -12832,7 +12826,7 @@ entities:
- type: Transform
pos: 2.5,-12.5
parent: 104
-- proto: SignToxins
+- proto: SignToxins2
entities:
- uid: 1318
components:
@@ -13271,7 +13265,7 @@ entities:
- uid: 1151
components:
- type: Transform
- pos: -2.702716,-12.314056
+ pos: -2.530845,-12.414692
parent: 104
- proto: Table
entities:
@@ -13485,6 +13479,11 @@ 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 cfddf10b8da..d17b925bf2c 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: gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
0,-1:
ind: 0,-1
- tiles: AAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAACgAAAAAAAgQAAAAAAAQAAAAACAQAAAAACgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAABgAAAAAAAgAAAAAAAAQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAABAQAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAACAQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAACgQAAAAAAAQAAAAABgQAAAAAAgQAAAAAAAQAAAAACAQAAAAABgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAACAQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAQAAAAACAQAAAAABAQAAAAAAAQAAAAAAAQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAAQAAAAABgQAAAAAAAQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAAQAAAAABAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAQAAAAABAQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAQAAAAABAQAAAAACAQAAAAAAAQAAAAACgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAQAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABgAAAAAAAgAAAAAAAgAAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-1,-1:
ind: -1,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAA
version: 6
- type: Broadphase
- type: Physics
@@ -50,290 +50,24 @@ 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
- - type: NavMap
-- proto: AirlockEngineering
+- proto: ClothingHeadsetGrey
entities:
- - 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
+ - uid: 27
components:
- type: Transform
- 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
+ pos: 4.4739795,-2.5042162
parent: 1
- proto: LootSpawnerEncryptionKey
entities:
@@ -342,11 +76,6 @@ 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
@@ -354,11 +83,6 @@ 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
@@ -378,13 +102,6 @@ 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
@@ -392,13 +109,6 @@ 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
@@ -416,100 +126,6 @@ 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
@@ -517,20 +133,6 @@ 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
@@ -538,13 +140,6 @@ 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
@@ -574,6 +169,11 @@ 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
@@ -614,39 +214,4 @@ 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/ruined_prison_ship.yml b/Resources/Maps/Ruins/ruined_prison_ship.yml
deleted file mode 100644
index ab921840291..00000000000
--- a/Resources/Maps/Ruins/ruined_prison_ship.yml
+++ /dev/null
@@ -1,4978 +0,0 @@
-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 7a187cb334c..28e028b7845 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: 139.98299
+ temperature: 202.38435
moles:
- 0
- 0
@@ -306,12 +306,12 @@ entities:
- type: Transform
pos: 3.5,1.5
parent: 222
-- proto: BlueprintSeismicCharge
+- proto: BoxShotgunFlare
entities:
- - uid: 217
+ - uid: 25
components:
- type: Transform
- pos: 0.5,-4.518282
+ pos: 0.5821538,-2.3847435
parent: 222
- proto: CableApcExtension
entities:
@@ -650,48 +650,54 @@ entities:
- type: Transform
pos: -1.6170431,-2.424334
parent: 222
-- proto: ClothingBeltUtility
+- proto: ClothingBackpackMerc
entities:
- - uid: 196
+ - uid: 20
components:
- type: Transform
- pos: -6.516491,-5.5462
+ pos: 0.5821538,-4.4794393
parent: 222
-- proto: ClothingNeckChameleon
+- proto: ClothingBeltUtility
entities:
- - uid: 25
+ - uid: 196
components:
- type: Transform
- pos: -1.5,-3.5
+ pos: -6.516491,-5.5462
parent: 222
-- proto: ClothingNeckScarfStripedSyndieGreen
+- proto: ClothingShoesBootsCombatFilled
entities:
- - uid: 203
+ - uid: 220
components:
- type: Transform
- pos: -1.5,-3.5
- parent: 222
-- proto: ClothingNeckScarfStripedSyndieRed
- entities:
- - uid: 204
+ parent: 149
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 221
components:
- type: Transform
- pos: -1.5,-3.5
- parent: 222
-- proto: ClothingUniformJumpskirtSyndieFormalDress
+ parent: 149
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingUniformJumpskirtOperative
entities:
- - uid: 205
+ - uid: 217
components:
- type: Transform
- pos: -1.5,-3.5
- parent: 222
-- proto: ClothingUniformJumpsuitSyndieFormal
+ parent: 149
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingUniformJumpsuitOperative
entities:
- - uid: 17
+ - uid: 216
components:
- type: Transform
- pos: -1.5,-3.5
- parent: 222
+ parent: 149
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: ComputerBroken
entities:
- uid: 48
@@ -781,34 +787,11 @@ 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: 127.50272
+ temperature: 102.54218
moles:
- 0
- 0
@@ -822,10 +805,20 @@ entities:
- 0
- 0
- 0
- open: True
- removedMasks: 20
- - type: PlaceableSurface
- isPlaceable: True
+ - 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
- proto: MachineFrameDestroyed
entities:
- uid: 197
@@ -833,18 +826,6 @@ 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
@@ -980,13 +961,6 @@ 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
@@ -994,13 +968,6 @@ 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
@@ -1454,6 +1421,13 @@ 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 79bd43cc585..854d87c77e1 100644
--- a/Resources/Maps/Shuttles/emergency_plasma.yml
+++ b/Resources/Maps/Shuttles/emergency_plasma.yml
@@ -541,7 +541,6 @@ entities:
chunkSize: 4
- type: GasTileOverlay
- type: RadiationGridResistance
- - type: EmergencyShuttle
- proto: AirAlarm
entities:
- uid: 218
@@ -2181,66 +2180,6 @@ 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
@@ -2829,36 +2768,6 @@ 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
@@ -3156,27 +3065,29 @@ entities:
parent: 2
- proto: ClosetWallEmergencyFilledRandom
entities:
- - uid: 191
+ - uid: 66
components:
- type: Transform
- pos: 1.5,-0.5
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-6.5
parent: 2
- - uid: 475
+ - uid: 118
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,-8.5
+ rot: -1.5707963267948966 rad
+ pos: 15.5,-6.5
parent: 2
- - uid: 1159
+ - uid: 155
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 15.5,-8.5
+ rot: -1.5707963267948966 rad
+ pos: 15.5,-2.5
parent: 2
- - uid: 1160
+ - uid: 184
components:
- type: Transform
- pos: 15.5,-0.5
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-2.5
parent: 2
- proto: ComputerAlert
entities:
@@ -3281,14 +3192,6 @@ 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
@@ -3494,6 +3397,7 @@ entities:
parent: 2
- type: GasFilter
filteredGas: Nitrogen
+ enabled: True
- type: AtmosPipeColor
color: '#990000FF'
- uid: 414
@@ -3503,6 +3407,7 @@ entities:
parent: 2
- type: GasFilter
filteredGas: Oxygen
+ enabled: True
- type: AtmosPipeColor
color: '#990000FF'
- proto: GasMinerNitrogen
@@ -3532,6 +3437,7 @@ entities:
inletTwoConcentration: 0.78
inletOneConcentration: 0.22
targetPressure: 4500
+ enabled: True
- type: AtmosPipeColor
color: '#03FCD3FF'
- proto: GasOutletInjector
@@ -5149,6 +5055,7 @@ entities:
parent: 2
- type: GasPressurePump
targetPressure: 4500
+ enabled: True
- uid: 404
components:
- type: Transform
@@ -5157,6 +5064,7 @@ entities:
parent: 2
- type: GasPressurePump
targetPressure: 4500
+ enabled: True
- uid: 408
components:
- type: Transform
@@ -5165,6 +5073,7 @@ entities:
parent: 2
- type: GasPressurePump
targetPressure: 303.3
+ enabled: True
- type: AtmosPipeColor
color: '#0055CCFF'
- proto: GasVentPump
@@ -6215,43 +6124,6 @@ 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
@@ -6628,115 +6500,115 @@ entities:
611:
- 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:
+ 588:
- On: Open
- Off: Close
- 609:
+ 587:
- On: Open
- Off: Close
- 613:
+ 589:
- On: Open
- Off: Close
- 614:
+ 590:
- On: Open
- Off: Close
- 5:
+ 591:
- On: Open
- Off: Close
- 615:
+ 592:
- On: Open
- Off: Close
- 616:
+ 593:
- On: Open
- Off: Close
- 617:
+ 595:
- On: Open
- Off: Close
- 618:
+ 596:
- On: Open
- Off: Close
- 621:
+ 597:
- On: Open
- Off: Close
- 622:
+ 598:
- On: Open
- Off: Close
- 623:
+ 599:
- On: Open
- Off: Close
- 625:
+ 600:
- On: Open
- Off: Close
- 626:
+ 601:
- On: Open
- Off: Close
- 587:
+ 602:
- On: Open
- Off: Close
- 588:
+ 603:
- On: Open
- Off: Close
- 589:
+ 594:
- On: Open
- Off: Close
- 590:
+ 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
- 591:
+ 609:
- On: Open
- Off: Close
- 592:
+ 613:
- On: Open
- Off: Close
- 593:
+ 614:
- On: Open
- Off: Close
- 594:
+ 5:
- On: Open
- Off: Close
- 595:
+ 615:
- On: Open
- Off: Close
- 596:
+ 616:
- On: Open
- Off: Close
- 597:
+ 617:
- On: Open
- Off: Close
- 598:
+ 618:
- On: Open
- Off: Close
- 599:
+ 621:
- On: Open
- Off: Close
- 600:
+ 622:
- On: Open
- Off: Close
- 601:
+ 623:
- On: Open
- Off: Close
- 602:
+ 625:
- On: Open
- Off: Close
- 603:
+ 626:
- On: Open
- Off: Close
lastSignals:
@@ -6793,14 +6665,6 @@ 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
@@ -7051,18 +6915,6 @@ 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
@@ -7262,6 +7114,20 @@ 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
@@ -7428,6 +7294,12 @@ 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
@@ -7908,12 +7780,6 @@ 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
@@ -7937,7 +7803,6 @@ entities:
- uid: 242
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 10.5,-15.5
parent: 2
- uid: 243
diff --git a/Resources/Maps/amber.yml b/Resources/Maps/amber.yml
index bb07d048130..acaebac8aab 100644
--- a/Resources/Maps/amber.yml
+++ b/Resources/Maps/amber.yml
@@ -81,59 +81,59 @@ entities:
chunks:
-1,-1:
ind: -1,-1
- tiles: CQAAAAABCQAAAAAACQAAAAAACQAAAAABCQAAAAACDgAAAAAACQAAAAABCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAADCQAAAAACDgAAAAAACQAAAAABCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAADDgAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABDwAAAAAADwAAAAAADwAAAAACCQAAAAABCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAAADwAAAAAADwAAAAABDwAAAAAACQAAAAABCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAAACQAAAAABCQAAAAABCQAAAAADDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAADCQAAAAACGgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAABDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAAADwAAAAADDwAAAAAADwAAAAADCQAAAAABCQAAAAAACQAAAAADDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAADCQAAAAADGgAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAACDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA
+ tiles: CQAAAAADCQAAAAABCQAAAAADCQAAAAAACQAAAAADDgAAAAAACQAAAAABCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAABDgAAAAAACQAAAAABCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAABDgAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAABCQAAAAACCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACDwAAAAADDwAAAAAADwAAAAACCQAAAAABCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADDwAAAAACDwAAAAAADwAAAAAACQAAAAABCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAACDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAABCQAAAAACGgAAAAACCQAAAAABCQAAAAACCQAAAAAACQAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAADDwAAAAABDwAAAAADDwAAAAAACQAAAAADCQAAAAABCQAAAAADDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAADCQAAAAAAGgAAAAADCQAAAAAACQAAAAADCQAAAAACCQAAAAACDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA
version: 6
-1,-2:
ind: -1,-2
- tiles: CQAAAAAACQAAAAABCQAAAAACGwAAAAAADgAAAAAAGwAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIQAAAAACCQAAAAABCQAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAABDgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAACHAAAAAADHAAAAAADHAAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAACHAAAAAACHAAAAAACHAAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAABCQAAAAACDgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAADCQAAAAADCQAAAAADCQAAAAABDgAAAAAACQAAAAABCQAAAAABCQAAAAACDgAAAAAACQAAAAADCQAAAAABCQAAAAABDgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAACCQAAAAACDgAAAAAACQAAAAABCQAAAAACCQAAAAABDgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAACCQAAAAABCQAAAAABDgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAA
+ tiles: CQAAAAAACQAAAAABCQAAAAADGwAAAAAADgAAAAAAGwAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIQAAAAAACQAAAAAACQAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAACDgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAABHAAAAAADHAAAAAABDgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAABHAAAAAADHAAAAAABHAAAAAADDgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAABDgAAAAAAHAAAAAAAHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAACCQAAAAACDgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAADDgAAAAAACQAAAAABCQAAAAADCQAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAAACQAAAAAACQAAAAACCQAAAAACDgAAAAAACQAAAAACCQAAAAABCQAAAAACDgAAAAAACQAAAAADCQAAAAABCQAAAAABDgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAADCQAAAAADCQAAAAADDgAAAAAACQAAAAABCQAAAAADCQAAAAACDgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAADCQAAAAADCQAAAAABCQAAAAABDgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAA
version: 6
-1,-3:
ind: -1,-3
- tiles: IwAAAAACIwAAAAAAIwAAAAABIwAAAAACIwAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAADCQAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAABIwAAAAADIwAAAAAAIwAAAAABIwAAAAADIwAAAAACDgAAAAAACQAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAACDgAAAAAAGgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHAAAAAACHAAAAAAAHAAAAAAAHAAAAAACDgAAAAAAHAAAAAACHAAAAAAAHAAAAAAAIwAAAAADJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHAAAAAADHAAAAAACHAAAAAAAHAAAAAABDgAAAAAAHAAAAAADHAAAAAACHAAAAAAAIwAAAAACJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAACQAAAAAACQAAAAACCQAAAAADHAAAAAAAHAAAAAABHAAAAAACHAAAAAACHAAAAAADIwAAAAAAIwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHAAAAAABDgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAACHAAAAAAAHAAAAAADHAAAAAABHAAAAAADHAAAAAABIwAAAAADIwAAAAACIwAAAAAAIwAAAAADIwAAAAABHAAAAAACHAAAAAADDgAAAAAACQAAAAABCQAAAAACCQAAAAACHAAAAAABSQAAAAAASQAAAAAAHAAAAAABHAAAAAADSQAAAAACSQAAAAADHAAAAAADHAAAAAABHAAAAAADHAAAAAAAHAAAAAACHAAAAAABHAAAAAACDgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAACHAAAAAACHAAAAAACHAAAAAAAHAAAAAADHAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADHAAAAAAAHAAAAAAAHAAAAAABHAAAAAADHAAAAAACHAAAAAACHAAAAAAAHAAAAAABKQAAAAAAKwAAAAABKwAAAAADKwAAAAADDgAAAAAACQAAAAACHAAAAAABDgAAAAAAHAAAAAAASQAAAAAASQAAAAABHAAAAAABHAAAAAABSQAAAAADSQAAAAAAHAAAAAADDgAAAAAAKwAAAAADKwAAAAABKwAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAAAHAAAAAABHAAAAAACHAAAAAACHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABDgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAACQAAAAAAHAAAAAADHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAADJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAIQAAAAABCQAAAAACCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAABCQAAAAACCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAABDgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAADgAAAAAAIQAAAAAD
+ tiles: IwAAAAACIwAAAAACIwAAAAADIwAAAAADIwAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAADCQAAAAACCQAAAAACCQAAAAACCQAAAAAACQAAAAADCQAAAAADIwAAAAAAIwAAAAAAIwAAAAACIwAAAAAAIwAAAAADDgAAAAAACQAAAAABCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAAADgAAAAAAGgAAAAACJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHAAAAAADHAAAAAAAHAAAAAABHAAAAAABDgAAAAAAHAAAAAABHAAAAAACHAAAAAACIwAAAAACJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHAAAAAACHAAAAAABHAAAAAACHAAAAAABDgAAAAAAHAAAAAABHAAAAAADHAAAAAADIwAAAAADJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAACQAAAAABCQAAAAADCQAAAAADHAAAAAADHAAAAAADHAAAAAADHAAAAAAAHAAAAAACIwAAAAABDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHAAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADHAAAAAADHAAAAAAAHAAAAAABHAAAAAADHAAAAAACIwAAAAACIwAAAAACIwAAAAADIwAAAAADIwAAAAACHAAAAAADHAAAAAABDgAAAAAACQAAAAABCQAAAAABCQAAAAADHAAAAAAASQAAAAABSQAAAAABHAAAAAABHAAAAAAASQAAAAACSQAAAAADHAAAAAACHAAAAAADHAAAAAABHAAAAAAAHAAAAAACHAAAAAAAHAAAAAABDgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAABHAAAAAACHAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAACHAAAAAACHAAAAAABHAAAAAADHAAAAAACHAAAAAAAHAAAAAABHAAAAAACHAAAAAADKQAAAAAAKwAAAAABKwAAAAABKwAAAAAADgAAAAAACQAAAAAAHAAAAAABDgAAAAAAHAAAAAADSQAAAAACSQAAAAADHAAAAAADHAAAAAAASQAAAAABSQAAAAAAHAAAAAAADgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAADHAAAAAADHAAAAAACHAAAAAACHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAACQAAAAAAHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAADJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAIQAAAAADCQAAAAADCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAAACQAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAADDgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAADgAAAAAAIQAAAAAA
version: 6
-1,-4:
ind: -1,-4
- tiles: LAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAABCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAAACQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAADDgAAAAAAHAAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAABDgAAAAAACQAAAAADCQAAAAABCQAAAAACHAAAAAAAHAAAAAABHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAADCQAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAACHAAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAADCQAAAAACCQAAAAADDgAAAAAAHAAAAAACHAAAAAACHAAAAAAAHAAAAAADHAAAAAABHAAAAAABHAAAAAACGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAAAQAAAAABAQAAAAACAQAAAAAAAQAAAAABAQAAAAAAIwAAAAAAHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADAQAAAAADAQAAAAADAQAAAAACAQAAAAAAAQAAAAAAIwAAAAADCQAAAAAACQAAAAABCQAAAAABDgAAAAAAIwAAAAAAIwAAAAACDgAAAAAACQAAAAADCQAAAAACCQAAAAABAQAAAAAAAQAAAAACAQAAAAACAQAAAAADAQAAAAABIwAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAACIwAAAAADIwAAAAACDgAAAAAACQAAAAABCQAAAAABCQAAAAADDgAAAAAAAQAAAAABAQAAAAAAAQAAAAACDgAAAAAAIwAAAAABDgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAABIwAAAAACIwAAAAADIwAAAAACIwAAAAABIwAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAAACQAAAAAC
+ tiles: LAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAABCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAACCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAACDgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAACDgAAAAAAHAAAAAABHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADDgAAAAAACQAAAAACCQAAAAADCQAAAAACHAAAAAADHAAAAAABHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAAAHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAAACQAAAAAACQAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAABGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABAQAAAAAAAQAAAAADAQAAAAABAQAAAAADAQAAAAADIwAAAAABHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABAQAAAAAAAQAAAAACAQAAAAACAQAAAAABAQAAAAACIwAAAAAACQAAAAADCQAAAAADCQAAAAACDgAAAAAAIwAAAAAAIwAAAAADDgAAAAAACQAAAAADCQAAAAADCQAAAAADAQAAAAACAQAAAAABAQAAAAAAAQAAAAACAQAAAAACIwAAAAABCQAAAAACCQAAAAABCQAAAAABCQAAAAADIwAAAAACIwAAAAADDgAAAAAACQAAAAADCQAAAAACCQAAAAAADgAAAAAAAQAAAAADAQAAAAABAQAAAAAADgAAAAAAIwAAAAADDgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAAIwAAAAAAIwAAAAABIwAAAAADIwAAAAABIwAAAAADDgAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAABCQAAAAADCQAAAAAA
version: 6
-1,-5:
ind: -1,-5
- tiles: LgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAACGwAAAAAAGwAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABDgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABGwAAAAAAGwAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
+ tiles: LgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABGwAAAAAAGwAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACDgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAABDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAADDgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACGwAAAAAAGwAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
-1,0:
ind: -1,0
- tiles: CQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAAMAAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAAMAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABHAAAAAAAHAAAAAACDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACHAAAAAABHAAAAAADDgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAACQAAAAACCQAAAAACHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAACCQAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAABCQAAAAACLwAAAAABLwAAAAADLwAAAAABLwAAAAABLwAAAAACLwAAAAABLwAAAAAALwAAAAADLwAAAAAALwAAAAACLwAAAAACLwAAAAACLwAAAAAALwAAAAABLwAAAAAALwAAAAAAAQAAAAACLwAAAAAALwAAAAACLwAAAAABAQAAAAABAQAAAAAAAQAAAAAALwAAAAAALwAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAADCQAAAAABCQAAAAAAAQAAAAAALwAAAAACLwAAAAAALwAAAAACAQAAAAADAQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAABLwAAAAADLwAAAAABLwAAAAACAQAAAAABAQAAAAABDgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAAQAAAAADLwAAAAABLwAAAAACLwAAAAAAAQAAAAACAQAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAA
+ tiles: CQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAJLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAAMAAAAAABMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAAMAAAAAABLAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAAMAAAAAAKDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADHAAAAAADHAAAAAACDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACHAAAAAADHAAAAAABDgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAACQAAAAADCQAAAAABHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAADCQAAAAADCQAAAAACCQAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAACCQAAAAADLwAAAAACLwAAAAADLwAAAAABLwAAAAAALwAAAAAALwAAAAACLwAAAAACLwAAAAACLwAAAAADLwAAAAADLwAAAAACLwAAAAABLwAAAAAALwAAAAADLwAAAAACLwAAAAABAQAAAAADLwAAAAABLwAAAAADLwAAAAABAQAAAAADAQAAAAABAQAAAAAALwAAAAAALwAAAAADDgAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAACCQAAAAADAQAAAAAALwAAAAADLwAAAAACLwAAAAABAQAAAAABAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAACLwAAAAABLwAAAAABLwAAAAADAQAAAAADAQAAAAABDgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAAQAAAAAALwAAAAADLwAAAAABLwAAAAABAQAAAAAAAQAAAAABDgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAA
version: 6
-1,1:
ind: -1,1
- tiles: AQAAAAAALwAAAAADLwAAAAAALwAAAAACAQAAAAABAQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACAQAAAAAALwAAAAABLwAAAAACLwAAAAACAQAAAAADAQAAAAABDgAAAAAAHAAAAAABHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACDgAAAAAADgAAAAAALwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAADHAAAAAACHAAAAAACHAAAAAABCQAAAAACCQAAAAAADgAAAAAAMQAAAAAADgAAAAAAGwAAAAAADgAAAAAAMgAAAAAAMgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMgAAAAAAMgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAAMQAAAAABMQAAAAABMQAAAAACDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAADCQAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABLgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
+ tiles: AQAAAAACLwAAAAABLwAAAAADLwAAAAADAQAAAAACAQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACAQAAAAADLwAAAAACLwAAAAABLwAAAAADAQAAAAACAQAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAADgAAAAAADgAAAAAALwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAAAHAAAAAABHAAAAAADHAAAAAABCQAAAAAACQAAAAADDgAAAAAAMQAAAAADDgAAAAAAGwAAAAAADgAAAAAAMgAAAAAAMgAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMgAAAAAAMgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAAMQAAAAADMQAAAAADMQAAAAADDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAACCQAAAAABDgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAACLgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
-2,-1:
ind: -2,-1
- tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACAAAAAAACAAAAAAACQAAAAACCQAAAAACCQAAAAADCAAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABLAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAAHAAAAAADHAAAAAACHAAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAADDgAAAAAAHAAAAAACHAAAAAAAHAAAAAACCQAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAACDgAAAAAACQAAAAAACQAAAAACDgAAAAAACQAAAAABCQAAAAACCQAAAAAADgAAAAAAHAAAAAACHAAAAAACHAAAAAACCQAAAAABCQAAAAACCQAAAAACCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADDgAAAAAAHQAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAADCQAAAAADCQAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAACQAAAAAACQAAAAAACQAAAAACDgAAAAAAHQAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAADDgAAAAAACQAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAAHAAAAAADHAAAAAAAHAAAAAACDgAAAAAACQAAAAABCQAAAAACCQAAAAACDgAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAABDgAAAAAACQAAAAACCQAAAAACHAAAAAACHAAAAAACHAAAAAABHAAAAAABHAAAAAABCQAAAAAACQAAAAACCQAAAAACHAAAAAACHAAAAAAAHAAAAAACHAAAAAAAHAAAAAADDgAAAAAACQAAAAACCQAAAAABHAAAAAADHAAAAAACHAAAAAAAHAAAAAABDgAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAAHAAAAAAAHAAAAAADHAAAAAAAHAAAAAABDgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABDgAAAAAADgAAAAAACQAAAAABDgAAAAAAHAAAAAADHAAAAAAAHAAAAAADHAAAAAAAHAAAAAAAHAAAAAACHAAAAAACHAAAAAACHAAAAAABHAAAAAABHAAAAAACHAAAAAAAHAAAAAABHAAAAAAACQAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAADCQAAAAAA
+ tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACAAAAAAACAAAAAAACQAAAAABCQAAAAACCQAAAAAACAAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABLAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAAHAAAAAAAHAAAAAABHAAAAAABCQAAAAACCQAAAAACCQAAAAADCQAAAAADCQAAAAABCQAAAAACCQAAAAACCQAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAADDgAAAAAAHAAAAAACHAAAAAAAHAAAAAADCQAAAAACCQAAAAABCQAAAAACCQAAAAABCQAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAACQAAAAACCQAAAAACCQAAAAABDgAAAAAAHAAAAAADHAAAAAADHAAAAAADCQAAAAABCQAAAAADCQAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAADgAAAAAAHQAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAAACQAAAAAACQAAAAACDgAAAAAACQAAAAACCQAAAAACDgAAAAAACQAAAAADCQAAAAAACQAAAAAADgAAAAAAHQAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAABCQAAAAACCQAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAAHAAAAAAAHAAAAAADHAAAAAABDgAAAAAACQAAAAADCQAAAAAACQAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAAAHAAAAAACDgAAAAAACQAAAAAACQAAAAADHAAAAAADHAAAAAAAHAAAAAAAHAAAAAACHAAAAAAACQAAAAADCQAAAAABCQAAAAACHAAAAAADHAAAAAABHAAAAAABHAAAAAADHAAAAAACDgAAAAAACQAAAAACCQAAAAACHAAAAAAAHAAAAAADHAAAAAADHAAAAAADDgAAAAAACQAAAAAACQAAAAADCQAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAADHAAAAAADDgAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAACDgAAAAAADgAAAAAACQAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAAAHAAAAAADHAAAAAACHAAAAAABHAAAAAADHAAAAAACHAAAAAABHAAAAAABHAAAAAAAHAAAAAACHAAAAAACHAAAAAADCQAAAAABDgAAAAAAHAAAAAABHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAABHAAAAAABHAAAAAABHAAAAAAACQAAAAAD
version: 6
-2,-2:
ind: -2,-2
- tiles: MwAAAAADMwAAAAADMwAAAAACMwAAAAACMwAAAAACMwAAAAAAMwAAAAADCQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAACMwAAAAACMwAAAAAAMwAAAAABMwAAAAACMwAAAAADCQAAAAAACQAAAAAACQAAAAACDgAAAAAANwAAAAADNwAAAAABNwAAAAAANwAAAAADCQAAAAADMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAADMwAAAAABMwAAAAADMwAAAAADCQAAAAADCQAAAAACCQAAAAAADgAAAAAANwAAAAACNwAAAAACNwAAAAADNwAAAAADDgAAAAAAMwAAAAABMwAAAAAAMwAAAAADMwAAAAAAMwAAAAABMwAAAAADMwAAAAABCQAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAABMwAAAAACMwAAAAAAMwAAAAADMwAAAAAAMwAAAAADCQAAAAABCQAAAAADCQAAAAADCQAAAAABGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAADDgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAADHAAAAAACHAAAAAACHAAAAAACHAAAAAABCQAAAAADCQAAAAADCQAAAAADDgAAAAAAOAAAAAAAOAAAAAABOAAAAAABOAAAAAABOAAAAAADHAAAAAADHAAAAAABHAAAAAADHAAAAAADHAAAAAADHAAAAAABDgAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAAOAAAAAABOAAAAAACOAAAAAABOAAAAAACOAAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAAAOAAAAAADOAAAAAAAOAAAAAADOAAAAAAAOAAAAAACHAAAAAADHAAAAAAAHAAAAAADHAAAAAAAHAAAAAACHAAAAAACDgAAAAAACQAAAAABCQAAAAAACQAAAAABDgAAAAAAOAAAAAABOAAAAAACOAAAAAAAOAAAAAAAOAAAAAABDgAAAAAAHAAAAAAAHAAAAAAAHAAAAAACHAAAAAADHAAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAABCQAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAACCQAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACAAAAAAACAAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAABCQAAAAABCAAAAAAACQAAAAACCQAAAAAB
+ tiles: MwAAAAAAMwAAAAACMwAAAAAAMwAAAAACMwAAAAACMwAAAAAAMwAAAAABCQAAAAACCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAADMwAAAAADMwAAAAAAMwAAAAADMwAAAAADMwAAAAACCQAAAAADCQAAAAAACQAAAAABDgAAAAAANwAAAAABNwAAAAADNwAAAAAANwAAAAADCQAAAAACMwAAAAADMwAAAAABMwAAAAABMwAAAAABMwAAAAABMwAAAAADMwAAAAAACQAAAAAACQAAAAADCQAAAAAADgAAAAAANwAAAAADNwAAAAADNwAAAAADNwAAAAAADgAAAAAAMwAAAAACMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAACMwAAAAAAMwAAAAABCQAAAAABCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAAAMwAAAAAAMwAAAAACMwAAAAADMwAAAAADMwAAAAACCQAAAAAACQAAAAACCQAAAAADCQAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAACDgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAADHAAAAAABHAAAAAAAHAAAAAABHAAAAAABCQAAAAABCQAAAAACCQAAAAADDgAAAAAAOAAAAAABOAAAAAADOAAAAAAAOAAAAAACOAAAAAADHAAAAAACHAAAAAADHAAAAAADHAAAAAADHAAAAAAAHAAAAAADDgAAAAAACQAAAAADCQAAAAABCQAAAAABDgAAAAAAOAAAAAABOAAAAAAAOAAAAAADOAAAAAACOAAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAABOAAAAAAAOAAAAAADOAAAAAADOAAAAAABOAAAAAACHAAAAAACHAAAAAADHAAAAAAAHAAAAAABHAAAAAABHAAAAAADDgAAAAAACQAAAAADCQAAAAADCQAAAAADDgAAAAAAOAAAAAABOAAAAAAAOAAAAAADOAAAAAABOAAAAAACDgAAAAAAHAAAAAABHAAAAAABHAAAAAADHAAAAAADHAAAAAABDgAAAAAACQAAAAABCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAACCQAAAAABCQAAAAABCQAAAAACGwAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAABCQAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACAAAAAAACAAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAAACQAAAAAACAAAAAAACQAAAAADCQAAAAAB
version: 6
-2,-3:
ind: -2,-3
- tiles: DgAAAAAAHAAAAAABHAAAAAADHAAAAAACHAAAAAABHAAAAAADHAAAAAABHAAAAAADHAAAAAABHAAAAAADHAAAAAADHAAAAAABHAAAAAAAHAAAAAADIwAAAAABIwAAAAACDgAAAAAAHAAAAAACHAAAAAADHAAAAAAAHAAAAAAAHAAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAAAHAAAAAACHAAAAAADHAAAAAAADgAAAAAAIwAAAAACIwAAAAADDgAAAAAAHAAAAAAAHAAAAAAAHAAAAAADHAAAAAADHAAAAAAADgAAAAAAHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAABHAAAAAACHAAAAAADDgAAAAAAHAAAAAABHAAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAABHAAAAAABDgAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAACDgAAAAAAHAAAAAACHAAAAAACHAAAAAADHAAAAAADDgAAAAAAHAAAAAABCQAAAAACCQAAAAACCQAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAACCQAAAAABCQAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAADCQAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAADCQAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAABHAAAAAACDgAAAAAAMwAAAAAAMwAAAAAAMwAAAAADMwAAAAAAMwAAAAABDgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAADCQAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAAAMwAAAAAAMwAAAAACMwAAAAACMwAAAAAAMwAAAAABDgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAAACQAAAAACCQAAAAACHAAAAAABHAAAAAADHAAAAAADMwAAAAACMwAAAAABMwAAAAADMwAAAAACMwAAAAACDgAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAACCQAAAAAACQAAAAADCQAAAAAAHAAAAAADHAAAAAADHAAAAAABMwAAAAABMwAAAAABMwAAAAABMwAAAAADMwAAAAADDgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAADDgAAAAAADgAAAAAACQAAAAAAHAAAAAACHAAAAAAAHAAAAAAAMwAAAAACMwAAAAADMwAAAAACMwAAAAAAMwAAAAADMwAAAAADDgAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAAHAAAAAADCQAAAAABHAAAAAABHAAAAAAAHAAAAAADDgAAAAAADgAAAAAAMwAAAAADMwAAAAAAMwAAAAABDgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAADgAAAAAAHAAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAACMwAAAAADMwAAAAADMwAAAAAAMwAAAAABMwAAAAADMwAAAAADMwAAAAAACQAAAAACCQAAAAADCQAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAADHAAAAAAA
+ tiles: DgAAAAAAHAAAAAABHAAAAAABHAAAAAABHAAAAAABHAAAAAACHAAAAAABHAAAAAABHAAAAAADHAAAAAACHAAAAAACHAAAAAADHAAAAAADHAAAAAABIwAAAAACIwAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAABHAAAAAACHAAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAAAHAAAAAADHAAAAAADHAAAAAAADgAAAAAAIwAAAAACIwAAAAABDgAAAAAAHAAAAAADHAAAAAACHAAAAAAAHAAAAAADHAAAAAABDgAAAAAAHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAABHAAAAAADHAAAAAADDgAAAAAAHAAAAAAAHAAAAAABDgAAAAAAHAAAAAAAHAAAAAABHAAAAAAAHAAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAACHAAAAAAADgAAAAAAHAAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAADCQAAAAACCQAAAAACCQAAAAACCQAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAACCQAAAAABCQAAAAACCQAAAAACCQAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAADCQAAAAACCQAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAABCQAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAACCQAAAAACCQAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAADDgAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAACHAAAAAADDgAAAAAAMwAAAAABMwAAAAACMwAAAAAAMwAAAAAAMwAAAAACDgAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAACCQAAAAACCQAAAAABCQAAAAABCQAAAAAAMwAAAAADMwAAAAACMwAAAAADMwAAAAACMwAAAAADDgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAACCQAAAAABCQAAAAADHAAAAAACHAAAAAACHAAAAAACMwAAAAAAMwAAAAADMwAAAAAAMwAAAAADMwAAAAABDgAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAADCQAAAAABHAAAAAADHAAAAAAAHAAAAAAAMwAAAAACMwAAAAAAMwAAAAAAMwAAAAACMwAAAAACDgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAACQAAAAAAHAAAAAADHAAAAAAAHAAAAAADMwAAAAADMwAAAAABMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABDgAAAAAAHAAAAAAACQAAAAADHAAAAAAAHAAAAAAAHAAAAAABDgAAAAAADgAAAAAAMwAAAAABMwAAAAADMwAAAAADDgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAADgAAAAAAHAAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAADMwAAAAADMwAAAAAAMwAAAAABMwAAAAABMwAAAAACMwAAAAADMwAAAAAACQAAAAAACQAAAAAACQAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAADHAAAAAAAHAAAAAAD
version: 6
-2,-4:
ind: -2,-4
- tiles: DgAAAAAAHAAAAAACHAAAAAADOgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAACOgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHAAAAAADHAAAAAABHAAAAAADOgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAADOgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAAAOgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAABCQAAAAADCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAABHAAAAAAACQAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAAIwAAAAAAIwAAAAABDgAAAAAAOQAAAAADOQAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAABHAAAAAACHAAAAAAACQAAAAADCQAAAAAACQAAAAACDgAAAAAADgAAAAAAIwAAAAABIwAAAAAADgAAAAAADgAAAAAAIwAAAAABDgAAAAAAHAAAAAACHAAAAAABHAAAAAACHAAAAAABHAAAAAAACQAAAAABCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAAIwAAAAABDgAAAAAAIwAAAAAAIwAAAAACDgAAAAAAHAAAAAACHAAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAAIwAAAAAAIwAAAAABIwAAAAADIwAAAAACIwAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAAIwAAAAAAIwAAAAAAIwAAAAADIwAAAAADIwAAAAABDgAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAABCQAAAAABHAAAAAAAHAAAAAADHAAAAAADDgAAAAAADgAAAAAAIwAAAAADIwAAAAACIwAAAAACIwAAAAAAIwAAAAADDgAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAABCQAAAAADDgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAAHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAAAHAAAAAACHAAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAACHAAAAAADHAAAAAACHAAAAAAADgAAAAAAIwAAAAACIwAAAAAB
+ tiles: DgAAAAAAHAAAAAABHAAAAAABOgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAABOgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHAAAAAACHAAAAAAAHAAAAAACOgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAADOgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAABHAAAAAADOgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAAAHAAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAAACQAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAADHAAAAAACHAAAAAADCQAAAAABCQAAAAABCQAAAAACDgAAAAAADgAAAAAAIwAAAAACIwAAAAACDgAAAAAAOQAAAAAAOQAAAAADDgAAAAAAHAAAAAADHAAAAAADHAAAAAACHAAAAAABHAAAAAABCQAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAAIwAAAAADIwAAAAACDgAAAAAADgAAAAAAIwAAAAADDgAAAAAAHAAAAAADHAAAAAABHAAAAAABHAAAAAADHAAAAAABCQAAAAABCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAAIwAAAAACDgAAAAAAIwAAAAABIwAAAAABDgAAAAAAHAAAAAAAHAAAAAABCQAAAAABCQAAAAACCQAAAAADCQAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAAIwAAAAAAIwAAAAACIwAAAAADIwAAAAAAIwAAAAACDgAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAAAIwAAAAABIwAAAAABIwAAAAABDgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAAAHAAAAAADHAAAAAAAHAAAAAACDgAAAAAADgAAAAAAIwAAAAADIwAAAAACIwAAAAADIwAAAAABIwAAAAABDgAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAACCQAAAAACDgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAAHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAADHAAAAAAAHAAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAABHAAAAAAAHAAAAAADHAAAAAAADgAAAAAAIwAAAAADIwAAAAAA
version: 6
-2,-5:
ind: -2,-5
- tiles: CQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
+ tiles: CQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
-2,0:
ind: -2,0
- tiles: DgAAAAAAHAAAAAABHAAAAAABHAAAAAABHAAAAAABHAAAAAAAHAAAAAADHAAAAAADHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAAACQAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAAAHAAAAAABDgAAAAAAHAAAAAADHAAAAAADHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAAACQAAAAABDgAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAACHAAAAAABHAAAAAABHAAAAAADHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAABCQAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAADHAAAAAABDgAAAAAAHAAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAADHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAACHAAAAAABDgAAAAAAHAAAAAAAHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAAMwAAAAACHAAAAAABHAAAAAAAHAAAAAABHAAAAAABDgAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAAMwAAAAADMwAAAAABMwAAAAADHAAAAAADHAAAAAACHAAAAAADHAAAAAABHAAAAAACIwAAAAAAIwAAAAADIwAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAAMwAAAAABMwAAAAADMwAAAAACHAAAAAACHAAAAAADHAAAAAABHAAAAAAADgAAAAAAIwAAAAACIwAAAAABIwAAAAACDgAAAAAADgAAAAAADgAAAAAALwAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAACHAAAAAAAHAAAAAAAHAAAAAADHAAAAAACDgAAAAAAIwAAAAABIwAAAAAAIwAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAAQAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAD
+ tiles: DgAAAAAAHAAAAAACHAAAAAAAHAAAAAADHAAAAAACHAAAAAAAHAAAAAADHAAAAAABHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAACCQAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAAAHAAAAAADDgAAAAAAHAAAAAABHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAAHAAAAAACHAAAAAABHAAAAAAAHAAAAAACHAAAAAACHAAAAAADHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAADCQAAAAACDgAAAAAAHAAAAAABHAAAAAADHAAAAAACHAAAAAACDgAAAAAAHAAAAAACHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAACHAAAAAACHAAAAAABHAAAAAADHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAABHAAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAAMwAAAAACHAAAAAAAHAAAAAACHAAAAAABHAAAAAADDgAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAAMwAAAAABMwAAAAABMwAAAAABHAAAAAAAHAAAAAACHAAAAAAAHAAAAAABHAAAAAACIwAAAAABIwAAAAACIwAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAAMwAAAAABMwAAAAABMwAAAAADHAAAAAACHAAAAAADHAAAAAADHAAAAAADDgAAAAAAIwAAAAADIwAAAAACIwAAAAADDgAAAAAADgAAAAAADgAAAAAALwAAAAACDgAAAAAADgAAAAAAMwAAAAABMwAAAAAAHAAAAAACHAAAAAAAHAAAAAADHAAAAAACDgAAAAAAIwAAAAABIwAAAAADIwAAAAABDgAAAAAADgAAAAAADgAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAAQAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAC
version: 6
-2,1:
ind: -2,1
- tiles: DgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAAACQAAAAACGwAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAAACQAAAAABCQAAAAAACQAAAAADDgAAAAAAGwAAAAAADgAAAAAADgAAAAAAAQAAAAABDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAMQAAAAABMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAAQAAAAADDgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAQAAAAABAQAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAAQAAAAADAQAAAAADAQAAAAADAQAAAAAAAQAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAAQAAAAABAQAAAAABAQAAAAAADgAAAAAADgAAAAAA
+ tiles: DgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAADGwAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAACCQAAAAACCQAAAAABCQAAAAABDgAAAAAAGwAAAAAADgAAAAAADgAAAAAAAQAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAMQAAAAAAMQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAAQAAAAADDgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAAQAAAAABAQAAAAACAQAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAAQAAAAACAQAAAAABAQAAAAAAAQAAAAACAQAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAAQAAAAABAQAAAAACAQAAAAACDgAAAAAADgAAAAAA
version: 6
-2,2:
ind: -2,2
@@ -141,31 +141,31 @@ entities:
version: 6
-3,-1:
ind: -3,-1
- tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAACHAAAAAABGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAADHAAAAAACGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAHAAAAAACHAAAAAACCQAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAAACQAAAAABDgAAAAAAHAAAAAAAHAAAAAABLgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAACCQAAAAAACQAAAAAAHAAAAAADHAAAAAABLgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHQAAAAAAHQAAAAAACQAAAAACCQAAAAACCQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAAHAAAAAACHAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAAHAAAAAACHAAAAAADLgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAADHAAAAAABGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAADHAAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAHAAAAAABHAAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAADDgAAAAAAHAAAAAACHAAAAAABLgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAADCQAAAAADCQAAAAADHAAAAAABHAAAAAADLgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHQAAAAAAHQAAAAAACQAAAAACCQAAAAADCQAAAAABAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAAHAAAAAACHAAAAAABLgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAAHAAAAAACHAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAADDgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAA
version: 6
-3,-2:
ind: -3,-2
- tiles: CQAAAAABMwAAAAAAMwAAAAACMwAAAAAAMwAAAAACMwAAAAABMwAAAAADMwAAAAABMwAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAAMwAAAAACMwAAAAAAMwAAAAACCQAAAAADDgAAAAAAMwAAAAABMwAAAAACMwAAAAABMwAAAAABMwAAAAADMwAAAAACMwAAAAACCAAAAAAACAAAAAAACAAAAAAACQAAAAAAMwAAAAAAMwAAAAADDgAAAAAACQAAAAAADgAAAAAAMwAAAAAAMwAAAAADMwAAAAACMwAAAAAAMwAAAAACMwAAAAACMwAAAAABCAAAAAAACAAAAAAACAAAAAAACQAAAAACMwAAAAABMwAAAAABDgAAAAAACQAAAAADMwAAAAACMwAAAAADMwAAAAABMwAAAAACMwAAAAACMwAAAAADMwAAAAAAMwAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAACMwAAAAACMwAAAAABMwAAAAABCQAAAAACDgAAAAAAMwAAAAADMwAAAAAAMwAAAAADMwAAAAADMwAAAAACMwAAAAADMwAAAAACMwAAAAABMwAAAAABMwAAAAABMwAAAAADMwAAAAADMwAAAAABMwAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAAMwAAAAAAMwAAAAAAMwAAAAACMwAAAAABMwAAAAADMwAAAAAAMwAAAAABMwAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAACHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAAHAAAAAADDgAAAAAAMwAAAAADMwAAAAABMwAAAAAAMwAAAAACDgAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAADHAAAAAAAHAAAAAABHAAAAAAAHAAAAAADHAAAAAACDgAAAAAAMwAAAAAAMwAAAAACMwAAAAABMwAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAAACQAAAAADCQAAAAAAHAAAAAABHAAAAAABHAAAAAABDgAAAAAAHAAAAAACDgAAAAAAMwAAAAACMwAAAAADMwAAAAAAMwAAAAABDgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAADHAAAAAAAHAAAAAADHAAAAAADDgAAAAAAHAAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAAAHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAABGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAA
+ tiles: CQAAAAABMwAAAAACMwAAAAACMwAAAAACMwAAAAABMwAAAAABMwAAAAACMwAAAAABMwAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAACMwAAAAAAMwAAAAAAMwAAAAADCQAAAAACDgAAAAAAMwAAAAABMwAAAAABMwAAAAACMwAAAAAAMwAAAAABMwAAAAAAMwAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAACMwAAAAADMwAAAAAADgAAAAAACQAAAAABDgAAAAAAMwAAAAABMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAACMwAAAAADMwAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAAMwAAAAADMwAAAAACDgAAAAAACQAAAAACMwAAAAACMwAAAAACMwAAAAAAMwAAAAABMwAAAAABMwAAAAACMwAAAAADMwAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAAAMwAAAAACMwAAAAAAMwAAAAADCQAAAAABDgAAAAAAMwAAAAABMwAAAAABMwAAAAADMwAAAAAAMwAAAAACMwAAAAABMwAAAAABMwAAAAABMwAAAAADMwAAAAADMwAAAAAAMwAAAAACMwAAAAAAMwAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAAMwAAAAACMwAAAAACMwAAAAABMwAAAAADMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAAMwAAAAADMwAAAAACMwAAAAAAMwAAAAADDgAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAADCQAAAAAAHAAAAAACHAAAAAAAHAAAAAABHAAAAAABHAAAAAACDgAAAAAAMwAAAAABMwAAAAABMwAAAAAAMwAAAAADCQAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAABHAAAAAADHAAAAAABHAAAAAAADgAAAAAAHAAAAAACDgAAAAAAMwAAAAABMwAAAAADMwAAAAAAMwAAAAACDgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAADHAAAAAABHAAAAAADHAAAAAADDgAAAAAAHAAAAAABDgAAAAAAHAAAAAADHAAAAAACHAAAAAACHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAACHAAAAAADHAAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAA
version: 6
-3,-3:
ind: -3,-3
- tiles: DgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADHAAAAAABHAAAAAAAHAAAAAACHAAAAAADDgAAAAAAMwAAAAAAMwAAAAABMwAAAAABDgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADHAAAAAABHAAAAAABHAAAAAACHAAAAAADDgAAAAAAMwAAAAAAMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADHAAAAAABHAAAAAAAHAAAAAAAHAAAAAADDgAAAAAAMwAAAAABMwAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAABDgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADHAAAAAADHAAAAAABHAAAAAAAHAAAAAAADgAAAAAAMwAAAAACMwAAAAABDgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAADDgAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAACCQAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAADDgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAADCQAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAAACQAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAACCQAAAAADCQAAAAACCQAAAAABCQAAAAABCQAAAAACCQAAAAADCQAAAAABDgAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAACCQAAAAACDgAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAACCQAAAAABCQAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAADCQAAAAADCQAAAAABCQAAAAACCQAAAAAACQAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAACDgAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAACCQAAAAADDgAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAACDgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAAMwAAAAACMwAAAAACMwAAAAABMwAAAAACMwAAAAAAMwAAAAAAMwAAAAACMwAAAAADDgAAAAAACQAAAAABDgAAAAAAMwAAAAAAMwAAAAADMwAAAAADMwAAAAADMwAAAAACMwAAAAADMwAAAAADMwAAAAACMwAAAAACMwAAAAABMwAAAAAAMwAAAAACMwAAAAABMwAAAAAC
+ tiles: DgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADHAAAAAABHAAAAAABHAAAAAADHAAAAAADDgAAAAAAMwAAAAACMwAAAAABMwAAAAACDgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADHAAAAAACHAAAAAABHAAAAAAAHAAAAAADDgAAAAAAMwAAAAABMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABHAAAAAABHAAAAAACHAAAAAADHAAAAAABDgAAAAAAMwAAAAABMwAAAAADDgAAAAAADgAAAAAADgAAAAAAMQAAAAABDgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABHAAAAAACHAAAAAAAHAAAAAADHAAAAAACDgAAAAAAMwAAAAADMwAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAADDgAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAAACQAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAADDgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAABDgAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAACDgAAAAAACQAAAAADCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAACCQAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAADCQAAAAADDgAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAACDgAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAABCQAAAAABCQAAAAABCQAAAAABCQAAAAABCQAAAAABCQAAAAACDgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAADCQAAAAABDgAAAAAACQAAAAAACQAAAAABCQAAAAACDgAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAACCQAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAABDgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAAMwAAAAACMwAAAAACMwAAAAADMwAAAAAAMwAAAAADMwAAAAAAMwAAAAADMwAAAAAADgAAAAAACQAAAAADDgAAAAAAMwAAAAADMwAAAAADMwAAAAABMwAAAAABMwAAAAADMwAAAAACMwAAAAACMwAAAAACMwAAAAAAMwAAAAAAMwAAAAADMwAAAAABMwAAAAADMwAAAAAB
version: 6
-3,-4:
ind: -3,-4
- tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAADLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAACQAAAAADCQAAAAADCQAAAAADHAAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAAHAAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAJAAAAAAAJAAAAAAADgAAAAAAIwAAAAACIwAAAAAAIwAAAAACDgAAAAAACQAAAAADCQAAAAABCQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAIwAAAAAAIwAAAAABIwAAAAABDgAAAAAACQAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAAIwAAAAACIwAAAAADIwAAAAACDgAAAAAACQAAAAACCQAAAAABCQAAAAACGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAAHAAAAAABIwAAAAACIwAAAAABCQAAAAABCQAAAAACCQAAAAAACQAAAAACDgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAMQAAAAABMQAAAAACMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAADCQAAAAACCQAAAAAC
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAABLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAACQAAAAABCQAAAAADCQAAAAADHAAAAAADHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABHAAAAAADHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAJAAAAAAAJAAAAAAADgAAAAAAIwAAAAAAIwAAAAAAIwAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAIwAAAAADIwAAAAABIwAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAAIwAAAAACIwAAAAACIwAAAAABDgAAAAAACQAAAAADCQAAAAACCQAAAAADGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAAHAAAAAACIwAAAAADIwAAAAABCQAAAAADCQAAAAACCQAAAAADCQAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAADDgAAAAAACQAAAAADCQAAAAAACQAAAAADDgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAMQAAAAADMQAAAAACMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAADCQAAAAABCQAAAAAB
version: 6
-3,-5:
ind: -3,-5
- tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAABCQAAAAABCQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAAACQAAAAADCQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAADCQAAAAABCQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAACCQAAAAADCQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAAB
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAACCQAAAAABCQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAAACQAAAAADCQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAACCQAAAAACCQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAACCQAAAAADCQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAAA
version: 6
-3,0:
ind: -3,0
- tiles: LgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAADHAAAAAACDgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAACHAAAAAACDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAADHAAAAAACDgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAACDgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACDgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA
+ tiles: LgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAABHAAAAAACDgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAADHAAAAAACDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAAAHAAAAAACDgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAACDgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAADDgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA
version: 6
-3,1:
ind: -3,1
- tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAMwAAAAABDgAAAAAACQAAAAABDgAAAAAACQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAMwAAAAACDgAAAAAAMwAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAMwAAAAADMwAAAAABDgAAAAAACQAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAA
+ tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAMwAAAAADDgAAAAAACQAAAAADDgAAAAAACQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAMwAAAAABDgAAAAAAMwAAAAABDgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAMwAAAAADMwAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAA
version: 6
-3,2:
ind: -3,2
@@ -173,23 +173,23 @@ entities:
version: 6
-4,-1:
ind: -4,-1
- tiles: HAAAAAABDgAAAAAAHAAAAAAAHAAAAAABDgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAAHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAACCQAAAAACDgAAAAAADgAAAAAAHAAAAAAADgAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAAAHAAAAAACHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAAHAAAAAACHAAAAAADDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
+ tiles: HAAAAAAADgAAAAAAHAAAAAADHAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAAHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAAHAAAAAADDgAAAAAAHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAABHAAAAAAAHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAAHAAAAAACHAAAAAABDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
-4,-2:
ind: -4,-2
- tiles: LgAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAACDgAAAAAACQAAAAADCQAAAAABCQAAAAABDgAAAAAACQAAAAADDgAAAAAACQAAAAACCQAAAAACLAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABDgAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAADCQAAAAAACQAAAAADDgAAAAAACQAAAAAADgAAAAAACQAAAAACCQAAAAACLgAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADDgAAAAAACQAAAAADCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACLAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAABDgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAADLgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAABLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAADHAAAAAADDgAAAAAAHAAAAAADHAAAAAACHAAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAACHAAAAAACHAAAAAABHAAAAAAAHAAAAAADHAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAACHAAAAAACDgAAAAAAHAAAAAABHAAAAAACHAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAABHAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAA
+ tiles: LgAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAADCQAAAAABLAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABDgAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAABCQAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAACQAAAAAADgAAAAAACQAAAAACCQAAAAADLgAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACDgAAAAAACQAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAACLgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAADLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAACLgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAADLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAADHAAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAADHAAAAAACHAAAAAACHAAAAAABHAAAAAAAHAAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAABHAAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAACHAAAAAACHAAAAAADDgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAA
version: 6
-4,-3:
ind: -4,-3
- tiles: LAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAMQAAAAADDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAACLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAADLgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADLAAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAACQAAAAACLAAAAAAADgAAAAAACQAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAADLgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAACLAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAD
+ tiles: LAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAACLgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAACLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACLgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADLAAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAACLgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAACQAAAAACLAAAAAAADgAAAAAACQAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAACLAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAC
version: 6
-4,-4:
ind: -4,-4
- tiles: LAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAALAAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAACLAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAACLAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAAMQAAAAABDgAAAAAADgAAAAAA
+ tiles: LAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAALAAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAABLAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAAMQAAAAACDgAAAAAADgAAAAAA
version: 6
-5,-1:
ind: -5,-1
- tiles: LgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADOgAAAAAAOwAAAAAAOgAAAAAAMwAAAAACDgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAABOwAAAAAADgAAAAAADgAAAAAAOwAAAAAAOwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACOgAAAAAAOwAAAAAAOgAAAAAAMwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
+ tiles: LgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAAOgAAAAAAOwAAAAAAOgAAAAAAMwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAACOwAAAAAADgAAAAAADgAAAAAAOwAAAAAAOwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABOgAAAAAAOwAAAAAAOgAAAAAAMwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
-5,-2:
ind: -5,-2
@@ -205,31 +205,31 @@ entities:
version: 6
0,-1:
ind: 0,-1
- tiles: GwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAAHgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAAQAAAAAAAQAAAAABDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAAQAAAAACAQAAAAACDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAAQAAAAABAQAAAAABDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAAQAAAAABDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA
+ tiles: GwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAHgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAAQAAAAAAAQAAAAABDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAAQAAAAABAQAAAAACDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAAQAAAAABAQAAAAABDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAAQAAAAACDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA
version: 6
0,-2:
ind: 0,-2
- tiles: IQAAAAACIQAAAAACDgAAAAAADgAAAAAADgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABDwAAAAADDwAAAAADDwAAAAACCQAAAAABGwAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAACQAAAAAACQAAAAACCQAAAAABDwAAAAACMgAAAAAADwAAAAABCQAAAAADHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAADDwAAAAAADwAAAAACDwAAAAABCQAAAAABHgAAAAAAHgAAAAAADgAAAAAADgAAAAAAGwAAAAAAMgAAAAAAMgAAAAAAMgAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAADCQAAAAADCQAAAAABDgAAAAAAHAAAAAAAHAAAAAAAHAAAAAACDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAABDgAAAAAAHAAAAAAAHAAAAAACHAAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAABDgAAAAAADgAAAAAAHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAABCQAAAAABCQAAAAABCQAAAAAACQAAAAADCQAAAAABDgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAACCQAAAAAACQAAAAAACQAAAAADCQAAAAABDgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAACCQAAAAADCQAAAAACCQAAAAAACQAAAAADDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAACCQAAAAABCQAAAAACDgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAA
+ tiles: IQAAAAACIQAAAAADDgAAAAAADgAAAAAADgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAADwAAAAABDwAAAAADDwAAAAADCQAAAAADGwAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAACQAAAAAACQAAAAADCQAAAAADDwAAAAAAMgAAAAAADwAAAAAACQAAAAACHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABDwAAAAACDwAAAAAADwAAAAABCQAAAAACHgAAAAAAHgAAAAAADgAAAAAADgAAAAAAGwAAAAAAMgAAAAAAMgAAAAAAMgAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACDgAAAAAAHAAAAAABHAAAAAADHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAADCQAAAAADCQAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAABDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAACCQAAAAADDgAAAAAAHAAAAAACHAAAAAACHAAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAABCQAAAAABDgAAAAAADgAAAAAAHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAACCQAAAAADDgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAADDgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAAACQAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAADDgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAADCQAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAA
version: 6
0,-3:
ind: 0,-3
- tiles: CQAAAAADCQAAAAACCQAAAAABCQAAAAABCQAAAAABCQAAAAABCQAAAAADCQAAAAABCQAAAAAACQAAAAADCQAAAAADCQAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAACDgAAAAAAIwAAAAAAIwAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAABAQAAAAACDgAAAAAACQAAAAADCQAAAAAACQAAAAADDgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAAIwAAAAACIwAAAAACGwAAAAAADgAAAAAAGwAAAAAAAQAAAAABAQAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAACCQAAAAABDgAAAAAAIwAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAAACQAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACgAAAAAACgAAAAAACgAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAACCQAAAAABCQAAAAAACQAAAAACGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACgAAAAAACgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAABAQAAAAACAQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAAAQAAAAADDgAAAAAADgAAAAAAIwAAAAABGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAAPwAAAAAAPwAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAAIwAAAAACIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAACQAAAAACCQAAAAABCQAAAAADDgAAAAAAIwAAAAACIwAAAAAAIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAADgAAAAAAIwAAAAAAIwAAAAACIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAABDgAAAAAAIwAAAAACIwAAAAADIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACDgAAAAAADgAAAAAAIwAAAAADIwAAAAAAIQAAAAACIQAAAAADDgAAAAAADgAAAAAAGwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAAIQAAAAABIQAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAADCQAAAAADCQAAAAADCQAAAAABIQAAAAABIQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAACCQAAAAACCQAAAAABCQAAAAAB
+ tiles: CQAAAAADCQAAAAABCQAAAAABCQAAAAACCQAAAAACCQAAAAADCQAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAAACQAAAAACDgAAAAAACQAAAAACCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACDgAAAAAACQAAAAADCQAAAAADCQAAAAACDgAAAAAAIwAAAAACIwAAAAACDgAAAAAADgAAAAAADgAAAAAAAQAAAAACAQAAAAABDgAAAAAACQAAAAADCQAAAAABCQAAAAADDgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAAIwAAAAAAIwAAAAADGwAAAAAADgAAAAAAGwAAAAAAAQAAAAACAQAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAABCQAAAAABDgAAAAAAIwAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACgAAAAAACgAAAAAACgAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAAACQAAAAACCQAAAAADGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACgAAAAAACgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAADAQAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAACAQAAAAACDgAAAAAADgAAAAAAIwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAAPwAAAAAAPwAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAAIwAAAAABIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAACQAAAAAACQAAAAACCQAAAAAADgAAAAAAIwAAAAACIwAAAAAAIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAAADgAAAAAAIwAAAAACIwAAAAADIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAAADgAAAAAAIwAAAAADIwAAAAABIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAAIwAAAAAAIwAAAAABIQAAAAACIQAAAAADDgAAAAAADgAAAAAAGwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAABIQAAAAABDgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAAACQAAAAACCQAAAAABIQAAAAAAIQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAAACQAAAAABCQAAAAAB
version: 6
0,-4:
ind: 0,-4
- tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADDgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAACDgAAAAAACQAAAAADCQAAAAACCQAAAAABDgAAAAAAGwAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAABHAAAAAADDgAAAAAAHAAAAAABHAAAAAACHAAAAAADDgAAAAAACQAAAAAACQAAAAABCQAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAADHAAAAAACHAAAAAADHAAAAAAAHAAAAAACHAAAAAADCQAAAAAACQAAAAACCQAAAAAADgAAAAAAMQAAAAABDgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAACHAAAAAACDgAAAAAAHAAAAAAAHAAAAAADHAAAAAACDgAAAAAACQAAAAABCQAAAAABCQAAAAAADgAAAAAAMQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACDgAAAAAAMQAAAAABDgAAAAAADgAAAAAAIwAAAAABIwAAAAAAIwAAAAABIwAAAAAAAQAAAAAAAQAAAAACAQAAAAAAAQAAAAADAQAAAAABCQAAAAADCQAAAAADCQAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAADIwAAAAADIwAAAAADAQAAAAADAQAAAAADAQAAAAABAQAAAAADAQAAAAAACQAAAAADCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAIwAAAAACIwAAAAAAIwAAAAAAIwAAAAACAQAAAAADAQAAAAADAQAAAAACAQAAAAABAQAAAAABCQAAAAABCQAAAAAACQAAAAABDgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIwAAAAAAIwAAAAABIwAAAAACIwAAAAADDgAAAAAAAQAAAAABAQAAAAAAAQAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABDgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAACCQAAAAACCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAACCQAAAAABCQAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAABCQAAAAACCQAAAAACDgAAAAAACQAAAAACCQAAAAACCQAAAAAC
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAABDgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAAGwAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAACHAAAAAABDgAAAAAAHAAAAAACHAAAAAAAHAAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACGwAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAAAHAAAAAAAHAAAAAABHAAAAAABHAAAAAADHAAAAAABCQAAAAADCQAAAAABCQAAAAADDgAAAAAAMQAAAAADDgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAACHAAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAADDgAAAAAACQAAAAAACQAAAAAACQAAAAACDgAAAAAAMQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAADgAAAAAAMQAAAAACDgAAAAAADgAAAAAAIwAAAAABIwAAAAADIwAAAAADIwAAAAAAAQAAAAADAQAAAAACAQAAAAAAAQAAAAABAQAAAAADCQAAAAADCQAAAAACCQAAAAACDgAAAAAAMQAAAAADDgAAAAAADgAAAAAAIwAAAAAAIwAAAAAAIwAAAAACIwAAAAAAAQAAAAADAQAAAAABAQAAAAACAQAAAAADAQAAAAABCQAAAAABCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAIwAAAAABIwAAAAAAIwAAAAAAIwAAAAABAQAAAAADAQAAAAADAQAAAAACAQAAAAAAAQAAAAACCQAAAAACCQAAAAADCQAAAAADDgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIwAAAAACIwAAAAAAIwAAAAABIwAAAAAADgAAAAAAAQAAAAACAQAAAAADAQAAAAACDgAAAAAACQAAAAACCQAAAAACCQAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAACCQAAAAABCQAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAACCQAAAAADDgAAAAAACQAAAAABCQAAAAACCQAAAAAB
version: 6
0,-5:
ind: 0,-5
- tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAADCQAAAAAACQAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAABDgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABDgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAACDgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABDgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAABCQAAAAABCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAACCQAAAAACCQAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACDgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAACDgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADDgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAACCQAAAAACCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAA
version: 6
0,0:
ind: 0,0
- tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAALAAAAAAAMAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAACLgAAAAAALAAAAAAALAAAAAAAMAAAAAAADgAAAAAADgAAAAAAMAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAACCQAAAAACCQAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAABCQAAAAABCQAAAAABCQAAAAABCQAAAAACCQAAAAABCQAAAAADCQAAAAADLwAAAAABLwAAAAACLwAAAAAALwAAAAABLwAAAAACLwAAAAADLwAAAAADLwAAAAADLwAAAAACLwAAAAADLwAAAAADLwAAAAACLwAAAAABLwAAAAAADgAAAAAALwAAAAADCQAAAAADCQAAAAADCQAAAAACCQAAAAABCQAAAAABCQAAAAACCQAAAAABCQAAAAACCQAAAAADCQAAAAACCQAAAAABCQAAAAABCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAACDgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAAACQAAAAADDgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADGwAAAAAADgAAAAAADgAAAAAA
+ tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAALAAAAAAAMAAAAAAGLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAAALgAAAAAALAAAAAAALAAAAAAAMAAAAAAADgAAAAAADgAAAAAAMAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAACCQAAAAAACQAAAAAACQAAAAABLwAAAAADLwAAAAADLwAAAAADLwAAAAADLwAAAAAALwAAAAACLwAAAAAALwAAAAABLwAAAAADLwAAAAADLwAAAAAALwAAAAAALwAAAAAALwAAAAAADgAAAAAALwAAAAADCQAAAAABCQAAAAABCQAAAAABCQAAAAACCQAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAADCQAAAAADCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAACDgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAACDgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADGwAAAAAADgAAAAAADgAAAAAA
version: 6
0,1:
ind: 0,1
- tiles: CQAAAAABCQAAAAADCQAAAAABCQAAAAACCQAAAAACCQAAAAADCQAAAAACCQAAAAABCQAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAAGwAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAADCQAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAADCQAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADDgAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAABCQAAAAABCQAAAAADCQAAAAABCQAAAAACCQAAAAACCQAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAABCQAAAAADCQAAAAADCQAAAAACDgAAAAAAHAAAAAADHAAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAADHAAAAAABDgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAAAHAAAAAABHAAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAA
+ tiles: CQAAAAABCQAAAAADCQAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAABCQAAAAABDgAAAAAADgAAAAAAGwAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAACCQAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAABCQAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAACCQAAAAADCQAAAAAACQAAAAAACQAAAAACDgAAAAAAHAAAAAADHAAAAAADHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAACHAAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAADHAAAAAAAHAAAAAADDgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAA
version: 6
0,2:
ind: 0,2
@@ -237,19 +237,19 @@ entities:
version: 6
1,-1:
ind: 1,-1
- tiles: HgAAAAAADgAAAAAASgAAAAACHAAAAAAAHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAASgAAAAAASgAAAAAASgAAAAADSgAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABDgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABDgAAAAAAHAAAAAACHAAAAAADCQAAAAACCQAAAAADDgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAABDgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACDgAAAAAAGwAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACDgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAAwAAAAACAwAAAAABGwAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAAHgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADGwAAAAAADgAAAAAADgAAAAAAAwAAAAAAHAAAAAACHAAAAAABHAAAAAADDgAAAAAAHAAAAAAAHAAAAAACHAAAAAAAHAAAAAABHAAAAAADDgAAAAAACQAAAAADCQAAAAAD
+ tiles: HgAAAAAADgAAAAAASgAAAAABHAAAAAAAHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAASgAAAAAASgAAAAACSgAAAAACSgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAADCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADDgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABDgAAAAAAHAAAAAACHAAAAAACCQAAAAABCQAAAAACDgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAACDgAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAAGwAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACDgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAwAAAAABAwAAAAABGwAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAAHgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACGwAAAAAADgAAAAAADgAAAAAAAwAAAAADHAAAAAADHAAAAAABHAAAAAADDgAAAAAAHAAAAAACHAAAAAACHAAAAAABHAAAAAAAHAAAAAABDgAAAAAACQAAAAADCQAAAAAD
version: 6
1,-2:
ind: 1,-2
- tiles: CQAAAAAACQAAAAACDgAAAAAAHAAAAAADHAAAAAADHAAAAAABCQAAAAABCQAAAAACCQAAAAABCQAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAAHAAAAAADHAAAAAACHAAAAAADCQAAAAADCQAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAACCQAAAAAACQAAAAADDgAAAAAACQAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAABDgAAAAAACQAAAAABCQAAAAABDgAAAAAAHAAAAAABHAAAAAABHAAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAABDgAAAAAAHAAAAAACDgAAAAAAHAAAAAACCQAAAAABDwAAAAACCQAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAAADgAAAAAAHAAAAAAADgAAAAAAHAAAAAAACQAAAAACDwAAAAABCQAAAAADCQAAAAADHAAAAAADHAAAAAABHAAAAAACHAAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAADHAAAAAACDgAAAAAAHAAAAAACCQAAAAADCQAAAAACCQAAAAADHAAAAAACDgAAAAAAHAAAAAADHAAAAAADHAAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAADCQAAAAACCQAAAAADCQAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAABCQAAAAABCQAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAABCQAAAAACCQAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAADDgAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAADCQAAAAACCQAAAAACCQAAAAACCQAAAAACCQAAAAACCQAAAAABCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAABDgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAACQAAAAACCQAAAAAC
+ tiles: CQAAAAADCQAAAAACDgAAAAAAHAAAAAABHAAAAAADHAAAAAADCQAAAAADCQAAAAAACQAAAAABCQAAAAACDgAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAAHAAAAAABHAAAAAABHAAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAACCQAAAAACCQAAAAAACQAAAAADDgAAAAAACQAAAAABDgAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAAHAAAAAABHAAAAAAAHAAAAAADDgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABDgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAACDgAAAAAAHAAAAAABDgAAAAAAHAAAAAACCQAAAAACDwAAAAADCQAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAACDgAAAAAAHAAAAAAADgAAAAAAHAAAAAABCQAAAAADDwAAAAAACQAAAAADCQAAAAADHAAAAAABHAAAAAABHAAAAAAAHAAAAAADCQAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAAAHAAAAAABDgAAAAAAHAAAAAACCQAAAAADCQAAAAAACQAAAAAAHAAAAAADDgAAAAAAHAAAAAACHAAAAAACHAAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAADCQAAAAABCQAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAACCQAAAAACDgAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAACCQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAACHAAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAAB
version: 6
1,-3:
ind: 1,-3
- tiles: DgAAAAAAIwAAAAABIwAAAAAAIwAAAAACIwAAAAADIwAAAAACDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAACIwAAAAABIwAAAAABIwAAAAABDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAAIwAAAAAAIwAAAAACIwAAAAACDgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAAIwAAAAADIwAAAAACIwAAAAABIwAAAAACJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAAAIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACIwAAAAADIwAAAAACIwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAIwAAAAACIwAAAAABIwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAABDgAAAAAADgAAAAAAIwAAAAADIwAAAAAAIwAAAAABIwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAABAAAAAAACQAAAAAACQAAAAAACQAAAAAADgAAAAAAIwAAAAADIwAAAAACIwAAAAADIwAAAAACDgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAABCQAAAAADDgAAAAAAIwAAAAADIwAAAAACIwAAAAADIwAAAAACJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAAIwAAAAAAIwAAAAACIwAAAAABIwAAAAADDgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAAAHAAAAAADHAAAAAADHAAAAAABDgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAACHAAAAAADHAAAAAABHAAAAAACCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAAAHAAAAAAAHAAAAAADHAAAAAACCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAA
+ tiles: DgAAAAAAIwAAAAACIwAAAAAAIwAAAAABIwAAAAABIwAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAAAIwAAAAAAIwAAAAACIwAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAAIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAAIwAAAAADIwAAAAABIwAAAAABDgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABIwAAAAAAIwAAAAABIwAAAAADIwAAAAABJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAABIwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAACJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADIwAAAAACIwAAAAACIwAAAAADJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACIwAAAAADIwAAAAABIwAAAAABJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAABDgAAAAAADgAAAAAAIwAAAAACIwAAAAAAIwAAAAADIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAABAAAAAACCQAAAAAACQAAAAABCQAAAAADDgAAAAAAIwAAAAABIwAAAAAAIwAAAAACIwAAAAABDgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAABDgAAAAAAIwAAAAABIwAAAAABIwAAAAAAIwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAAIwAAAAADIwAAAAACIwAAAAABIwAAAAADDgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAACHAAAAAABHAAAAAACHAAAAAABDgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAAAHAAAAAAAHAAAAAABHAAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAACHAAAAAAAHAAAAAABHAAAAAADCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAA
version: 6
1,-4:
ind: 1,-4
- tiles: DgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAAIwAAAAABIwAAAAACDgAAAAAAMwAAAAACMwAAAAAADgAAAAAAQQAAAAAAQQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAADDgAAAAAAIwAAAAADIwAAAAADDgAAAAAAMwAAAAAAMwAAAAABDgAAAAAAQQAAAAABQQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAABDgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAADMQAAAAABDgAAAAAAMQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAABMQAAAAAAMQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAADIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAAAIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAMwAAAAAAMwAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAACIwAAAAACIwAAAAAAIwAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAADIwAAAAACIwAAAAADIwAAAAAAIwAAAAADDgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAIwAAAAADIwAAAAABIwAAAAACIwAAAAABIwAAAAABDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAABDgAAAAAALAAAAAAALAAAAAAA
+ tiles: DgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAMQAAAAACDgAAAAAAIwAAAAACIwAAAAAADgAAAAAAMwAAAAABMwAAAAACDgAAAAAAQQAAAAACQQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAABDgAAAAAAIwAAAAAAIwAAAAAADgAAAAAAMwAAAAADMwAAAAACDgAAAAAAQQAAAAAAQQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAADMQAAAAABDgAAAAAAMQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAADMQAAAAAAMQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAABIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAADIwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAMwAAAAABMwAAAAADDgAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAADIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAABIwAAAAABIwAAAAADIwAAAAADDgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAABIwAAAAACIwAAAAADIwAAAAADIwAAAAACDgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAIwAAAAABIwAAAAADIwAAAAAAIwAAAAAAIwAAAAADDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAABDgAAAAAALAAAAAAALAAAAAAA
version: 6
1,-5:
ind: 1,-5
@@ -257,11 +257,11 @@ entities:
version: 6
1,0:
ind: 1,0
- tiles: DgAAAAAADgAAAAAAAwAAAAABAwAAAAACHAAAAAADHAAAAAADHAAAAAACDgAAAAAAHAAAAAACHAAAAAADHAAAAAAAHAAAAAAAHAAAAAADDgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAAAwAAAAACAwAAAAADHAAAAAABHAAAAAABHAAAAAACDgAAAAAAHAAAAAACHAAAAAADHAAAAAACHAAAAAADCQAAAAAACQAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAABHAAAAAABHAAAAAACDgAAAAAAHAAAAAAAHAAAAAACHAAAAAADHAAAAAACCQAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAADHAAAAAACHAAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAAAHAAAAAADHAAAAAADDgAAAAAACQAAAAABCQAAAAAAGwAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAABCQAAAAABCQAAAAACCQAAAAADCQAAAAABCQAAAAACCQAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAACDgAAAAAACQAAAAABHAAAAAACHAAAAAABCQAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAABCQAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAACCQAAAAACHAAAAAADDgAAAAAACQAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAACCQAAAAACCQAAAAACCQAAAAADCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAACQAAAAADLwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAAHgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAAB
+ tiles: DgAAAAAADgAAAAAAAwAAAAACAwAAAAADHAAAAAAAHAAAAAABHAAAAAADDgAAAAAAHAAAAAADHAAAAAACHAAAAAAAHAAAAAABHAAAAAABDgAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAAAwAAAAAAAwAAAAADHAAAAAADHAAAAAACHAAAAAABDgAAAAAAHAAAAAABHAAAAAAAHAAAAAACHAAAAAACCQAAAAACCQAAAAACCQAAAAACCQAAAAADDgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAAAHAAAAAABHAAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAABHAAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAABDgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAADHAAAAAACHAAAAAACDgAAAAAAHAAAAAABHAAAAAADHAAAAAADHAAAAAABHAAAAAAADgAAAAAACQAAAAAACQAAAAACGwAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAACCQAAAAACCQAAAAADCQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAABCQAAAAABDgAAAAAACQAAAAABHAAAAAABHAAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAADCQAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAADCQAAAAABCQAAAAADCQAAAAADCQAAAAACCQAAAAABCQAAAAADCQAAAAADCQAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAADCQAAAAACCQAAAAACCQAAAAADCQAAAAADCQAAAAACCQAAAAABCQAAAAACCQAAAAAACQAAAAACHAAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAACQAAAAADLwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAACDgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAAC
version: 6
1,1:
ind: 1,1
- tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAACDgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAAACQAAAAADCQAAAAABDgAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAAACQAAAAABCQAAAAACBAAAAAAACQAAAAAACQAAAAABCQAAAAADGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAAACQAAAAADCQAAAAADRwAAAAAARwAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAABAAAAAABCQAAAAADCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAAGwAAAAAALAAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
+ tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAADCQAAAAAACQAAAAABDgAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAABGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAAACQAAAAADCQAAAAAABAAAAAADCQAAAAAACQAAAAADCQAAAAADGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAAACQAAAAAACQAAAAACRwAAAAABRwAAAAACCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAABAAAAAACCQAAAAABCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAAGwAAAAAALAAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
1,2:
ind: 1,2
@@ -269,55 +269,55 @@ entities:
version: 6
2,-1:
ind: 2,-1
- tiles: CQAAAAADDgAAAAAAQAAAAAAAQAAAAAADDwAAAAABQAAAAAACQAAAAAAAQAAAAAADQAAAAAADDgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAAACQAAAAABDgAAAAAAQAAAAAABQAAAAAADDwAAAAACQAAAAAAAQAAAAAADDgAAAAAAQAAAAAABDgAAAAAALAAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAAQAAAAAAAQAAAAAAADwAAAAACQAAAAAACQAAAAAABQAAAAAAAQAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARAAAAAAACQAAAAAADgAAAAAAQAAAAAADQAAAAAACQAAAAAACQAAAAAABQAAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAADDgAAAAAADgAAAAAAGwAAAAAARAAAAAAACQAAAAABDgAAAAAAIwAAAAACIwAAAAADIwAAAAAAIwAAAAADIwAAAAABDgAAAAAAHAAAAAADHAAAAAABHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAARAAAAAAACQAAAAABDgAAAAAAIwAAAAACIwAAAAACIwAAAAABIwAAAAADIwAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAAIwAAAAABIwAAAAACIwAAAAABIwAAAAACIwAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAACQAAAAAACQAAAAABDgAAAAAAHAAAAAACHAAAAAABHAAAAAACHAAAAAABHAAAAAACHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACCQAAAAADCQAAAAADDgAAAAAAHAAAAAAAHAAAAAACHAAAAAAAHAAAAAABHAAAAAADHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAAACAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAADCAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAAGwAAAAAACQAAAAADCAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAACQAAAAABCAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAACQAAAAAACAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAA
+ tiles: CQAAAAADDgAAAAAAQAAAAAACQAAAAAACDwAAAAABQAAAAAAAQAAAAAABQAAAAAADQAAAAAADDgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAACCQAAAAACDgAAAAAAQAAAAAAAQAAAAAABDwAAAAACQAAAAAABQAAAAAACDgAAAAAAQAAAAAACDgAAAAAALAAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAAQAAAAAADQAAAAAACDwAAAAAAQAAAAAADQAAAAAADQAAAAAACQAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARAAAAAAACQAAAAACDgAAAAAAQAAAAAACQAAAAAADQAAAAAACQAAAAAADQAAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAADDgAAAAAADgAAAAAAGwAAAAAARAAAAAAACQAAAAABDgAAAAAAIwAAAAAAIwAAAAACIwAAAAADIwAAAAABIwAAAAADDgAAAAAAHAAAAAADHAAAAAACHAAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAARAAAAAAACQAAAAADDgAAAAAAIwAAAAADIwAAAAACIwAAAAABIwAAAAAAIwAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAAIwAAAAAAIwAAAAAAIwAAAAABIwAAAAABIwAAAAACDgAAAAAAHAAAAAABHAAAAAACHAAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABCQAAAAADCQAAAAADDgAAAAAAHAAAAAABHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAADHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAACQAAAAABCQAAAAAADgAAAAAAHAAAAAACHAAAAAACHAAAAAABHAAAAAAAHAAAAAABHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAACCAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAAGwAAAAAACQAAAAABCAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAACQAAAAACCAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAACQAAAAADCAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAA
version: 6
2,-2:
ind: 2,-2
- tiles: CQAAAAADCQAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAACCQAAAAADGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAABDgAAAAAAOQAAAAAAOQAAAAAAOQAAAAABOQAAAAABDgAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOQAAAAABOQAAAAADOQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAABCQAAAAAAOQAAAAAAOQAAAAABOQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAACQAAAAAARQAAAAAARQAAAAAARQAAAAAACQAAAAABHAAAAAADHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACRQAAAAAARQAAAAAARQAAAAAACQAAAAACHAAAAAAAHAAAAAACHAAAAAACDgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAACCQAAAAADRQAAAAAARQAAAAAARQAAAAAACQAAAAADHAAAAAAAHAAAAAAAHAAAAAADDgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAABGgAAAAABLwAAAAACDgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACGgAAAAADDgAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAACCQAAAAABCQAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAADCQAAAAABGgAAAAADLwAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAADCQAAAAACCQAAAAADCQAAAAABCQAAAAAACQAAAAADCQAAAAABCQAAAAADGgAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAABCQAAAAABCQAAAAABCQAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAABGgAAAAABLwAAAAAACQAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAAGgAAAAACDgAAAAAACQAAAAAADgAAAAAAQAAAAAABQAAAAAACQAAAAAACQAAAAAAAQAAAAAACQAAAAAADDgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAADGgAAAAABLwAAAAADCQAAAAADDgAAAAAAQAAAAAACQAAAAAADQAAAAAABQAAAAAABQAAAAAADQAAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAABDgAAAAAAQAAAAAACQAAAAAACDwAAAAAAQAAAAAACQAAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAAC
+ tiles: CQAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAACDgAAAAAAOQAAAAAAOQAAAAACOQAAAAADOQAAAAADDgAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOQAAAAADOQAAAAACOQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAAACQAAAAABOQAAAAABOQAAAAACOQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAACQAAAAAARQAAAAAARQAAAAAARQAAAAAACQAAAAAAHAAAAAABHAAAAAADHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACRQAAAAAARQAAAAAARQAAAAAACQAAAAADHAAAAAACHAAAAAABHAAAAAACDgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAABCQAAAAAARQAAAAAARQAAAAAARQAAAAAACQAAAAACHAAAAAABHAAAAAAAHAAAAAADDgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAABGgAAAAABLwAAAAACDgAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAAGgAAAAADDgAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAADCQAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAADCQAAAAACCQAAAAABCQAAAAADCQAAAAADCQAAAAAAGgAAAAAALwAAAAACCQAAAAABCQAAAAADCQAAAAACCQAAAAABCQAAAAADCQAAAAACCQAAAAADCQAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAADGgAAAAADCQAAAAADCQAAAAABCQAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAADCQAAAAABCQAAAAABCQAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAAACQAAAAADGgAAAAABLwAAAAABCQAAAAABDgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADGgAAAAABDgAAAAAACQAAAAAADgAAAAAAQAAAAAABQAAAAAADQAAAAAADQAAAAAADQAAAAAACQAAAAAACDgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAABGgAAAAACLwAAAAABCQAAAAADDgAAAAAAQAAAAAADQAAAAAAAQAAAAAABQAAAAAAAQAAAAAADQAAAAAACDgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAABDgAAAAAAQAAAAAACQAAAAAAADwAAAAAAQAAAAAAAQAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAB
version: 6
2,-3:
ind: 2,-3
- tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAACHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAADHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAIQAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAABCQAAAAACCQAAAAACCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAACDgAAAAAAHAAAAAADCQAAAAABCQAAAAACCQAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAACDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAABDgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAACIQAAAAADIQAAAAACDgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAADCQAAAAAACQAAAAAACQAAAAACGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAACDgAAAAAADgAAAAAAAwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAADCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAADDgAAAAAA
+ tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAAHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAACHAAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAIQAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAACCQAAAAAACQAAAAABCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAABDgAAAAAAHAAAAAABCQAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAADCQAAAAABDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAADDgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAABIQAAAAACIQAAAAACDgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAADCQAAAAADCQAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACDgAAAAAADgAAAAAAAwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAABDgAAAAAA
version: 6
2,-4:
ind: 2,-4
- tiles: DgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAOwAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAAMQAAAAABMQAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADDgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAABMwAAAAACMwAAAAACDgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAA
+ tiles: DgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAOwAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAAMQAAAAACMQAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADDgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAAAMwAAAAADMwAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAA
version: 6
2,-5:
ind: 2,-5
- tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAARwAAAAACLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAABLgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAARwAAAAABLAAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAADRwAAAAACLAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAACDgAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAARwAAAAACLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAARwAAAAACLAAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAADRwAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAAADgAAAAAA
version: 6
2,0:
ind: 2,0
- tiles: CQAAAAAACAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAAHgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAAHgAAAAAAHgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAABCQAAAAACDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAADGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAADDgAAAAAACQAAAAACCQAAAAACDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAACDgAAAAAAIwAAAAAADgAAAAAAIwAAAAADDgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAAIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAADDgAAAAAADgAAAAAAHgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAACCQAAAAABDgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAA
+ tiles: CQAAAAACCAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAAHgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAAHgAAAAAAHgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAACCQAAAAACDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAABGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAACDgAAAAAACQAAAAACCQAAAAABDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAABDgAAAAAAIwAAAAABDgAAAAAAIwAAAAACDgAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAAIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAAHgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAAHgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAAACQAAAAABDgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAA
version: 6
2,1:
ind: 2,1
- tiles: CQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAACQAAAAADCQAAAAAABAAAAAABCQAAAAABDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAABAAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAABAAAAAACCQAAAAACDgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAARwAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAABRwAAAAACGwAAAAAAGwAAAAAAGwAAAAAACQAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAACQAAAAABDgAAAAAADgAAAAAARwAAAAABDgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
+ tiles: CQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAACQAAAAAACQAAAAADBAAAAAABCQAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAABAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAABAAAAAADCQAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAARwAAAAABDgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAADCQAAAAACRwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAADDgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAACQAAAAACDgAAAAAADgAAAAAARwAAAAACDgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
3,-1:
ind: 3,-1
- tiles: CQAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARAAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARAAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAA
+ tiles: CQAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARAAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARAAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAA
version: 6
3,-2:
ind: 3,-2
- tiles: DgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADDgAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAADGwAAAAAADgAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAADLwAAAAADLwAAAAABLwAAAAACGgAAAAAACQAAAAACGwAAAAAADgAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACAAAAAAACAAAAAAACAAAAAAADgAAAAAAGgAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAABLwAAAAACLwAAAAACLwAAAAADGgAAAAADCQAAAAACCQAAAAAACQAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAACGgAAAAABCQAAAAAACQAAAAACCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAABLwAAAAACLwAAAAABLwAAAAABGgAAAAADCQAAAAACCQAAAAADCQAAAAABDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACAAAAAAACAAAAAAACAAAAAAADgAAAAAAGgAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAACLwAAAAACLwAAAAADLwAAAAADGgAAAAACCQAAAAADGwAAAAAADgAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAAACQAAAAABCQAAAAACGwAAAAAADgAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
+ tiles: DgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABDgAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAABGwAAAAAADgAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAACLwAAAAABLwAAAAABLwAAAAADGgAAAAABCQAAAAACGwAAAAAADgAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACAAAAAAACAAAAAAACAAAAAAADgAAAAAAGgAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAAALwAAAAADLwAAAAADLwAAAAABGgAAAAAACQAAAAAACQAAAAADCQAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAABGgAAAAACCQAAAAACCQAAAAACCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAACLwAAAAADLwAAAAAALwAAAAADGgAAAAAACQAAAAACCQAAAAAACQAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACAAAAAAACAAAAAAACAAAAAAADgAAAAAAGgAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAABLwAAAAAALwAAAAADLwAAAAAAGgAAAAACCQAAAAADGwAAAAAADgAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAADCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAADCQAAAAADCQAAAAADGwAAAAAADgAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
3,-3:
ind: 3,-3
- tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAASAAAAAACSAAAAAADSAAAAAADDgAAAAAAHAAAAAABDgAAAAAAHAAAAAABDgAAAAAAHAAAAAABLAAAAAAALAAAAAAARwAAAAABDgAAAAAADgAAAAAAHAAAAAAAHAAAAAAASAAAAAABSAAAAAACSAAAAAACHAAAAAADHAAAAAACDgAAAAAAHAAAAAACSQAAAAAASQAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAASAAAAAAASAAAAAACSAAAAAAAHAAAAAADHAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAASQAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAACDgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAABLAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
+ tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAASAAAAAABSAAAAAADSAAAAAAADgAAAAAAHAAAAAADDgAAAAAAHAAAAAABDgAAAAAAHAAAAAACLAAAAAAALAAAAAAARwAAAAACDgAAAAAADgAAAAAAHAAAAAACHAAAAAACSAAAAAACSAAAAAABSAAAAAACHAAAAAABHAAAAAAADgAAAAAAHAAAAAADSQAAAAAASQAAAAACLAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAASAAAAAACSAAAAAABSAAAAAADHAAAAAAAHAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAASQAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAAHAAAAAACHAAAAAADHAAAAAADHAAAAAABDgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAABLAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
3,-4:
ind: 3,-4
- tiles: DgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAADDgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAHAAAAAADDgAAAAAAGwAAAAAADgAAAAAAMQAAAAABDgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAMwAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAACDgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAAGwAAAAAADgAAAAAARgAAAAAARgAAAAADGwAAAAAARgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAACMwAAAAABDgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAACMwAAAAADMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAMwAAAAACMwAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACDgAAAAAAMwAAAAABDgAAAAAAMwAAAAACDgAAAAAAMwAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAMwAAAAABMwAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAACMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAABMwAAAAADDgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAA
+ tiles: DgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAACDgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAHAAAAAABDgAAAAAAGwAAAAAADgAAAAAAMQAAAAACDgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAMwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAABDgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAAGwAAAAAADgAAAAAARgAAAAACRgAAAAABGwAAAAAARgAAAAADDgAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAACMwAAAAACDgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAACMwAAAAACMwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAMwAAAAAAMwAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABDgAAAAAAMwAAAAACDgAAAAAAMwAAAAABDgAAAAAAMwAAAAADDgAAAAAAGwAAAAAADgAAAAAALgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAMwAAAAACMwAAAAACDgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAAAMwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAACMwAAAAACDgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAA
version: 6
3,-5:
ind: 3,-5
- tiles: DgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAAAMwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAADDgAAAAAARwAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAMwAAAAACMwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAARwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAAPAAAAAABLAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAARwAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAA
+ tiles: DgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAABMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAABDgAAAAAARwAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAMwAAAAADMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAARwAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAACLAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAAPAAAAAACLAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAARwAAAAABLAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAA
version: 6
3,0:
ind: 3,0
- tiles: LAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAAIwAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAAIwAAAAADIwAAAAABIwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAIwAAAAADIwAAAAABDgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAIwAAAAACIwAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
+ tiles: LAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAAIwAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAAIwAAAAAAIwAAAAABIwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAIwAAAAAAIwAAAAADDgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAIwAAAAAAIwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
3,1:
ind: 3,1
@@ -329,7 +329,7 @@ entities:
version: 6
5,-2:
ind: 5,-2
- tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAPQAAAAABDgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAPQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAPQAAAAADPQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAQAAAAAACDgAAAAAAQAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAPQAAAAAADgAAAAAAQAAAAAAAQAAAAAABQAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQAAAAAAADgAAAAAARwAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAQAAAAAACQAAAAAADQAAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAQAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAAHAAAAAABRwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAACMwAAAAADDgAAAAAAMwAAAAACDgAAAAAADgAAAAAALAAAAAAADgAAAAAAQAAAAAAADgAAAAAALAAAAAAALAAAAAAAQAAAAAADDgAAAAAALgAAAAAALAAAAAAADgAAAAAAMwAAAAACMwAAAAAAMwAAAAADDgAAAAAALAAAAAAALgAAAAAADgAAAAAAQAAAAAAAQAAAAAACDgAAAAAAQAAAAAACQAAAAAACLAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAADHAAAAAABDgAAAAAADgAAAAAAHAAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAADHAAAAAADDgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAAHAAAAAADDgAAAAAAHAAAAAADHAAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAACLAAAAAAALAAAAAAADgAAAAAADgAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAPQAAAAADDgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAQAAAAAADQAAAAAACQAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAPQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAPQAAAAABPQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQAAAAAADDgAAAAAAQAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAPQAAAAABDgAAAAAAQAAAAAABQAAAAAADQAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQAAAAAADDgAAAAAARwAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAQAAAAAACQAAAAAACQAAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAQAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAAHAAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAABMwAAAAAADgAAAAAAMwAAAAABDgAAAAAADgAAAAAALAAAAAAADgAAAAAAQAAAAAADDgAAAAAALAAAAAAALAAAAAAAQAAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAAMwAAAAADMwAAAAACMwAAAAABDgAAAAAALAAAAAAALgAAAAAADgAAAAAAQAAAAAACQAAAAAADDgAAAAAAQAAAAAAAQAAAAAABLAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAABHAAAAAABDgAAAAAADgAAAAAAHAAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAACHAAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAADHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAAHAAAAAACDgAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAAHAAAAAADHAAAAAACLAAAAAAALAAAAAAADgAAAAAADgAAAAAA
version: 6
4,0:
ind: 4,0
@@ -341,7 +341,7 @@ entities:
version: 6
6,-2:
ind: 6,-2
- tiles: QAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAACRwAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAABRwAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAABLAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAABLAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
+ tiles: QAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAACRwAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAACRwAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
1,-6:
ind: 1,-6
@@ -349,15 +349,15 @@ entities:
version: 6
4,-3:
ind: 4,-3
- tiles: LAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAAMwAAAAACMwAAAAADMwAAAAABDgAAAAAADgAAAAAARwAAAAABMwAAAAADLgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAAAMwAAAAADMwAAAAABMwAAAAADMwAAAAABLgAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAABLAAAAAAARwAAAAABRwAAAAACLAAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAADMwAAAAAAMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAALgAAAAAALAAAAAAALAAAAAAARwAAAAACDgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACHAAAAAADDgAAAAAAMwAAAAACLgAAAAAALgAAAAAARwAAAAABMwAAAAACMwAAAAACRwAAAAAAMwAAAAACDgAAAAAADgAAAAAAMwAAAAADMwAAAAABDgAAAAAALgAAAAAADgAAAAAADgAAAAAAMwAAAAACLgAAAAAALgAAAAAARwAAAAACMwAAAAADMwAAAAABMwAAAAADMwAAAAABDgAAAAAAMwAAAAACMwAAAAADDgAAAAAARwAAAAABLAAAAAAADgAAAAAADgAAAAAALAAAAAAAMwAAAAAALAAAAAAALAAAAAAAMwAAAAAAMwAAAAAAMwAAAAABMwAAAAAADgAAAAAAMwAAAAADMwAAAAACMwAAAAADLAAAAAAASQAAAAABHAAAAAACDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAARwAAAAABHAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
+ tiles: LAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAAMwAAAAADMwAAAAACMwAAAAABDgAAAAAADgAAAAAARwAAAAACMwAAAAACLgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAABMwAAAAAAMwAAAAADLgAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAABLAAAAAAARwAAAAACRwAAAAACLAAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAAAMwAAAAACMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACLgAAAAAALAAAAAAALAAAAAAARwAAAAACDgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABHAAAAAACDgAAAAAAMwAAAAACLgAAAAAALgAAAAAARwAAAAAAMwAAAAACMwAAAAAARwAAAAAAMwAAAAACDgAAAAAADgAAAAAAMwAAAAADMwAAAAADDgAAAAAALgAAAAAADgAAAAAADgAAAAAAMwAAAAAALgAAAAAALgAAAAAARwAAAAAAMwAAAAAAMwAAAAABMwAAAAADMwAAAAABDgAAAAAAMwAAAAAAMwAAAAAADgAAAAAARwAAAAACLAAAAAAADgAAAAAADgAAAAAALAAAAAAAMwAAAAADLAAAAAAALAAAAAAAMwAAAAAAMwAAAAADMwAAAAAAMwAAAAADDgAAAAAAMwAAAAABMwAAAAACMwAAAAADLAAAAAAASQAAAAACHAAAAAACDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAARwAAAAAAHAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
2,-6:
ind: 2,-6
- tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADwAAAAAASQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADwAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAACLAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADwAAAAADSQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADwAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADwAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
-1,-6:
ind: -1,-6
- tiles: LgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAABAAAAAAECQAAAAADCQAAAAADDgAAAAAAHAAAAAACHAAAAAABHAAAAAABHAAAAAADHAAAAAADLgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAADDgAAAAAAHAAAAAAAHAAAAAAAHAAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAAADgAAAAAALgAAAAAARwAAAAABCQAAAAADDgAAAAAAHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABDgAAAAAABAAAAAACBAAAAAADDgAAAAAACQAAAAADDgAAAAAAHAAAAAABHAAAAAACRwAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAARwAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAARwAAAAACDgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAACLgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
+ tiles: LgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAABAAAAAADCQAAAAACCQAAAAADDgAAAAAAHAAAAAABHAAAAAAAHAAAAAACHAAAAAAAHAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABLAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAADDgAAAAAAHAAAAAACHAAAAAACHAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAACDgAAAAAALgAAAAAARwAAAAABCQAAAAACDgAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAADgAAAAAABAAAAAABBAAAAAAEDgAAAAAACQAAAAAADgAAAAAAHAAAAAAAHAAAAAABRwAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAARwAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAARwAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAACLgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
-4,2:
ind: -4,2
@@ -377,11 +377,11 @@ entities:
version: 6
0,-6:
ind: 0,-6
- tiles: DgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAADDgAAAAAACQAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAARwAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAHAAAAAABDgAAAAAACQAAAAADCQAAAAABBAAAAAADDgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAACLAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACBAAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAABDgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAAARwAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAARwAAAAACLAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAAHQAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAADgAAAAAADgAAAAAAJAAAAAAADgAAAAAADgAAAAAAHQAAAAAADgAAAAAALgAAAAAALAAAAAAAIwAAAAADPAAAAAAGIwAAAAADIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAAHQAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAAIwAAAAAAIwAAAAABPAAAAAAFDgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAA
+ tiles: DgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAARwAAAAACLgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAHAAAAAACDgAAAAAACQAAAAACCQAAAAADBAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAABLAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABBAAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAABDgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAACRwAAAAABLgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAARwAAAAABLAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAAHQAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAADgAAAAAADgAAAAAAJAAAAAAADgAAAAAADgAAAAAAHQAAAAAADgAAAAAALgAAAAAALAAAAAAAIwAAAAADPAAAAAAAIwAAAAACIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAAHQAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAAIwAAAAAAIwAAAAACPAAAAAAFDgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAA
version: 6
6,-3:
ind: 6,-3
- tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
-4,1:
ind: -4,1
@@ -389,7 +389,7 @@ entities:
version: 6
5,-3:
ind: 5,-3
- tiles: DgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAAMwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAAMwAAAAAAMwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAQAAAAAACQAAAAAACQAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAAPQAAAAADDgAAAAAAQAAAAAABDgAAAAAAQAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAAPQAAAAADDgAAAAAARwAAAAAAQAAAAAACDgAAAAAA
+ tiles: DgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAAMwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAAMwAAAAABMwAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAQAAAAAABQAAAAAACQAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAAPQAAAAADDgAAAAAAQAAAAAABDgAAAAAAQAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAAPQAAAAABDgAAAAAARwAAAAAAQAAAAAACDgAAAAAA
version: 6
-6,-5:
ind: -6,-5
@@ -397,23 +397,23 @@ entities:
version: 6
3,-6:
ind: 3,-6
- tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAASQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAASQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAASQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAASQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA
version: 6
4,-4:
ind: 4,-4
- tiles: DgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAABHAAAAAACSgAAAAACSgAAAAADSgAAAAACSgAAAAAARwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADLgAAAAAASQAAAAABSQAAAAABHAAAAAABHAAAAAACSgAAAAACSgAAAAABSgAAAAACSgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAABSQAAAAABSQAAAAAASQAAAAAAHAAAAAACHAAAAAABHAAAAAABDgAAAAAARwAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAACHAAAAAABHAAAAAACHAAAAAACHAAAAAACHAAAAAACHAAAAAAAHAAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAARwAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAA
+ tiles: DgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAACHAAAAAADSgAAAAACSgAAAAADSgAAAAACSgAAAAAARwAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAAALgAAAAAASQAAAAADSQAAAAACHAAAAAACHAAAAAACSgAAAAADSgAAAAABSgAAAAABSgAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAAASQAAAAABSQAAAAABSQAAAAAAHAAAAAABHAAAAAACHAAAAAABDgAAAAAARwAAAAACLAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAADHAAAAAACHAAAAAADHAAAAAABHAAAAAAAHAAAAAAAHAAAAAABHAAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABLgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAARwAAAAACLAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
4,-5:
ind: 4,-5
- tiles: PAAAAAACIwAAAAABDgAAAAAALAAAAAAAPAAAAAACDgAAAAAAIwAAAAABIwAAAAABIwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAARwAAAAABDgAAAAAARwAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAABRwAAAAABLAAAAAAALgAAAAAALAAAAAAALAAAAAAAIwAAAAABPAAAAAAFIwAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAADPAAAAAACPAAAAAACLAAAAAAALgAAAAAALAAAAAAAPAAAAAADIwAAAAAAIwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAPAAAAAABPAAAAAAEIwAAAAACRwAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAAPAAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAAIwAAAAABPAAAAAABDgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAAIwAAAAADIwAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAADHAAAAAACHAAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABSgAAAAADDgAAAAAADgAAAAAASgAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAABDgAAAAAALAAAAAAAHAAAAAACDgAAAAAADgAAAAAAHAAAAAAASgAAAAABDgAAAAAASgAAAAACSgAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
+ tiles: PAAAAAAAIwAAAAACDgAAAAAALAAAAAAAPAAAAAADDgAAAAAAIwAAAAABIwAAAAADIwAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAARwAAAAABDgAAAAAARwAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAACRwAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAAIwAAAAACPAAAAAADIwAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAADPAAAAAABPAAAAAAELAAAAAAALgAAAAAALAAAAAAAPAAAAAAFIwAAAAACIwAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAPAAAAAAFPAAAAAAFIwAAAAAARwAAAAACLAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAAPAAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAAIwAAAAABPAAAAAAFDgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAAIwAAAAACIwAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAADHAAAAAAAHAAAAAADDgAAAAAADgAAAAAAHAAAAAABHAAAAAACSgAAAAADDgAAAAAADgAAAAAASgAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAACDgAAAAAALAAAAAAAHAAAAAABDgAAAAAADgAAAAAAHAAAAAABSgAAAAAADgAAAAAASgAAAAADSgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
4,-6:
ind: 4,-6
- tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAAADgAAAAAAPAAAAAACIwAAAAABDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAIwAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAARwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAPAAAAAAGIwAAAAACDgAAAAAAHQAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAPAAAAAAADgAAAAAADgAAAAAAIwAAAAACPAAAAAAEDgAAAAAAIwAAAAABIwAAAAABDgAAAAAARwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAADDgAAAAAAPAAAAAAAIwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAIwAAAAABDgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAARwAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAPAAAAAADIwAAAAAADgAAAAAAHQAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAPAAAAAAGDgAAAAAADgAAAAAAIwAAAAADPAAAAAAEDgAAAAAAIwAAAAACIwAAAAABDgAAAAAARwAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
5,-1:
ind: 5,-1
- tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAAHAAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAARwAAAAABDgAAAAAARwAAAAACDgAAAAAARwAAAAACHAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAARwAAAAACDgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
+ tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAAHAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAARwAAAAAADgAAAAAARwAAAAABDgAAAAAARwAAAAACHAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAARwAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
5,-4:
ind: 5,-4
@@ -425,7 +425,7 @@ entities:
version: 6
0,-7:
ind: 0,-7
- tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAARwAAAAABDgAAAAAADgAAAAAARwAAAAACLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAARwAAAAAADgAAAAAADgAAAAAARwAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAABLAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA
version: 6
1,-7:
ind: 1,-7
@@ -433,11 +433,11 @@ entities:
version: 6
-3,-6:
ind: -3,-6
- tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAAB
version: 6
-2,-6:
ind: -2,-6
- tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
-4,-5:
ind: -4,-5
@@ -627,7 +627,12 @@ entities:
decals:
4120: -2,-41
12339: -6,-37
- 20088: -4,-42
+ - node:
+ zIndex: 2
+ color: '#FFFFFFFF'
+ id: BrickTileDarkCornerNe
+ decals:
+ 12350: -4,-42
- node:
zIndex: 1
color: '#FFFFFFFF'
@@ -636,13 +641,19 @@ entities:
4135: -13,-37
17687: -38,-53
17780: 33,0
- 20079: -8,-42
+ 19536: -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'
@@ -684,6 +695,12 @@ entities:
id: BrickTileDarkLineE
decals:
12341: -6,-38
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkLineN
+ decals:
+ 1438: -5,-42
+ 1439: -6,-42
- node:
zIndex: 1
color: '#FFFFFFFF'
@@ -704,15 +721,13 @@ entities:
19372: 13,26
19373: 12,26
19374: 11,26
- 20083: -7,-42
- 20084: -6,-42
- 20085: -5,-42
- 20089: -8,-46
+ 19535: -7,-42
- node:
zIndex: 1
color: '#FFFFFFFF'
id: BrickTileDarkLineS
decals:
+ 4128: -3,-42
19503: -36,-40
19506: -33,-40
19522: -35,-40
@@ -728,10 +743,9 @@ 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'
@@ -2007,7 +2021,7 @@ entities:
- node:
cleanable: True
zIndex: 5
- color: '#FFFFFF7F'
+ color: '#0000007F'
id: Dirt
decals:
1162: 21,-55
@@ -4926,6 +4940,7 @@ entities:
19016: 16,24
19017: 17,27
19018: 17,27
+ 19019: 17,29
19020: 17,31
19021: 16,31
19022: 16,30
@@ -5165,6 +5180,8 @@ 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
@@ -5801,6 +5818,7 @@ entities:
6358: -5,-35
6359: -4,-35
6360: -3,-41
+ 6361: -3,-42
6372: 0,-29
6373: 0,-30
6374: 1,-30
@@ -6041,7 +6059,9 @@ 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
@@ -6298,6 +6318,7 @@ entities:
14963: 42,3
14964: 38,3
15011: -6,-41
+ 15012: -4,-42
15013: -5,-40
15030: -13,12
15031: 14,12
@@ -10227,6 +10248,7 @@ entities:
13017: -9,-19
15857: -1,-20
15858: -1,-19
+ 18586: 18,29
18587: 18,28
- node:
color: '#FFFFFFFF'
@@ -10301,7 +10323,6 @@ entities:
15128: -1,-51
18374: 19,-40
18415: 21,-44
- 20074: -7,-43
- node:
zIndex: 2
color: '#FFFFFFFF'
@@ -10420,6 +10441,7 @@ entities:
id: WoodTrimThinInnerSe
decals:
12111: 37,-12
+ 19545: -8,-42
- node:
zIndex: 1
color: '#FFFFFFFF'
@@ -10442,6 +10464,9 @@ entities:
id: WoodTrimThinLineE
decals:
17677: -37,-55
+ 19543: -8,-44
+ 19544: -8,-43
+ 19587: -8,-45
- node:
zIndex: 1
color: '#FFFFFFFF'
@@ -10480,9 +10505,6 @@ entities:
18420: 18,-47
18421: 19,-47
18422: 20,-47
- 20075: -6,-44
- 20076: -5,-44
- 20077: -4,-44
- node:
zIndex: 2
color: '#FFFFFFFF'
@@ -10502,11 +10524,18 @@ 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
@@ -11386,6 +11415,7 @@ entities:
19296: 32,18
19297: 16,19
19298: 11,22
+ 19299: 17,29
- node:
cleanable: True
zIndex: 5
@@ -11894,7 +11924,7 @@ entities:
0: 7645
-5,-4:
0: 52431
- 1: 256
+ 2: 256
-4,-3:
0: 53727
-5,-3:
@@ -11909,7 +11939,7 @@ entities:
0: 65437
-4,0:
0: 13243
- 2: 2048
+ 3: 2048
-3,-4:
0: 65501
-3,-3:
@@ -11920,8 +11950,8 @@ entities:
0: 53247
-3,0:
0: 15
- 2: 13056
- 1: 3072
+ 3: 13056
+ 2: 3072
-3,-5:
0: 36863
-2,-4:
@@ -11934,7 +11964,7 @@ entities:
0: 65535
-2,0:
0: 15
- 1: 3840
+ 2: 3840
-2,-5:
0: 36349
-1,-4:
@@ -11947,7 +11977,7 @@ entities:
0: 65535
-1,0:
0: 15
- 1: 3840
+ 2: 3840
0,-4:
0: 65523
0,-3:
@@ -11982,23 +12012,23 @@ entities:
0: 56793
-2,-8:
0: 61495
- 3: 136
+ 1: 136
-2,-7:
0: 8176
-2,-6:
0: 64988
-2,-9:
0: 13299
- 3: 32768
+ 1: 32768
-1,-8:
- 3: 51
+ 1: 51
0: 63500
-1,-6:
0: 65535
-1,-5:
0: 4095
-1,-9:
- 3: 12288
+ 1: 12288
0: 35059
-1,-7:
0: 3822
@@ -12037,7 +12067,7 @@ entities:
-2,-12:
0: 64927
-2,-11:
- 0: 65535
+ 0: 65503
-2,-10:
0: 32767
-2,-13:
@@ -12059,11 +12089,11 @@ entities:
0,-9:
0: 48056
-4,-16:
- 1: 17663
+ 2: 17663
-5,-16:
- 1: 255
+ 2: 255
-4,-15:
- 1: 100
+ 2: 100
0: 45056
-5,-15:
0: 65024
@@ -12074,9 +12104,9 @@ entities:
-5,-13:
0: 53759
-4,-17:
- 1: 17663
+ 2: 17663
-3,-16:
- 1: 17
+ 2: 17
0: 52428
-3,-15:
0: 47308
@@ -12084,63 +12114,63 @@ entities:
0: 35775
-3,-17:
0: 52360
- 1: 19
+ 2: 19
-2,-16:
0: 13175
- 1: 32768
+ 2: 32768
-2,-15:
0: 64435
-2,-14:
0: 65339
-2,-17:
0: 13119
- 1: 2048
+ 2: 2048
-1,-15:
0: 65328
- 1: 8
+ 2: 8
-1,-14:
0: 65295
-1,-16:
- 1: 59392
+ 2: 59392
0,-15:
- 1: 15
+ 2: 15
0: 65280
0,-14:
0: 65295
0,-13:
0: 65535
-4,-18:
- 1: 59592
+ 2: 59592
-5,-18:
- 1: 40960
+ 2: 40960
-5,-17:
- 1: 255
+ 2: 255
-4,-20:
- 1: 51400
+ 2: 51400
-4,-21:
- 1: 51404
+ 2: 51404
-4,-19:
- 1: 51400
+ 2: 51400
-3,-18:
- 1: 12288
+ 2: 12288
0: 34952
-3,-21:
- 1: 18575
+ 2: 18575
-3,-20:
0: 2176
-3,-19:
0: 34952
-2,-20:
0: 4913
- 1: 34816
+ 2: 34816
-2,-19:
0: 15347
-2,-18:
0: 45875
- 1: 136
+ 2: 136
-2,-21:
0: 4096
- 1: 17203
+ 2: 17203
-1,-19:
0: 16
-1,-17:
@@ -12149,7 +12179,7 @@ entities:
0: 43688
-4,1:
0: 62259
- 2: 128
+ 3: 128
-5,1:
0: 43690
-4,2:
@@ -12163,14 +12193,14 @@ entities:
-4,4:
0: 21759
-3,1:
- 2: 513
- 1: 8208
+ 3: 513
+ 2: 8208
-3,2:
0: 65280
- 1: 8
+ 2: 8
-3,3:
0: 13119
- 1: 32768
+ 2: 32768
-3,4:
0: 47283
-2,1:
@@ -12178,37 +12208,37 @@ entities:
5: 1092
-2,2:
0: 65280
- 1: 10
+ 2: 10
-2,3:
0: 13
- 1: 61696
+ 2: 61696
-1,1:
- 2: 1365
+ 3: 1365
-1,2:
0: 65280
- 1: 10
+ 2: 10
-1,3:
0: 15
- 1: 5120
+ 2: 5120
-2,4:
- 1: 8
+ 2: 8
0: 16176
-1,4:
0: 61420
0,0:
0: 15
- 1: 3328
- 2: 512
+ 2: 3328
+ 3: 512
0,1:
6: 273
- 2: 3276
+ 3: 3276
0,2:
0: 65280
- 1: 6
- 2: 8
+ 2: 6
+ 3: 8
0,3:
0: 19663
- 1: 256
+ 2: 256
-5,4:
0: 62395
-4,5:
@@ -12216,29 +12246,29 @@ entities:
-5,5:
0: 8079
-4,6:
- 1: 50272
+ 2: 50272
-3,5:
0: 8099
-3,6:
0: 119
- 1: 53248
+ 2: 53248
-3,7:
- 1: 4401
+ 2: 4401
-3,8:
- 1: 4401
+ 2: 4401
-2,5:
0: 13104
- 1: 2184
+ 2: 2184
-2,6:
0: 63
- 1: 6144
+ 2: 6144
-1,6:
0: 3311
- 1: 4096
+ 2: 4096
-1,5:
0: 61038
-1,7:
- 1: 2
+ 2: 2
0,4:
0: 65535
0,5:
@@ -12247,29 +12277,29 @@ entities:
0: 36863
-8,-4:
0: 15
- 1: 768
+ 2: 768
-9,-4:
0: 26239
-8,-3:
0: 44782
-9,-3:
0: 34958
- 1: 12288
+ 2: 12288
-8,-2:
0: 65034
-9,-2:
0: 64904
- 1: 3
+ 2: 3
-8,-1:
0: 60942
-9,-1:
0: 35037
- 1: 12288
+ 2: 12288
-8,0:
0: 26190
-7,-4:
0: 17479
- 1: 256
+ 2: 256
-7,-3:
0: 65535
-7,-2:
@@ -12282,7 +12312,7 @@ entities:
0: 65359
-6,-4:
0: 15
- 1: 2304
+ 2: 2304
-6,-3:
0: 53727
-6,-2:
@@ -12292,8 +12322,7 @@ entities:
-6,-5:
0: 64511
-6,0:
- 0: 59907
- 7: 1024
+ 0: 60931
-8,-8:
0: 65535
-8,-9:
@@ -12376,28 +12405,28 @@ entities:
0: 65262
-8,-17:
0: 24576
- 1: 206
+ 2: 206
-7,-15:
- 1: 256
+ 2: 256
-7,-16:
- 1: 238
+ 2: 238
-7,-14:
0: 58470
-6,-16:
- 1: 17663
+ 2: 17663
-6,-14:
0: 48043
-6,-17:
- 1: 17663
+ 2: 17663
-6,-15:
- 1: 196
+ 2: 196
0: 32768
-8,-20:
0: 1
- 1: 512
+ 2: 512
-8,-21:
0: 4096
- 1: 32
+ 2: 32
-9,-20:
0: 61423
-9,-19:
@@ -12405,26 +12434,26 @@ entities:
-9,-18:
0: 61423
-8,-18:
- 1: 40960
+ 2: 40960
-9,-17:
0: 65519
-7,-17:
- 1: 511
+ 2: 511
-7,-18:
- 1: 40960
+ 2: 40960
-6,-18:
- 1: 40960
+ 2: 40960
-9,0:
0: 59528
- 1: 34
+ 2: 34
-8,1:
0: 6
- 1: 24576
+ 2: 24576
-9,1:
0: 52462
- 1: 4096
+ 2: 4096
-8,2:
- 1: 2
+ 2: 2
0: 61056
-9,2:
0: 60668
@@ -12458,115 +12487,115 @@ entities:
0: 62990
-8,6:
0: 7
- 1: 1792
+ 2: 1792
-9,6:
- 1: 52288
+ 2: 52288
-8,7:
- 1: 4224
+ 2: 4224
-8,8:
- 1: 18163
+ 2: 18163
-9,7:
- 1: 64716
+ 2: 64716
-7,5:
0: 26159
-7,6:
- 1: 4368
+ 2: 4368
-7,7:
- 1: 4369
+ 2: 4369
-7,8:
- 1: 55569
+ 2: 55569
-6,5:
0: 3903
-6,6:
- 1: 16454
+ 2: 16454
-6,7:
- 1: 2
+ 2: 2
0: 35968
-6,8:
- 1: 4978
+ 2: 4978
-5,6:
0: 4369
- 1: 16452
+ 2: 16452
-5,7:
0: 14128
- 1: 8
+ 2: 8
-5,8:
0: 1
- 1: 2248
+ 2: 2248
-9,8:
- 1: 15
+ 2: 15
-8,9:
- 1: 8
+ 2: 8
-7,9:
- 1: 19038
+ 2: 19038
-7,10:
- 1: 136
+ 2: 136
-6,9:
- 1: 61440
+ 2: 61440
-6,10:
- 1: 116
+ 2: 116
-5,9:
- 1: 61440
+ 2: 61440
-5,10:
- 1: 196
+ 2: 196
-4,8:
- 1: 29456
+ 2: 29456
-4,9:
- 1: 23118
+ 2: 23118
-4,10:
- 1: 50
+ 2: 50
-12,-4:
- 1: 3712
- 2: 57344
+ 2: 3712
+ 3: 57344
-13,-4:
0: 48896
- 2: 7
- 1: 8
+ 3: 7
+ 2: 8
-12,-3:
0: 1
- 1: 62126
+ 2: 62126
-13,-3:
0: 11
- 2: 59136
- 1: 6144
+ 3: 59136
+ 2: 6144
-12,-2:
- 2: 59185
- 1: 2254
+ 3: 59185
+ 2: 2254
-13,-2:
- 2: 140
- 1: 2114
+ 3: 140
+ 2: 2114
-12,-1:
- 2: 140
- 1: 34816
+ 3: 140
+ 2: 34816
-11,-4:
- 1: 1841
- 2: 61440
+ 2: 1841
+ 3: 61440
-11,-3:
- 1: 61759
+ 2: 61759
-11,-2:
- 1: 5
+ 2: 5
0: 36352
-12,0:
- 1: 35562
+ 2: 35562
-11,-5:
- 1: 8048
+ 2: 8048
-11,-1:
0: 34958
- 1: 8704
+ 2: 8704
-10,-4:
0: 59647
- 2: 4096
+ 3: 4096
-10,-3:
- 1: 61633
+ 2: 61633
-10,-2:
0: 65280
- 1: 12
+ 2: 12
-10,-1:
0: 13311
- 1: 32768
+ 2: 32768
-10,0:
0: 13105
- 1: 34816
+ 2: 34816
-12,-8:
0: 64991
-12,-9:
@@ -12577,17 +12606,17 @@ entities:
0: 56349
-13,-7:
0: 51404
- 1: 17
+ 2: 17
-12,-6:
0: 52701
-13,-6:
0: 3838
-12,-5:
- 2: 305
- 1: 4800
+ 3: 305
+ 2: 4800
-13,-5:
- 2: 60552
- 1: 4672
+ 3: 60552
+ 2: 4672
-11,-8:
0: 65535
-11,-7:
@@ -12604,7 +12633,7 @@ entities:
0: 61695
-10,-5:
0: 3087
- 1: 256
+ 2: 256
-10,-9:
0: 65287
-12,-12:
@@ -12615,7 +12644,7 @@ entities:
0: 61058
-12,-11:
0: 4367
- 1: 1024
+ 2: 1024
-13,-11:
0: 34958
-12,-10:
@@ -12624,7 +12653,7 @@ entities:
0: 49080
-13,-9:
0: 52424
- 1: 272
+ 2: 272
-11,-10:
0: 65399
-11,-13:
@@ -12633,7 +12662,7 @@ entities:
0: 61152
-11,-11:
0: 14
- 1: 1024
+ 2: 1024
-10,-12:
0: 32738
-10,-11:
@@ -12643,7 +12672,7 @@ entities:
-10,-13:
0: 65294
-12,-15:
- 1: 3
+ 2: 3
0: 30464
-12,-14:
0: 30576
@@ -12653,174 +12682,173 @@ entities:
0: 60629
-11,-15:
0: 7936
- 1: 10
+ 2: 10
-11,-14:
0: 56799
-10,-15:
0: 3968
- 1: 2
+ 2: 2
-10,-14:
0: 61166
-10,-16:
- 1: 16384
+ 2: 16384
-10,-20:
- 1: 4
+ 2: 4
0: 3072
-10,-21:
- 1: 17536
+ 2: 16512
-10,-19:
0: 12
- 1: 1024
+ 2: 1024
-10,-18:
- 1: 4
+ 2: 4
0: 3072
-10,-17:
0: 12
- 1: 1024
-9,-21:
0: 64170
-12,1:
- 1: 65416
+ 2: 65416
-13,1:
- 1: 65392
+ 2: 65392
-12,2:
- 2: 3840
- 1: 61440
+ 3: 3840
+ 2: 61440
-13,2:
- 2: 43008
- 1: 21026
+ 3: 43008
+ 2: 21026
-12,3:
- 2: 3855
- 1: 61440
+ 3: 3855
+ 2: 61440
-13,3:
- 2: 43016
- 1: 21026
+ 3: 43016
+ 2: 21026
-12,4:
- 2: 3855
- 1: 61440
+ 3: 3855
+ 2: 61440
-11,1:
- 1: 63265
+ 2: 63265
0: 8
-11,3:
- 1: 34560
- 2: 2048
+ 2: 34560
+ 3: 2048
-11,0:
0: 52416
-10,1:
0: 51
- 1: 47104
- 2: 16384
+ 2: 47104
+ 3: 16384
-10,3:
- 2: 49408
- 1: 4096
+ 3: 49408
+ 2: 4096
0: 140
-11,4:
- 1: 15
+ 2: 15
-10,2:
- 1: 290
+ 2: 290
0: 32960
-10,4:
- 1: 8471
- 2: 3816
+ 2: 8471
+ 3: 3816
-13,4:
- 2: 43016
- 1: 21026
+ 3: 43016
+ 2: 21026
-12,5:
- 2: 8207
- 1: 53760
+ 3: 8207
+ 2: 53760
-13,5:
- 2: 8200
- 1: 53794
+ 3: 8200
+ 2: 53794
-12,6:
- 2: 21872
- 1: 8706
+ 3: 21872
+ 2: 8706
-12,7:
- 2: 85
- 1: 61986
+ 3: 85
+ 2: 61986
-12,8:
- 1: 127
+ 2: 127
-13,7:
- 1: 61986
- 2: 85
+ 2: 61986
+ 3: 85
-11,5:
- 1: 61952
+ 2: 61952
-11,7:
- 1: 61440
+ 2: 61440
-11,8:
- 1: 15
+ 2: 15
-11,6:
- 1: 2
+ 2: 2
-10,5:
- 1: 5760
+ 2: 5760
0: 57344
-10,7:
- 1: 61440
+ 2: 61440
-10,8:
- 1: 15
+ 2: 15
-10,6:
- 1: 6
+ 2: 6
-13,8:
- 1: 127
+ 2: 127
-16,-4:
0: 65327
-16,-5:
0: 61440
- 1: 145
+ 2: 145
-16,-3:
0: 65327
-17,-4:
0: 62578
-16,-2:
- 1: 240
+ 2: 240
-16,-1:
- 1: 35071
+ 2: 35071
-17,-1:
- 1: 255
+ 2: 255
-15,-1:
- 1: 9215
+ 2: 9215
-16,0:
- 1: 34952
+ 2: 34952
-15,-4:
0: 24576
- 1: 12
+ 2: 12
-15,-3:
- 1: 60416
+ 2: 60416
-15,-2:
- 1: 55720
+ 2: 55720
-15,-5:
- 1: 59561
+ 2: 59561
-15,0:
- 1: 8995
+ 2: 8995
-14,-4:
0: 65280
- 1: 14
+ 2: 14
-14,-3:
0: 15
- 1: 43776
+ 2: 43776
-14,-2:
- 1: 32682
+ 2: 32682
-14,-1:
- 1: 23
+ 2: 23
-14,-5:
- 1: 43695
+ 2: 43695
-16,-8:
- 1: 10098
+ 2: 10098
-16,-7:
- 1: 8995
+ 2: 8995
-16,-6:
- 1: 4083
+ 2: 4083
-17,-6:
- 1: 36848
+ 2: 36848
-17,-5:
- 1: 72
+ 2: 72
-16,-9:
- 1: 12848
+ 2: 12848
-15,-8:
0: 32631
-15,-6:
- 1: 14196
+ 2: 14196
-15,-7:
- 1: 10240
+ 2: 10240
-14,-8:
0: 30711
-14,-7:
@@ -12828,105 +12856,105 @@ entities:
-14,-6:
0: 4095
-16,-12:
- 1: 16369
+ 2: 16369
-16,-13:
- 1: 4369
- 2: 8738
+ 2: 4369
+ 3: 8738
-17,-12:
- 1: 49137
+ 2: 49137
-16,-11:
- 1: 12850
+ 2: 12850
-16,-10:
- 1: 5272
- 2: 49668
+ 2: 5272
+ 3: 49668
-15,-12:
- 1: 4083
+ 2: 4083
-15,-10:
- 1: 39248
- 2: 160
+ 2: 39248
+ 3: 160
-15,-13:
- 1: 4352
- 2: 8208
+ 2: 4352
+ 3: 8208
0: 8
-14,-12:
- 1: 3888
+ 2: 3888
0: 8
-14,-10:
- 2: 816
- 1: 1
+ 3: 816
+ 2: 1
0: 34944
-15,-9:
- 1: 8
+ 2: 8
-14,-9:
- 1: 273
- 2: 2
+ 2: 273
+ 3: 2
-14,-13:
0: 52428
-16,-16:
- 1: 319
+ 2: 319
-16,-17:
- 1: 12288
+ 2: 12288
-17,-16:
- 1: 20991
- 2: 8192
+ 2: 20991
+ 3: 8192
-16,-15:
0: 287
- 2: 4096
- 1: 8192
+ 3: 4096
+ 2: 8192
-16,-14:
- 2: 12337
- 1: 450
+ 3: 12337
+ 2: 450
-17,-15:
- 1: 33045
- 2: 12834
+ 2: 33045
+ 3: 12834
-17,-14:
- 1: 361
- 2: 45200
+ 2: 361
+ 3: 45200
-17,-13:
- 2: 43690
- 1: 4369
+ 3: 43690
+ 2: 4369
-15,-16:
- 1: 15
+ 2: 15
0: 57344
-15,-15:
0: 239
- 1: 4096
+ 2: 4096
-15,-14:
- 1: 1
+ 2: 1
0: 61120
-14,-16:
- 1: 63
+ 2: 63
0: 53248
-14,-15:
0: 3295
- 1: 4096
+ 2: 4096
-14,-14:
0: 57308
-13,-16:
- 1: 33843
+ 2: 33843
0: 4096
-13,-15:
0: 22387
-20,-4:
- 1: 52428
+ 2: 52428
-20,-5:
- 1: 52424
+ 2: 52424
-20,-3:
- 1: 52428
+ 2: 52428
-20,-2:
- 1: 2252
+ 2: 2252
-19,-4:
- 1: 29184
+ 2: 29184
-19,-3:
- 1: 31744
+ 2: 31744
-19,-2:
- 1: 29596
+ 2: 29596
-19,-1:
- 1: 206
+ 2: 206
-18,-2:
- 1: 39188
+ 2: 39188
-18,-1:
- 1: 255
+ 2: 255
-18,-4:
0: 25792
-18,-3:
@@ -12934,104 +12962,104 @@ entities:
-17,-3:
0: 628
-17,-2:
- 1: 34928
+ 2: 34928
-19,-5:
- 1: 31891
+ 2: 31891
-19,-6:
- 1: 32448
+ 2: 32448
-18,-6:
- 1: 40944
+ 2: 40944
-18,-5:
- 1: 1113
+ 2: 1113
-21,-16:
- 1: 52460
+ 2: 52460
-21,-17:
- 1: 57344
+ 2: 57344
-21,-15:
- 1: 52428
+ 2: 52428
-21,-14:
- 1: 52428
+ 2: 52428
-21,-13:
- 1: 50252
+ 2: 50252
-21,-12:
- 1: 61164
+ 2: 61164
-20,-16:
- 1: 159
- 2: 32768
+ 2: 159
+ 3: 32768
-20,-14:
- 1: 722
- 2: 32800
+ 2: 722
+ 3: 32800
-20,-17:
- 1: 32768
+ 2: 32768
-19,-16:
- 1: 4607
- 2: 40960
+ 2: 4607
+ 3: 40960
-20,-15:
- 2: 34952
+ 3: 34952
-19,-15:
- 1: 273
- 2: 47786
+ 2: 273
+ 3: 47786
-19,-14:
- 2: 45072
- 1: 481
+ 3: 45072
+ 2: 481
-20,-13:
- 2: 34952
+ 3: 34952
-19,-13:
- 1: 4369
- 2: 43690
+ 2: 4369
+ 3: 43690
-19,-17:
- 1: 45056
+ 2: 45056
-19,-12:
- 1: 49137
+ 2: 49137
-18,-16:
- 1: 4607
- 2: 40960
+ 2: 4607
+ 3: 40960
-18,-15:
- 1: 273
- 2: 47786
+ 2: 273
+ 3: 47786
-18,-14:
- 2: 45072
- 1: 481
+ 3: 45072
+ 2: 481
-18,-13:
- 1: 4369
- 2: 43690
+ 2: 4369
+ 3: 43690
-18,-17:
- 1: 45056
+ 2: 45056
-18,-12:
- 1: 49073
+ 2: 49073
-17,-17:
- 1: 45056
+ 2: 45056
1,-4:
0: 1136
- 1: 57344
+ 2: 57344
1,-2:
0: 61440
- 2: 238
+ 3: 238
1,-1:
0: 65535
1,-5:
0: 65535
1,-3:
- 1: 226
- 2: 57344
+ 2: 226
+ 3: 57344
1,0:
0: 15
- 1: 20224
+ 2: 20224
2,-4:
0: 119
- 1: 28672
+ 2: 28672
2,-3:
- 1: 25173
+ 2: 25173
2,-2:
0: 61568
- 1: 100
+ 2: 100
2,-1:
0: 32631
2,-5:
0: 65535
2,0:
0: 2063
- 1: 1792
+ 2: 1792
3,-4:
0: 4090
3,-3:
@@ -13115,9 +13143,9 @@ entities:
4,-9:
0: 16175
0,-16:
- 1: 43520
+ 2: 43520
1,-16:
- 1: 45056
+ 2: 45056
1,-15:
0: 65248
1,-14:
@@ -13144,63 +13172,63 @@ entities:
0: 2240
1,-17:
0: 12
- 1: 2048
+ 2: 2048
1,-18:
0: 32768
- 1: 136
+ 2: 136
1,-20:
- 1: 34816
+ 2: 34816
2,-19:
0: 61182
2,-21:
- 1: 7918
+ 2: 7918
0: 16384
2,-20:
0: 20196
2,-18:
0: 61166
3,-21:
- 1: 39167
+ 2: 39167
3,-18:
- 1: 58600
+ 2: 58600
3,-20:
- 1: 34952
+ 2: 34952
4,-20:
- 1: 4112
+ 2: 4112
3,-19:
- 1: 34952
+ 2: 34952
4,-19:
- 1: 4112
+ 2: 4112
4,-18:
- 1: 62960
- 2: 2560
+ 2: 62960
+ 3: 2560
1,1:
- 2: 16657
- 1: 1028
+ 3: 16657
+ 2: 1028
1,2:
0: 65280
- 2: 4
- 1: 8
+ 3: 4
+ 2: 8
1,3:
0: 14207
1,4:
0: 65535
2,1:
- 2: 1911
+ 3: 1911
2,2:
0: 65280
- 1: 4
+ 2: 4
2,3:
0: 49359
- 1: 256
+ 2: 256
2,4:
0: 65535
3,1:
- 1: 4113
+ 2: 4113
0: 52416
3,2:
0: 65484
- 1: 1
+ 2: 1
3,3:
0: 63679
3,4:
@@ -13233,25 +13261,25 @@ entities:
0: 30719
3,7:
0: 7
- 1: 17408
- 2: 32768
+ 2: 17408
+ 3: 32768
3,8:
- 1: 36452
- 2: 136
+ 2: 36452
+ 3: 136
4,4:
0: 47568
4,5:
0: 16369
4,6:
0: 13107
- 1: 8
+ 2: 8
4,7:
- 0: 823
- 2: 12288
- 1: 16384
+ 0: 887
+ 3: 12288
+ 2: 16384
4,8:
- 2: 307
- 1: 16068
+ 3: 307
+ 2: 16068
5,-4:
0: 44987
5,-3:
@@ -13298,7 +13326,7 @@ entities:
0: 15291
5,-8:
0: 13311
- 1: 32768
+ 2: 32768
5,-7:
0: 32627
5,-6:
@@ -13307,9 +13335,9 @@ entities:
0: 7974
6,-8:
0: 35067
- 1: 4096
+ 2: 4096
6,-7:
- 1: 1
+ 2: 1
0: 65416
6,-6:
0: 65520
@@ -13359,7 +13387,7 @@ entities:
0: 12275
7,-13:
0: 4113
- 1: 50176
+ 2: 50176
8,-12:
0: 65520
8,-11:
@@ -13379,50 +13407,50 @@ entities:
6,-14:
0: 15295
6,-16:
- 1: 32768
- 7,-16:
- 1: 14476
2: 32768
+ 7,-16:
+ 2: 14476
+ 3: 32768
7,-15:
0: 64432
7,-14:
0: 53247
7,-17:
- 1: 19596
+ 2: 19596
8,-16:
- 2: 4096
+ 3: 4096
8,-14:
0: 3838
8,-13:
- 1: 36906
+ 2: 36906
4,-21:
- 1: 4112
+ 2: 4112
5,-18:
- 1: 62974
- 2: 2048
+ 2: 62974
+ 3: 2048
5,-19:
- 1: 51200
+ 2: 51200
6,-19:
- 1: 4990
+ 2: 4990
6,-18:
- 1: 62960
- 2: 512
+ 2: 62960
+ 3: 512
6,-20:
- 1: 51200
+ 2: 51200
7,-20:
- 1: 65530
- 2: 4
+ 2: 65530
+ 3: 4
7,-19:
- 1: 17487
+ 2: 17487
7,-18:
- 1: 30068
- 2: 512
+ 2: 30068
+ 3: 512
7,-21:
- 1: 64256
+ 2: 64256
8,-20:
- 1: 29456
+ 2: 29456
8,-19:
- 1: 2255
+ 2: 2255
5,1:
0: 65522
5,2:
@@ -13460,7 +13488,7 @@ entities:
6,5:
0: 36848
6,6:
- 1: 2
+ 2: 2
0: 34952
6,7:
0: 140
@@ -13468,17 +13496,17 @@ entities:
0: 40952
7,6:
0: 221
- 1: 24576
+ 2: 24576
7,7:
0: 1
- 1: 2
+ 2: 2
8,4:
0: 65523
8,5:
0: 4369
8,6:
0: 3327
- 1: 4096
+ 2: 4096
9,-4:
0: 30583
9,-3:
@@ -13493,7 +13521,7 @@ entities:
0: 65339
10,-4:
0: 49425
- 1: 192
+ 2: 192
10,-3:
0: 8191
10,-2:
@@ -13506,7 +13534,7 @@ entities:
0: 48682
11,-1:
0: 59
- 1: 12288
+ 2: 12288
11,-4:
0: 59946
11,-3:
@@ -13515,13 +13543,13 @@ entities:
0: 61175
12,-4:
0: 4367
- 1: 52224
+ 2: 52224
12,-3:
0: 4353
- 1: 1028
+ 2: 1028
12,-2:
0: 4353
- 1: 52420
+ 2: 52420
9,-8:
0: 60943
9,-7:
@@ -13538,9 +13566,9 @@ entities:
0: 47291
10,-7:
0: 14
- 1: 25600
+ 2: 25600
10,-5:
- 1: 33376
+ 2: 33376
11,-8:
0: 25328
11,-7:
@@ -13551,7 +13579,7 @@ entities:
0: 58976
12,-8:
0: 4415
- 1: 51200
+ 2: 51200
12,-7:
0: 65489
12,-6:
@@ -13565,25 +13593,25 @@ entities:
9,-10:
0: 61408
9,-13:
- 1: 4096
+ 2: 4096
10,-12:
0: 4368
10,-10:
0: 48952
10,-13:
- 1: 4368
+ 2: 4368
0: 140
10,-11:
- 1: 8736
+ 2: 8736
11,-11:
0: 21776
11,-10:
0: 28455
11,-12:
- 1: 5456
+ 2: 5456
12,-12:
0: 13107
- 1: 32768
+ 2: 32768
12,-11:
0: 56785
12,-10:
@@ -13591,27 +13619,27 @@ entities:
12,-9:
0: 16157
8,-15:
- 1: 1634
+ 2: 1634
9,-14:
0: 61439
9,-15:
- 1: 17
+ 2: 17
0: 60620
9,-16:
0: 52364
9,-17:
0: 51336
- 1: 32
+ 2: 32
10,-16:
0: 56704
- 1: 2
+ 2: 2
10,-15:
0: 57309
10,-14:
0: 57297
10,-17:
- 2: 34816
- 1: 576
+ 3: 34816
+ 2: 576
11,-16:
0: 65520
11,-15:
@@ -13621,8 +13649,8 @@ entities:
11,-13:
0: 127
11,-17:
- 2: 62208
- 1: 3104
+ 3: 62208
+ 2: 3104
12,-16:
0: 56712
12,-15:
@@ -13632,36 +13660,36 @@ entities:
12,-13:
0: 47935
9,-19:
- 1: 62736
- 2: 2082
+ 2: 62736
+ 3: 2082
9,-20:
- 2: 3136
+ 3: 3136
9,-18:
- 1: 2126
+ 2: 2126
10,-20:
- 1: 1792
+ 2: 1792
10,-18:
- 1: 25862
+ 2: 25862
11,-20:
- 2: 13056
- 1: 50304
+ 3: 13056
+ 2: 50304
11,-19:
- 2: 30583
- 1: 8
+ 3: 30583
+ 2: 8
11,-18:
- 2: 375
- 1: 17920
+ 3: 375
+ 2: 17920
11,-21:
- 1: 6513
- 2: 142
+ 2: 6513
+ 3: 142
12,-20:
- 2: 13107
+ 3: 13107
12,-19:
- 1: 5633
- 2: 24610
+ 2: 5633
+ 3: 24610
12,-18:
- 1: 17425
- 2: 8366
+ 2: 17425
+ 3: 8366
9,1:
0: 8083
9,2:
@@ -13670,7 +13698,7 @@ entities:
0: 65339
10,1:
0: 9010
- 1: 2176
+ 2: 2176
10,2:
0: 56575
10,3:
@@ -13680,38 +13708,38 @@ entities:
11,0:
0: 32624
11,1:
- 1: 16
+ 2: 16
0: 57344
11,2:
0: 65535
11,3:
0: 271
12,0:
- 1: 51393
+ 2: 51393
0: 768
- 2: 1024
+ 3: 1024
12,1:
- 1: 49665
+ 2: 49665
12,2:
0: 30577
12,3:
0: 7
- 1: 17408
+ 2: 17408
9,6:
0: 119
- 1: 8192
+ 2: 8192
9,5:
0: 28398
10,4:
0: 62256
- 1: 128
+ 2: 128
10,5:
0: 511
- 1: 49152
+ 2: 49152
10,6:
- 1: 3
+ 2: 3
11,4:
- 1: 80
+ 2: 80
0: 61440
11,5:
0: 44799
@@ -13719,661 +13747,661 @@ entities:
0: 170
12,4:
0: 61440
- 1: 68
+ 2: 68
12,5:
0: 241
- 1: 24576
+ 2: 24576
12,-1:
- 1: 4
+ 2: 4
13,-4:
0: 1
- 1: 64
+ 2: 64
13,-2:
- 1: 4080
+ 2: 4080
13,-5:
0: 62451
14,-2:
- 1: 20478
+ 2: 20478
14,-5:
0: 12336
14,-1:
- 2: 43690
- 1: 17476
+ 3: 43690
+ 2: 17476
14,0:
- 2: 1038
- 1: 19264
+ 3: 1038
+ 2: 19264
15,-2:
- 1: 20478
+ 2: 20478
15,-1:
- 2: 43690
- 1: 17476
+ 3: 43690
+ 2: 17476
15,0:
- 2: 1038
- 1: 19264
+ 3: 1038
+ 2: 19264
16,-2:
- 1: 20478
+ 2: 20478
13,-8:
0: 3
- 1: 17476
+ 2: 17476
13,-7:
0: 62448
13,-6:
0: 65523
13,-9:
- 1: 16388
+ 2: 16388
0: 257
14,-7:
0: 12336
14,-6:
- 1: 8224
+ 2: 8224
13,-12:
- 1: 64512
+ 2: 64512
13,-11:
0: 65520
13,-10:
0: 4607
- 1: 49152
+ 2: 49152
13,-13:
0: 13075
- 1: 2176
+ 2: 2176
14,-12:
- 1: 36864
+ 2: 36864
0: 238
14,-11:
0: 4368
- 2: 19656
- 1: 32768
+ 3: 19656
+ 2: 32768
14,-10:
0: 17
- 2: 2188
- 1: 64
+ 3: 2188
+ 2: 64
14,-13:
0: 58606
15,-11:
- 2: 401
- 1: 4710
+ 3: 401
+ 2: 4710
15,-10:
- 2: 48
- 1: 3784
+ 3: 48
+ 2: 3784
15,-12:
- 1: 8712
+ 2: 8712
15,-13:
- 1: 52832
+ 2: 52832
16,-12:
- 1: 8435
- 2: 35328
+ 2: 8435
+ 3: 35328
16,-11:
- 2: 10937
- 1: 36864
+ 3: 10937
+ 2: 36864
0: 1024
16,-10:
- 2: 383
- 1: 2176
+ 3: 383
+ 2: 2176
12,-17:
0: 34880
- 1: 162
+ 2: 162
13,-16:
0: 4353
- 1: 17408
+ 2: 17408
13,-15:
0: 12561
- 1: 2116
+ 2: 2116
13,-14:
0: 48123
13,-17:
0: 4096
- 2: 16
- 1: 230
+ 3: 16
+ 2: 230
14,-14:
0: 65535
14,-16:
- 1: 28
+ 2: 28
0: 8192
14,-17:
- 1: 4096
- 2: 2
+ 2: 4096
+ 3: 2
14,-15:
0: 57890
15,-16:
- 1: 32775
- 2: 2176
+ 2: 32775
+ 3: 2176
15,-14:
0: 10016
15,-15:
- 1: 28360
+ 2: 28360
15,-17:
- 1: 34944
+ 2: 34944
16,-16:
- 2: 61105
- 1: 14
+ 3: 61105
+ 2: 14
16,-15:
- 2: 119
+ 3: 119
16,-13:
- 1: 4098
+ 2: 4098
12,-21:
- 1: 20480
- 2: 8977
+ 2: 20480
+ 3: 8977
13,-18:
- 2: 8448
- 1: 4096
+ 3: 8448
+ 2: 4096
14,-19:
- 1: 14540
+ 2: 14540
14,-18:
- 1: 21789
- 2: 2
+ 2: 21789
+ 3: 2
14,-20:
- 1: 60416
- 2: 192
+ 2: 60416
+ 3: 192
15,-19:
- 2: 57102
- 1: 8192
+ 3: 57102
+ 2: 8192
15,-18:
- 2: 19
- 1: 32780
+ 3: 19
+ 2: 32780
15,-21:
- 2: 7680
+ 3: 7680
0: 64
15,-20:
- 2: 3686
+ 3: 3686
16,-20:
- 2: 63235
- 1: 2216
+ 3: 63235
+ 2: 2216
16,-19:
- 2: 48031
+ 3: 48031
16,-18:
- 2: 139
- 1: 31744
+ 3: 139
+ 2: 31744
16,-17:
- 2: 49022
- 1: 16384
+ 3: 49022
+ 2: 16384
13,0:
- 1: 20288
+ 2: 20288
13,2:
- 1: 65280
+ 2: 65280
14,2:
- 1: 65348
- 2: 10
+ 2: 65348
+ 3: 10
14,1:
- 2: 43694
- 1: 17472
+ 3: 43694
+ 2: 17472
14,3:
- 1: 14
+ 2: 14
15,2:
- 1: 65348
- 2: 10
+ 2: 65348
+ 3: 10
15,1:
- 2: 43694
- 1: 17472
+ 3: 43694
+ 2: 17472
15,3:
- 1: 14
+ 2: 14
16,0:
- 1: 19264
- 2: 1038
+ 2: 19264
+ 3: 1038
16,2:
- 1: 65348
- 2: 10
+ 2: 65348
+ 3: 10
12,6:
- 1: 2
+ 2: 2
16,-1:
- 2: 43690
- 1: 17476
+ 3: 43690
+ 2: 17476
17,-2:
- 1: 20478
+ 2: 20478
17,-1:
- 2: 43690
- 1: 17476
+ 3: 43690
+ 2: 17476
17,0:
- 2: 1038
- 1: 19264
+ 3: 1038
+ 2: 19264
17,-3:
- 1: 32768
+ 2: 32768
18,-3:
- 1: 14316
+ 2: 14316
18,-2:
- 1: 59185
+ 2: 59185
18,-1:
- 1: 34956
+ 2: 34956
18,-4:
- 1: 32768
+ 2: 32768
19,-4:
- 1: 14316
+ 2: 14316
19,-3:
- 1: 1
+ 2: 1
19,-1:
- 1: 4407
+ 2: 4407
18,0:
- 1: 44456
- 2: 512
+ 2: 44456
+ 3: 512
19,0:
- 1: 13105
+ 2: 13105
19,-2:
- 1: 60544
+ 2: 60544
19,-5:
- 1: 32896
+ 2: 32896
20,-2:
- 1: 311
+ 2: 311
20,-7:
- 2: 24576
+ 3: 24576
19,-7:
- 1: 32768
+ 2: 32768
20,-6:
- 1: 16912
- 2: 36078
+ 2: 16912
+ 3: 36078
19,-6:
- 1: 200
+ 2: 200
20,-5:
- 1: 784
- 2: 60552
+ 2: 784
+ 3: 60552
20,-4:
- 2: 18022
+ 3: 18022
21,-6:
- 2: 18367
- 1: 2048
+ 3: 18367
+ 2: 2048
21,-5:
- 2: 55735
- 1: 8
+ 3: 55735
+ 2: 8
21,-8:
- 1: 546
- 2: 34952
+ 2: 546
+ 3: 34952
21,-7:
- 2: 34958
- 1: 512
+ 3: 34958
+ 2: 512
21,-4:
- 2: 31612
+ 3: 31612
21,-9:
- 2: 36352
- 1: 231
+ 3: 36352
+ 2: 231
22,-8:
- 2: 57339
- 1: 4
+ 3: 57339
+ 2: 4
22,-7:
- 2: 4271
- 1: 57600
+ 3: 4271
+ 2: 57600
22,-6:
- 2: 60621
- 1: 16
+ 3: 60621
+ 2: 16
22,-5:
- 1: 1
- 2: 65534
+ 2: 1
+ 3: 65534
22,-9:
- 2: 40908
- 1: 16434
+ 3: 40908
+ 2: 16434
22,-4:
- 2: 15031
- 1: 8
+ 3: 15031
+ 2: 8
23,-8:
- 2: 65295
+ 3: 65295
23,-7:
- 1: 13056
- 2: 52462
+ 2: 13056
+ 3: 52462
23,-6:
- 2: 34511
- 1: 2096
+ 3: 34511
+ 2: 2096
23,-5:
- 2: 52215
- 1: 12288
+ 3: 52215
+ 2: 12288
0: 1024
23,-9:
- 2: 60943
+ 3: 60943
0: 144
23,-4:
- 2: 4
- 1: 336
+ 3: 4
+ 2: 336
24,-8:
- 2: 4899
+ 3: 4899
24,-7:
- 2: 4371
+ 3: 4371
24,-6:
- 2: 275
- 1: 4640
+ 3: 275
+ 2: 4640
16,1:
- 2: 43694
- 1: 17472
+ 3: 43694
+ 2: 17472
16,3:
- 1: 14
+ 2: 14
17,2:
- 1: 65348
- 2: 10
+ 2: 65348
+ 3: 10
17,1:
- 2: 43694
- 1: 17472
+ 3: 43694
+ 2: 17472
17,3:
- 1: 14
+ 2: 14
18,2:
- 1: 65416
+ 2: 65416
18,1:
- 1: 34952
+ 2: 34952
19,1:
- 1: 4369
+ 2: 4369
19,2:
- 1: 13073
+ 2: 13073
18,3:
- 1: 8
+ 2: 8
19,3:
- 1: 3
+ 2: 3
24,-9:
- 2: 12545
+ 3: 12545
0: 16
4,-24:
- 1: 13107
+ 2: 13107
4,-25:
- 1: 4096
+ 2: 4096
3,-24:
- 1: 224
- 2: 12567
+ 2: 224
+ 3: 12567
4,-23:
- 1: 4915
+ 2: 4915
3,-23:
- 2: 4415
- 1: 34816
+ 3: 4415
+ 2: 34816
4,-22:
- 1: 4369
+ 2: 4369
3,-22:
- 1: 35016
- 2: 1
+ 2: 35016
+ 3: 1
8,-21:
- 1: 4352
+ 2: 4352
17,-12:
- 2: 53248
- 1: 11980
+ 3: 53248
+ 2: 11980
17,-11:
- 2: 40129
- 1: 24588
+ 3: 40129
+ 2: 24588
17,-10:
- 1: 199
+ 2: 199
17,-13:
- 1: 17476
+ 2: 17476
18,-12:
- 2: 61426
- 1: 4096
+ 3: 61426
+ 2: 4096
18,-11:
- 2: 30591
+ 3: 30591
18,-10:
- 1: 112
+ 2: 112
18,-13:
- 1: 51336
+ 2: 51336
19,-12:
- 2: 65520
+ 3: 65520
19,-11:
- 2: 32766
- 1: 32768
+ 3: 32766
+ 2: 32768
19,-13:
- 1: 4096
+ 2: 4096
19,-10:
- 2: 2
+ 3: 2
20,-12:
- 2: 4352
- 1: 8940
+ 3: 4352
+ 2: 8940
20,-11:
- 2: 32784
- 1: 14790
+ 3: 32784
+ 2: 14790
11,-23:
- 2: 49152
+ 3: 49152
11,-22:
- 2: 43148
- 1: 1088
+ 3: 43148
+ 2: 1088
12,-23:
- 2: 4096
+ 3: 4096
12,-22:
- 2: 273
+ 3: 273
-4,-24:
- 2: 238
- 1: 19456
+ 3: 238
+ 2: 19456
-4,-25:
- 2: 57344
+ 3: 57344
-4,-23:
- 1: 52292
- 2: 128
+ 2: 52292
+ 3: 128
-4,-22:
- 1: 52428
+ 2: 52428
-3,-24:
- 1: 487
- 2: 63000
+ 2: 487
+ 3: 63000
-3,-23:
- 2: 51071
- 1: 4096
+ 3: 51071
+ 2: 4096
-3,-25:
- 1: 11840
- 2: 49152
+ 2: 11840
+ 3: 49152
-3,-22:
- 2: 4
- 1: 34816
+ 3: 4
+ 2: 34816
-2,-24:
- 2: 49147
+ 3: 49147
-2,-23:
- 2: 49416
- 1: 13024
+ 3: 49416
+ 2: 13024
-2,-22:
- 1: 13106
- 2: 68
+ 2: 13106
+ 3: 68
-2,-25:
- 2: 34816
- 1: 640
+ 3: 34816
+ 2: 640
-1,-24:
- 2: 65535
+ 3: 65535
-1,-23:
- 1: 248
- 2: 39426
+ 2: 248
+ 3: 39426
-1,-22:
- 1: 48
- 2: 32974
+ 2: 48
+ 3: 32974
-1,-25:
- 2: 7492
- 1: 178
+ 3: 7492
+ 2: 178
0,-24:
- 2: 30481
- 1: 35054
+ 3: 30481
+ 2: 35054
0,-23:
- 1: 58
- 2: 57284
+ 2: 58
+ 3: 57284
0,-22:
- 2: 29439
+ 3: 29439
-16,8:
- 1: 204
+ 2: 204
-16,7:
- 1: 51336
+ 2: 51336
-15,8:
- 1: 31
+ 2: 31
-15,7:
- 1: 61713
+ 2: 61713
-14,8:
- 1: 127
+ 2: 127
-14,7:
- 1: 61986
- 2: 85
+ 2: 61986
+ 3: 85
-3,9:
- 1: 18
+ 2: 18
-16,2:
- 1: 52360
+ 2: 52360
-16,3:
- 1: 52364
+ 2: 52364
-16,4:
- 1: 52364
+ 2: 52364
-16,1:
- 1: 34952
+ 2: 34952
-15,1:
- 1: 65315
+ 2: 65315
-15,2:
- 1: 61713
- 2: 2048
+ 2: 61713
+ 3: 2048
-15,3:
- 1: 61713
- 2: 2056
+ 2: 61713
+ 3: 2056
-15,4:
- 1: 61713
- 2: 2056
+ 2: 61713
+ 3: 2056
-14,1:
- 1: 65280
+ 2: 65280
-14,2:
- 2: 36608
- 1: 28672
+ 3: 36608
+ 2: 28672
-14,3:
- 2: 36623
- 1: 28672
+ 3: 36623
+ 2: 28672
-14,4:
- 2: 36623
- 1: 28672
+ 3: 36623
+ 2: 28672
0,-21:
- 2: 2
+ 3: 2
0,-25:
- 1: 43679
- 2: 256
+ 2: 43679
+ 3: 256
1,-24:
- 1: 547
- 2: 60620
+ 2: 547
+ 3: 60620
1,-23:
- 2: 52730
+ 3: 52730
1,-22:
- 1: 96
+ 2: 96
1,-25:
- 1: 8449
- 2: 50910
+ 2: 8449
+ 3: 50910
2,-24:
- 2: 61438
+ 3: 61438
2,-23:
- 2: 32552
+ 3: 32552
2,-22:
- 2: 231
- 1: 60928
+ 3: 231
+ 2: 60928
2,-25:
- 2: 24576
- 1: 3329
+ 3: 24576
+ 2: 3329
24,-10:
- 2: 4096
+ 3: 4096
23,-10:
- 1: 52851
- 2: 12288
+ 2: 52851
+ 3: 12288
-16,5:
- 1: 52364
+ 2: 52364
-16,6:
- 1: 34956
+ 2: 34956
-15,5:
- 1: 46353
- 2: 16392
+ 2: 46353
+ 3: 16392
-15,6:
- 1: 4373
+ 2: 4373
-14,5:
- 2: 8207
- 1: 53760
+ 3: 8207
+ 2: 53760
-14,6:
- 2: 21872
- 1: 8706
+ 3: 21872
+ 2: 8706
-13,6:
- 2: 21872
- 1: 8706
+ 3: 21872
+ 2: 8706
20,-13:
- 1: 12850
- 2: 257
+ 2: 12850
+ 3: 257
20,-10:
- 1: 35879
- 2: 8
+ 2: 35879
+ 3: 8
21,-12:
- 1: 52851
+ 2: 52851
21,-11:
- 1: 264
- 2: 4096
+ 2: 264
+ 3: 4096
21,-10:
- 2: 33
- 1: 29124
+ 3: 33
+ 2: 29124
22,-12:
- 1: 4096
+ 2: 4096
22,-11:
- 1: 52851
+ 2: 52851
22,-10:
- 1: 52792
+ 2: 52792
23,-11:
- 1: 4096
+ 2: 4096
16,-21:
- 2: 48058
+ 3: 48058
16,-14:
- 1: 2
+ 2: 2
17,-16:
- 1: 1
- 2: 65534
+ 2: 1
+ 3: 65534
17,-15:
- 2: 34021
- 1: 25360
+ 3: 34021
+ 2: 25360
17,-17:
- 2: 65505
+ 3: 65505
17,-14:
- 1: 17612
+ 2: 17612
18,-16:
- 2: 62463
- 1: 3072
+ 3: 62463
+ 2: 3072
18,-15:
- 2: 45055
- 1: 20480
+ 3: 45055
+ 2: 20480
18,-14:
- 1: 35226
+ 2: 35226
18,-17:
- 2: 63482
+ 3: 63482
19,-16:
- 1: 4352
+ 2: 4352
19,-15:
- 2: 273
+ 3: 273
0: 4096
- 1: 25088
+ 2: 25088
19,-14:
- 1: 2671
- 2: 128
+ 2: 2671
+ 3: 128
20,-14:
- 1: 12816
- 2: 256
+ 2: 12816
+ 3: 256
17,-20:
- 2: 34989
- 1: 22032
+ 3: 34989
+ 2: 22032
17,-19:
- 1: 34055
- 2: 2240
+ 2: 34055
+ 3: 2240
17,-18:
- 1: 28417
- 2: 16
+ 2: 28417
+ 3: 16
17,-21:
- 2: 56817
- 1: 4
+ 3: 56817
+ 2: 4
18,-20:
- 2: 65527
+ 3: 65527
18,-19:
- 2: 56784
+ 3: 56784
18,-18:
- 1: 1999
- 2: 61440
+ 2: 1999
+ 3: 61440
18,-21:
- 2: 12544
+ 3: 12544
19,-19:
- 2: 4384
+ 3: 4384
19,-18:
- 1: 4097
- 2: 34
+ 2: 4097
+ 3: 34
19,-17:
- 1: 256
+ 2: 256
16,-22:
- 1: 3168
- 2: 32768
+ 2: 3168
+ 3: 32768
17,-22:
- 2: 12288
+ 3: 12288
20,-3:
- 1: 60544
- 2: 8
+ 2: 60544
+ 3: 8
21,-3:
- 2: 127
- 1: 256
+ 3: 127
+ 2: 256
22,-3:
- 2: 37
+ 3: 37
-1,-26:
- 1: 24576
+ 2: 24576
0,-26:
- 1: 52352
+ 2: 52352
1,-26:
- 1: 4672
- 2: 60416
+ 2: 4672
+ 3: 60416
2,-26:
- 2: 29440
- 1: 35856
+ 3: 29440
+ 2: 35856
3,-25:
- 1: 768
+ 2: 768
-20,-12:
- 1: 36848
+ 2: 36848
uniqueMixes:
- volume: 2500
temperature: 293.15
@@ -14391,10 +14419,10 @@ entities:
- 0
- 0
- volume: 2500
- immutable: True
+ temperature: 235
moles:
- - 0
- - 0
+ - 21.824879
+ - 82.10312
- 0
- 0
- 0
@@ -14406,7 +14434,7 @@ entities:
- 0
- 0
- volume: 2500
- temperature: 293.15
+ immutable: True
moles:
- 0
- 0
@@ -14421,10 +14449,10 @@ entities:
- 0
- 0
- volume: 2500
- temperature: 235
+ temperature: 293.15
moles:
- - 21.824879
- - 82.10312
+ - 0
+ - 0
- 0
- 0
- 0
@@ -14480,36 +14508,21 @@ 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:
- docking284: !type:WeldJoint
- bodyB: 23224
- bodyA: 2
- id: docking284
- localAnchorB: 20,28.5
- localAnchorA: 19,28.5
+ docking287: !type:WeldJoint
+ bodyB: 2
+ bodyA: 22984
+ id: docking287
+ localAnchorB: 19,29.5
+ localAnchorA: 20,29.5
damping: 33.95499
stiffness: 304.7793
- - uid: 23224
+ - uid: 22984
components:
- type: MetaData
name: grid
@@ -14520,7 +14533,7 @@ entities:
chunks:
1,1:
ind: 1,1
- tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
- type: Broadphase
- type: Physics
@@ -14553,14 +14566,14 @@ entities:
- type: NavMap
- type: Joint
joints:
- docking284: !type:WeldJoint
- bodyB: 23224
- bodyA: 2
- id: docking284
- localAnchorB: 20,28.5
- localAnchorA: 19,28.5
- damping: 33.95499
- stiffness: 304.7793
+ docking287: !type:WeldJoint
+ bodyB: 2
+ bodyA: 22984
+ id: docking287
+ localAnchorB: 19,29.5
+ localAnchorA: 20,29.5
+ damping: 33.954987
+ stiffness: 304.77927
- proto: AcousticGuitarInstrument
entities:
- uid: 10313
@@ -14582,13 +14595,6 @@ 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
@@ -14717,7 +14723,6 @@ entities:
- 13955
- 13168
- 14030
- - 1809
- uid: 81
components:
- type: Transform
@@ -15530,7 +15535,11 @@ entities:
- 23106
- 1809
- 20277
- - 13168
+ - 15168
+ - 15169
+ - 15170
+ - 15166
+ - 20173
- 15860
- 20393
- 6322
@@ -15595,7 +15604,10 @@ entities:
parent: 2
- type: DeviceList
devices:
- - 1809
+ - 15170
+ - 15169
+ - 15168
+ - 15166
- 11385
- 11465
- 11259
@@ -16535,6 +16547,7 @@ entities:
- uid: 255
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 41.5,14.5
parent: 2
- uid: 285
@@ -16555,6 +16568,7 @@ entities:
- uid: 986
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: 26.5,17.5
parent: 2
- uid: 2083
@@ -16740,17 +16754,6 @@ 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
@@ -16786,15 +16789,31 @@ 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: 6
+ invokeCounter: 4
- type: DeviceLinkSource
linkedPorts:
+ 10382:
+ - DoorStatus: DoorBolt
23150:
- DoorStatus: Open
- uid: 23144
@@ -16815,11 +16834,13 @@ entities:
pos: 11.5,2.5
parent: 2
- type: DeviceLinkSink
- invokeCounter: 5
+ invokeCounter: 2
- type: DeviceLinkSource
linkedPorts:
22563:
- DoorStatus: Open
+ 10382:
+ - DoorStatus: DoorBolt
- proto: AirlockExternalGlassCargoLocked
entities:
- uid: 1067
@@ -16841,7 +16862,7 @@ entities:
pos: 17.5,30.5
parent: 2
- type: DeviceLinkSink
- invokeCounter: 3
+ invokeCounter: 2
- type: DeviceLinkSource
linkedPorts:
22491:
@@ -16853,7 +16874,7 @@ entities:
pos: 17.5,26.5
parent: 2
- type: DeviceLinkSink
- invokeCounter: 3
+ invokeCounter: 2
- type: DeviceLinkSource
linkedPorts:
22393:
@@ -16877,7 +16898,7 @@ entities:
pos: 16.5,26.5
parent: 2
- type: DeviceLinkSink
- invokeCounter: 3
+ invokeCounter: 2
- type: DeviceLinkSource
linkedPorts:
22393:
@@ -16889,7 +16910,7 @@ entities:
pos: 16.5,30.5
parent: 2
- type: DeviceLinkSink
- invokeCounter: 3
+ invokeCounter: 2
- type: DeviceLinkSource
linkedPorts:
22491:
@@ -17044,7 +17065,7 @@ entities:
pos: 27.5,26.5
parent: 2
- type: DeviceLinkSink
- invokeCounter: 3
+ invokeCounter: 2
- type: DeviceLinkSource
linkedPorts:
938:
@@ -17075,8 +17096,8 @@ entities:
linkedPorts:
21958:
- DoorStatus: DoorBolt
- 13412:
- - DoorStatus: InputB
+ 294:
+ - DoorStatus: DoorBolt
- uid: 3999
components:
- type: Transform
@@ -17290,8 +17311,8 @@ entities:
invokeCounter: 2
- type: DeviceLinkSource
linkedPorts:
- 13412:
- - DoorStatus: InputA
+ 294:
+ - DoorStatus: DoorBolt
938:
- DoorStatus: DoorBolt
- uid: 22090
@@ -17495,15 +17516,10 @@ entities:
rot: 1.5707963267948966 rad
pos: 18.5,28.5
parent: 2
- - type: Door
- changeAirtight: False
- - type: Docking
- dockJointId: docking284
- dockedWith: 23225
- type: DeviceLinkSource
- lastSignals:
- DoorStatus: False
- DockStatus: True
+ linkedPorts:
+ 5002:
+ - DoorStatus: InputB
- type: DeviceLinkSink
invokeCounter: 2
- uid: 6115
@@ -17560,21 +17576,41 @@ entities:
- DockStatus: InputA
- type: DeviceLinkSink
invokeCounter: 1
- - uid: 23225
+ - uid: 21962
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 20.5,28.5
- parent: 23224
+ pos: 20.5,29.5
+ parent: 22984
- type: Door
changeAirtight: False
- type: Docking
- dockJointId: docking284
- dockedWith: 5486
+ dockJointId: docking287
+ dockedWith: 22009
- 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
@@ -18054,6 +18090,7 @@ entities:
- uid: 141
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -12.5,-31.5
parent: 2
- uid: 3301
@@ -18083,6 +18120,7 @@ entities:
- uid: 260
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -10.5,-31.5
parent: 2
- uid: 3485
@@ -18474,6 +18512,7 @@ entities:
- uid: 22100
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 20.5,-1.5
parent: 2
- proto: AirlockMaintRnDLocked
@@ -18750,11 +18789,6 @@ 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
@@ -18780,6 +18814,13 @@ 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
@@ -19007,8 +19048,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 14795
- - 15139
- - 58
- uid: 2591
components:
- type: Transform
@@ -19206,7 +19245,6 @@ entities:
deviceLists:
- 15139
- 58
- - 14795
- uid: 13418
components:
- type: Transform
@@ -20622,7 +20660,7 @@ entities:
- uid: 15664
components:
- type: Transform
- pos: -6.6169634,-43.162365
+ pos: -3.5428128,-42.34056
parent: 2
- uid: 18985
components:
@@ -20761,12 +20799,6 @@ 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
@@ -26836,6 +26868,11 @@ 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
@@ -27306,11 +27343,6 @@ 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
@@ -27953,11 +27985,6 @@ 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
@@ -27997,15 +28024,20 @@ 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
@@ -28345,7 +28377,7 @@ entities:
- uid: 462
components:
- type: Transform
- pos: -27.699253,13.781265
+ pos: -27.73392,13.654132
parent: 2
- proto: BoxFlare
entities:
@@ -28359,7 +28391,7 @@ entities:
- uid: 3955
components:
- type: Transform
- pos: -27.009739,15.621929
+ pos: -24.289831,13.800506
parent: 2
- proto: BoxFolderBlack
entities:
@@ -28387,6 +28419,11 @@ entities:
parent: 2
- proto: BoxFolderClipboard
entities:
+ - uid: 627
+ components:
+ - type: Transform
+ pos: -27.573792,6.6655574
+ parent: 2
- uid: 4370
components:
- type: Transform
@@ -28451,7 +28488,7 @@ entities:
- uid: 92
components:
- type: Transform
- pos: -27.519772,6.606838
+ pos: -24.623165,13.57118
parent: 2
- proto: BoxInflatable
entities:
@@ -28696,7 +28733,7 @@ entities:
- uid: 15039
components:
- type: Transform
- pos: -5.3761764,-45.357563
+ pos: -0.3603983,-45.15794
parent: 2
- uid: 17548
components:
@@ -43059,6 +43096,11 @@ 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
@@ -43087,7 +43129,7 @@ entities:
- uid: 1409
components:
- type: Transform
- pos: -32.5,8.5
+ pos: -15.5,11.5
parent: 2
- uid: 1436
components:
@@ -43112,7 +43154,7 @@ entities:
- uid: 1633
components:
- type: Transform
- pos: -32.5,9.5
+ pos: 25.5,-39.5
parent: 2
- uid: 1652
components:
@@ -43387,7 +43429,7 @@ entities:
- uid: 2508
components:
- type: Transform
- pos: 33.5,-54.5
+ pos: 38.5,-31.5
parent: 2
- uid: 2510
components:
@@ -43397,7 +43439,7 @@ entities:
- uid: 2555
components:
- type: Transform
- pos: 15.5,-56.5
+ pos: 39.5,-31.5
parent: 2
- uid: 2570
components:
@@ -43432,37 +43474,37 @@ entities:
- uid: 2627
components:
- type: Transform
- pos: 43.5,-31.5
+ pos: -15.5,4.5
parent: 2
- uid: 2628
components:
- type: Transform
- pos: -32.5,1.5
+ pos: -15.5,5.5
parent: 2
- uid: 2629
components:
- type: Transform
- pos: -32.5,2.5
+ pos: -15.5,6.5
parent: 2
- uid: 2630
components:
- type: Transform
- pos: -32.5,3.5
+ pos: -15.5,7.5
parent: 2
- uid: 2631
components:
- type: Transform
- pos: -32.5,4.5
+ pos: -15.5,8.5
parent: 2
- uid: 2632
components:
- type: Transform
- pos: -32.5,5.5
+ pos: -15.5,9.5
parent: 2
- uid: 2633
components:
- type: Transform
- pos: -32.5,6.5
+ pos: -15.5,10.5
parent: 2
- uid: 2634
components:
@@ -43477,32 +43519,32 @@ entities:
- uid: 2643
components:
- type: Transform
- pos: -32.5,7.5
+ pos: -15.5,-2.5
parent: 2
- uid: 2644
components:
- type: Transform
- pos: -32.5,-5.5
+ pos: -15.5,-3.5
parent: 2
- uid: 2645
components:
- type: Transform
- pos: -32.5,-6.5
+ pos: -15.5,-4.5
parent: 2
- uid: 2646
components:
- type: Transform
- pos: -32.5,-7.5
+ pos: -16.5,-4.5
parent: 2
- uid: 2647
components:
- type: Transform
- pos: -32.5,-8.5
+ pos: -16.5,-5.5
parent: 2
- uid: 2648
components:
- type: Transform
- pos: -32.5,-9.5
+ pos: -16.5,-6.5
parent: 2
- uid: 2651
components:
@@ -43512,12 +43554,12 @@ entities:
- uid: 2652
components:
- type: Transform
- pos: -32.5,-10.5
+ pos: 40.5,-31.5
parent: 2
- uid: 2666
components:
- type: Transform
- pos: 42.5,-31.5
+ pos: 27.5,-39.5
parent: 2
- uid: 2668
components:
@@ -43527,7 +43569,7 @@ entities:
- uid: 2677
components:
- type: Transform
- pos: 32.5,-54.5
+ pos: 37.5,-31.5
parent: 2
- uid: 2680
components:
@@ -43717,7 +43759,7 @@ entities:
- uid: 3125
components:
- type: Transform
- pos: 16.5,-56.5
+ pos: 34.5,-37.5
parent: 2
- uid: 3154
components:
@@ -43757,17 +43799,17 @@ entities:
- uid: 3476
components:
- type: Transform
- pos: 24.5,-55.5
+ pos: 28.5,-37.5
parent: 2
- uid: 3514
components:
- type: Transform
- pos: 29.5,-55.5
+ pos: 32.5,-37.5
parent: 2
- uid: 3560
components:
- type: Transform
- pos: 26.5,-55.5
+ pos: 30.5,-37.5
parent: 2
- uid: 3565
components:
@@ -43787,7 +43829,7 @@ entities:
- uid: 3622
components:
- type: Transform
- pos: 28.5,-55.5
+ pos: 27.5,-37.5
parent: 2
- uid: 3660
components:
@@ -43797,7 +43839,7 @@ entities:
- uid: 3681
components:
- type: Transform
- pos: 30.5,-54.5
+ pos: 27.5,-38.5
parent: 2
- uid: 3890
components:
@@ -44007,17 +44049,17 @@ entities:
- uid: 4308
components:
- type: Transform
- pos: 31.5,-54.5
+ pos: 29.5,-37.5
parent: 2
- uid: 4309
components:
- type: Transform
- pos: 30.5,-55.5
+ pos: 31.5,-37.5
parent: 2
- uid: 4310
components:
- type: Transform
- pos: 27.5,-55.5
+ pos: 33.5,-37.5
parent: 2
- uid: 4322
components:
@@ -44202,7 +44244,7 @@ entities:
- uid: 5853
components:
- type: Transform
- pos: 25.5,-55.5
+ pos: 23.5,7.5
parent: 2
- uid: 5879
components:
@@ -44252,7 +44294,7 @@ entities:
- uid: 5964
components:
- type: Transform
- pos: 22.5,6.5
+ pos: 31.5,-0.5
parent: 2
- uid: 6006
components:
@@ -44262,7 +44304,7 @@ entities:
- uid: 6026
components:
- type: Transform
- pos: -30.5,17.5
+ pos: 31.5,-1.5
parent: 2
- uid: 6038
components:
@@ -44487,7 +44529,7 @@ entities:
- uid: 6659
components:
- type: Transform
- pos: -30.5,18.5
+ pos: 31.5,-2.5
parent: 2
- uid: 6703
components:
@@ -44522,7 +44564,7 @@ entities:
- uid: 6959
components:
- type: Transform
- pos: -30.5,19.5
+ pos: -15.5,1.5
parent: 2
- uid: 6973
components:
@@ -44592,12 +44634,12 @@ entities:
- uid: 7133
components:
- type: Transform
- pos: -32.5,-1.5
+ pos: 21.5,7.5
parent: 2
- uid: 7141
components:
- type: Transform
- pos: 21.5,7.5
+ pos: 24.5,7.5
parent: 2
- uid: 7152
components:
@@ -44657,7 +44699,7 @@ entities:
- uid: 7595
components:
- type: Transform
- pos: 23.5,6.5
+ pos: -15.5,0.5
parent: 2
- uid: 7604
components:
@@ -44667,7 +44709,7 @@ entities:
- uid: 7695
components:
- type: Transform
- pos: -32.5,-2.5
+ pos: 22.5,7.5
parent: 2
- uid: 7728
components:
@@ -44722,7 +44764,7 @@ entities:
- uid: 8034
components:
- type: Transform
- pos: 21.5,6.5
+ pos: -15.5,2.5
parent: 2
- uid: 8048
components:
@@ -44872,17 +44914,17 @@ entities:
- uid: 8686
components:
- type: Transform
- pos: 30.5,6.5
+ pos: 31.5,7.5
parent: 2
- uid: 8691
components:
- type: Transform
- pos: 28.5,6.5
+ pos: 29.5,7.5
parent: 2
- uid: 8692
components:
- type: Transform
- pos: 29.5,6.5
+ pos: 30.5,7.5
parent: 2
- uid: 8709
components:
@@ -45087,7 +45129,7 @@ entities:
- uid: 8883
components:
- type: Transform
- pos: -32.5,-0.5
+ pos: -15.5,3.5
parent: 2
- uid: 8914
components:
@@ -45674,6 +45716,11 @@ 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
@@ -45782,7 +45829,7 @@ entities:
- uid: 10168
components:
- type: Transform
- pos: 27.5,-14.5
+ pos: 31.5,-3.5
parent: 2
- uid: 10176
components:
@@ -45877,32 +45924,32 @@ entities:
- uid: 10268
components:
- type: Transform
- pos: 28.5,-14.5
+ pos: 30.5,-21.5
parent: 2
- uid: 10269
components:
- type: Transform
- pos: 29.5,-14.5
+ pos: 29.5,-21.5
parent: 2
- uid: 10270
components:
- type: Transform
- pos: 30.5,-14.5
+ pos: 28.5,-21.5
parent: 2
- uid: 10271
components:
- type: Transform
- pos: -32.5,10.5
+ pos: 27.5,-21.5
parent: 2
- uid: 10272
components:
- type: Transform
- pos: -32.5,12.5
+ pos: 26.5,-21.5
parent: 2
- uid: 10273
components:
- type: Transform
- pos: -32.5,11.5
+ pos: 24.5,-21.5
parent: 2
- uid: 10274
components:
@@ -45957,7 +46004,7 @@ entities:
- uid: 10284
components:
- type: Transform
- pos: 26.5,-14.5
+ pos: 25.5,-21.5
parent: 2
- uid: 10285
components:
@@ -45992,28 +46039,23 @@ entities:
- uid: 10308
components:
- type: Transform
- pos: 25.5,-14.5
+ pos: 31.5,-21.5
parent: 2
- uid: 10309
components:
- type: Transform
- pos: 24.5,-14.5
+ pos: 31.5,-20.5
parent: 2
- uid: 10310
components:
- type: Transform
- pos: 27.5,6.5
+ pos: 31.5,-19.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
@@ -46037,7 +46079,7 @@ entities:
- uid: 10683
components:
- type: Transform
- pos: 17.5,-56.5
+ pos: 28.5,7.5
parent: 2
- uid: 10716
components:
@@ -46067,7 +46109,7 @@ entities:
- uid: 11177
components:
- type: Transform
- pos: 26.5,6.5
+ pos: 31.5,-9.5
parent: 2
- uid: 11179
components:
@@ -46152,12 +46194,12 @@ entities:
- uid: 11415
components:
- type: Transform
- pos: -33.5,-14.5
+ pos: 26.5,-39.5
parent: 2
- uid: 11417
components:
- type: Transform
- pos: -33.5,-13.5
+ pos: 36.5,-31.5
parent: 2
- uid: 11418
components:
@@ -46317,7 +46359,7 @@ entities:
- uid: 12560
components:
- type: Transform
- pos: -33.5,-12.5
+ pos: 27.5,7.5
parent: 2
- uid: 12669
components:
@@ -46332,22 +46374,27 @@ entities:
- uid: 12893
components:
- type: Transform
- pos: -33.5,-11.5
+ pos: -16.5,-11.5
parent: 2
- uid: 12894
components:
- type: Transform
- pos: -32.5,-11.5
+ pos: -16.5,-10.5
parent: 2
- uid: 12895
components:
- type: Transform
- pos: 24.5,6.5
+ pos: -16.5,-9.5
parent: 2
- uid: 12896
components:
- type: Transform
- pos: 25.5,6.5
+ pos: -16.5,-8.5
+ parent: 2
+ - uid: 12897
+ components:
+ - type: Transform
+ pos: -16.5,-7.5
parent: 2
- uid: 12985
components:
@@ -46424,11 +46471,21 @@ 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
@@ -46494,20 +46551,25 @@ 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: 24.5,-56.5
+ pos: 31.5,-6.5
parent: 2
- uid: 14794
components:
- type: Transform
- pos: 23.5,-56.5
+ pos: 31.5,-5.5
parent: 2
- uid: 14796
components:
- type: Transform
- pos: 22.5,-56.5
+ pos: 31.5,-4.5
parent: 2
- uid: 15145
components:
@@ -46892,12 +46954,17 @@ entities:
- uid: 17747
components:
- type: Transform
- pos: 21.5,-56.5
+ pos: 34.5,-36.5
+ parent: 2
+ - uid: 17748
+ components:
+ - type: Transform
+ pos: 34.5,-35.5
parent: 2
- uid: 17749
components:
- type: Transform
- pos: 19.5,-56.5
+ pos: 34.5,-34.5
parent: 2
- uid: 17759
components:
@@ -46982,12 +47049,12 @@ entities:
- uid: 17836
components:
- type: Transform
- pos: 18.5,-56.5
+ pos: 34.5,-33.5
parent: 2
- uid: 17838
components:
- type: Transform
- pos: -32.5,-3.5
+ pos: 34.5,-32.5
parent: 2
- uid: 17839
components:
@@ -47012,12 +47079,12 @@ entities:
- uid: 17871
components:
- type: Transform
- pos: -32.5,-4.5
+ pos: 34.5,-31.5
parent: 2
- uid: 17884
components:
- type: Transform
- pos: -30.5,16.5
+ pos: 35.5,-31.5
parent: 2
- uid: 17887
components:
@@ -47089,11 +47156,6 @@ 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
@@ -47297,12 +47359,12 @@ entities:
- uid: 18904
components:
- type: Transform
- pos: -30.5,14.5
+ pos: -15.5,-0.5
parent: 2
- uid: 18905
components:
- type: Transform
- pos: -31.5,14.5
+ pos: -15.5,-1.5
parent: 2
- uid: 18918
components:
@@ -47479,11 +47541,6 @@ 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
@@ -47747,27 +47804,32 @@ entities:
- uid: 21793
components:
- type: Transform
- pos: -32.5,13.5
+ pos: 31.5,0.5
parent: 2
- uid: 21794
components:
- type: Transform
- pos: -32.5,0.5
+ pos: 31.5,1.5
parent: 2
- uid: 21795
components:
- type: Transform
- pos: 20.5,-56.5
+ pos: 31.5,2.5
+ parent: 2
+ - uid: 21796
+ components:
+ - type: Transform
+ pos: 31.5,3.5
parent: 2
- uid: 21797
components:
- type: Transform
- pos: 35.5,-54.5
+ pos: 31.5,4.5
parent: 2
- uid: 21798
components:
- type: Transform
- pos: 36.5,-54.5
+ pos: 31.5,5.5
parent: 2
- uid: 21799
components:
@@ -47859,406 +47921,6 @@ 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
@@ -50213,11 +49875,6 @@ 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
@@ -52908,6 +52565,11 @@ 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
@@ -54820,6 +54482,7 @@ entities:
- uid: 6740
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -8.5,-38.5
parent: 2
- uid: 7109
@@ -54830,11 +54493,13 @@ 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
@@ -54845,26 +54510,31 @@ 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
@@ -54875,6 +54545,7 @@ entities:
- uid: 18384
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -10.5,-38.5
parent: 2
- uid: 18507
@@ -54885,6 +54556,7 @@ entities:
- uid: 18590
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -10.5,-39.5
parent: 2
- uid: 18777
@@ -54915,11 +54587,13 @@ 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
@@ -54927,81 +54601,97 @@ 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
@@ -55009,26 +54699,31 @@ 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
@@ -55039,6 +54734,7 @@ entities:
- uid: 1690
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -29.5,-45.5
parent: 2
- uid: 1742
@@ -55049,26 +54745,31 @@ 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
@@ -55079,66 +54780,79 @@ 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
@@ -55159,21 +54873,25 @@ 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
@@ -55184,11 +54902,13 @@ 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
@@ -55349,41 +55069,49 @@ 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
@@ -55516,11 +55244,13 @@ 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
@@ -55626,11 +55356,13 @@ 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
@@ -55646,11 +55378,13 @@ 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
@@ -55673,21 +55407,25 @@ 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
@@ -55703,16 +55441,19 @@ 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
@@ -55728,46 +55469,55 @@ 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
@@ -55825,16 +55575,19 @@ 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
@@ -55845,6 +55598,7 @@ entities:
- uid: 1637
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: 28.5,-33.5
parent: 2
- uid: 10403
@@ -55895,6 +55649,7 @@ entities:
- uid: 18852
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 28.5,-35.5
parent: 2
- uid: 22523
@@ -55912,71 +55667,85 @@ 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
@@ -55987,41 +55756,49 @@ 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
@@ -56032,6 +55809,7 @@ entities:
- uid: 17581
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -3.5,-34.5
parent: 2
- uid: 18844
@@ -56517,6 +56295,12 @@ 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
@@ -60684,11 +60468,6 @@ 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
@@ -63016,10 +62795,15 @@ entities:
- uid: 3621
components:
- type: Transform
- pos: 7.6282854,-16.45392
+ pos: 7.5706596,-16.44566
parent: 2
- proto: ClothingHandsGlovesColorYellowBudget
entities:
+ - uid: 14105
+ components:
+ - type: Transform
+ pos: -53.26527,-23.38064
+ parent: 2
- uid: 18092
components:
- type: Transform
@@ -63192,6 +62976,11 @@ 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
@@ -63234,18 +63023,6 @@ 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
@@ -63385,18 +63162,6 @@ 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
@@ -63512,6 +63277,13 @@ 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
@@ -64975,11 +64747,6 @@ 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
@@ -65200,13 +64967,6 @@ 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
@@ -65769,16 +65529,6 @@ 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
@@ -66438,12 +66188,6 @@ 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
@@ -67299,11 +67043,6 @@ 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
@@ -68853,6 +68592,12 @@ 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
@@ -69437,11 +69182,6 @@ 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
@@ -70910,15 +70650,6 @@ 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
@@ -71148,9 +70879,6 @@ entities:
rot: 3.141592653589793 rad
pos: 29.5,-58.5
parent: 2
- - type: MailingUnit
- tag: Trash
- targetList: []
- uid: 3659
components:
- type: Transform
@@ -71284,12 +71012,6 @@ 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
@@ -72165,11 +71887,6 @@ 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
@@ -72453,8 +72170,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 10.5,-2.5
parent: 2
- - type: Battery
- startingCharge: 30000
- uid: 11124
components:
- type: Transform
@@ -73577,6 +73292,10 @@ entities:
- 16320
- 16319
- 16318
+ - 15170
+ - 15169
+ - 15168
+ - 15166
- 15150
- 15164
- 15165
@@ -74263,6 +73982,7 @@ entities:
- uid: 2011
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -24.5,-21.5
parent: 2
- type: DeviceNetwork
@@ -74339,6 +74059,7 @@ entities:
- uid: 2704
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 24.5,-45.5
parent: 2
- uid: 2919
@@ -74366,6 +74087,7 @@ entities:
- uid: 4519
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -22.5,-21.5
parent: 2
- type: DeviceNetwork
@@ -74378,6 +74100,7 @@ entities:
- uid: 4559
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -23.5,-21.5
parent: 2
- type: DeviceNetwork
@@ -74390,6 +74113,7 @@ entities:
- uid: 4961
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: -32.5,-46.5
parent: 2
- type: DeviceNetwork
@@ -74402,6 +74126,7 @@ entities:
- uid: 4976
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: -34.5,-46.5
parent: 2
- type: DeviceNetwork
@@ -74414,6 +74139,7 @@ entities:
- uid: 5024
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: -33.5,-46.5
parent: 2
- type: DeviceNetwork
@@ -74436,6 +74162,7 @@ entities:
- uid: 5390
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -6.5,11.5
parent: 2
- type: DeviceNetwork
@@ -74447,6 +74174,7 @@ entities:
- uid: 5395
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: -3.5,18.5
parent: 2
- type: DeviceNetwork
@@ -74455,6 +74183,7 @@ entities:
- uid: 5417
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 2.5,15.5
parent: 2
- type: DeviceNetwork
@@ -74465,6 +74194,7 @@ entities:
- uid: 5420
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 12.5,21.5
parent: 2
- type: DeviceNetwork
@@ -74474,6 +74204,7 @@ entities:
- uid: 5421
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 13.5,20.5
parent: 2
- type: DeviceNetwork
@@ -74483,6 +74214,7 @@ entities:
- uid: 5467
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -6.5,10.5
parent: 2
- type: DeviceNetwork
@@ -74520,6 +74252,7 @@ entities:
- uid: 6558
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -34.5,-66.5
parent: 2
- type: DeviceNetwork
@@ -74554,6 +74287,7 @@ entities:
- uid: 8436
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -33.5,-66.5
parent: 2
- type: DeviceNetwork
@@ -74566,6 +74300,7 @@ entities:
- uid: 8446
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -32.5,-66.5
parent: 2
- type: DeviceNetwork
@@ -74692,6 +74427,7 @@ entities:
- uid: 11233
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 26.5,22.5
parent: 2
- type: DeviceNetwork
@@ -74701,6 +74437,7 @@ entities:
- uid: 12056
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 13.5,19.5
parent: 2
- type: DeviceNetwork
@@ -74710,6 +74447,7 @@ entities:
- uid: 12057
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 5.5,15.5
parent: 2
- type: DeviceNetwork
@@ -74720,6 +74458,7 @@ entities:
- uid: 12058
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: -2.5,21.5
parent: 2
- type: DeviceNetwork
@@ -74729,6 +74468,7 @@ entities:
- uid: 12062
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 4.5,21.5
parent: 2
- type: DeviceNetwork
@@ -74738,6 +74478,7 @@ entities:
- uid: 12068
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 4.5,15.5
parent: 2
- type: DeviceNetwork
@@ -74748,6 +74489,7 @@ entities:
- uid: 12246
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 10.5,25.5
parent: 2
- type: DeviceNetwork
@@ -74757,6 +74499,7 @@ entities:
- uid: 12247
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 5.5,21.5
parent: 2
- type: DeviceNetwork
@@ -74766,6 +74509,7 @@ entities:
- uid: 12294
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: -1.5,21.5
parent: 2
- type: DeviceNetwork
@@ -74775,21 +74519,25 @@ 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
@@ -74800,6 +74548,7 @@ entities:
- uid: 13367
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 18.5,21.5
parent: 2
- type: DeviceNetwork
@@ -74819,6 +74568,7 @@ entities:
- uid: 14308
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 36.5,-37.5
parent: 2
- type: DeviceNetwork
@@ -74828,6 +74578,7 @@ entities:
- uid: 14329
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 36.5,-35.5
parent: 2
- type: DeviceNetwork
@@ -74837,6 +74588,7 @@ entities:
- uid: 14368
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: -15.5,4.5
parent: 2
- type: DeviceNetwork
@@ -74848,6 +74600,7 @@ entities:
- uid: 14382
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: -14.5,4.5
parent: 2
- type: DeviceNetwork
@@ -74859,6 +74612,7 @@ entities:
- uid: 14931
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -46.5,-31.5
parent: 2
- type: DeviceNetwork
@@ -74868,6 +74622,7 @@ entities:
- uid: 14941
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -46.5,-28.5
parent: 2
- type: DeviceNetwork
@@ -74877,6 +74632,7 @@ entities:
- uid: 14945
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -37.5,-32.5
parent: 2
- type: DeviceNetwork
@@ -74887,6 +74643,7 @@ entities:
- uid: 14946
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -37.5,-33.5
parent: 2
- type: DeviceNetwork
@@ -74897,6 +74654,7 @@ entities:
- uid: 14947
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -37.5,-27.5
parent: 2
- type: DeviceNetwork
@@ -74907,6 +74665,7 @@ entities:
- uid: 14948
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -37.5,-26.5
parent: 2
- type: DeviceNetwork
@@ -74917,6 +74676,7 @@ entities:
- uid: 14949
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -32.5,-27.5
parent: 2
- type: DeviceNetwork
@@ -74930,6 +74690,7 @@ entities:
- uid: 14950
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -32.5,-28.5
parent: 2
- type: DeviceNetwork
@@ -74943,6 +74704,7 @@ entities:
- uid: 14951
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -32.5,-31.5
parent: 2
- type: DeviceNetwork
@@ -74956,6 +74718,7 @@ entities:
- uid: 14952
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -32.5,-32.5
parent: 2
- type: DeviceNetwork
@@ -74969,11 +74732,13 @@ 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
@@ -75051,9 +74816,50 @@ 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
@@ -75062,6 +74868,7 @@ entities:
- uid: 15172
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 26.5,-55.5
parent: 2
- type: DeviceNetwork
@@ -75070,6 +74877,7 @@ entities:
- uid: 15181
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 21.5,-23.5
parent: 2
- type: DeviceNetwork
@@ -75080,6 +74888,7 @@ entities:
- uid: 15182
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 20.5,-23.5
parent: 2
- type: DeviceNetwork
@@ -75090,6 +74899,7 @@ entities:
- uid: 15183
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 19.5,-23.5
parent: 2
- type: DeviceNetwork
@@ -75100,6 +74910,7 @@ entities:
- uid: 15192
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 11.5,-46.5
parent: 2
- type: DeviceNetwork
@@ -75112,6 +74923,7 @@ entities:
- uid: 15193
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 10.5,-46.5
parent: 2
- type: DeviceNetwork
@@ -75124,6 +74936,7 @@ entities:
- uid: 15194
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 9.5,-46.5
parent: 2
- type: DeviceNetwork
@@ -75174,6 +74987,7 @@ entities:
- uid: 15206
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 12.5,-22.5
parent: 2
- type: DeviceNetwork
@@ -75184,6 +74998,7 @@ entities:
- uid: 15207
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 12.5,-21.5
parent: 2
- type: DeviceNetwork
@@ -75194,6 +75009,7 @@ entities:
- uid: 15208
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 14.5,-23.5
parent: 2
- type: DeviceNetwork
@@ -75204,6 +75020,7 @@ entities:
- uid: 15209
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 15.5,-23.5
parent: 2
- type: DeviceNetwork
@@ -75214,6 +75031,7 @@ entities:
- uid: 15210
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 14.5,-27.5
parent: 2
- type: DeviceNetwork
@@ -75225,6 +75043,7 @@ entities:
- uid: 15211
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 15.5,-27.5
parent: 2
- type: DeviceNetwork
@@ -75236,6 +75055,7 @@ entities:
- uid: 15212
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 25.5,-20.5
parent: 2
- type: DeviceNetwork
@@ -75246,6 +75066,7 @@ entities:
- uid: 15213
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 25.5,-21.5
parent: 2
- type: DeviceNetwork
@@ -75256,6 +75077,7 @@ entities:
- uid: 15214
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 25.5,-22.5
parent: 2
- type: DeviceNetwork
@@ -75266,6 +75088,7 @@ entities:
- uid: 15220
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 43.5,-20.5
parent: 2
- type: DeviceNetwork
@@ -75277,6 +75100,7 @@ entities:
- uid: 15221
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 43.5,-21.5
parent: 2
- type: DeviceNetwork
@@ -75288,6 +75112,7 @@ entities:
- uid: 15222
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 43.5,-22.5
parent: 2
- type: DeviceNetwork
@@ -75299,6 +75124,7 @@ entities:
- uid: 15223
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 37.5,-19.5
parent: 2
- type: DeviceNetwork
@@ -75309,6 +75135,7 @@ entities:
- uid: 15224
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 36.5,-19.5
parent: 2
- type: DeviceNetwork
@@ -75319,6 +75146,7 @@ entities:
- uid: 15225
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 35.5,-19.5
parent: 2
- type: DeviceNetwork
@@ -75356,6 +75184,7 @@ entities:
- uid: 15273
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 16.5,8.5
parent: 2
- type: DeviceNetwork
@@ -75367,6 +75196,7 @@ entities:
- uid: 15274
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 15.5,8.5
parent: 2
- type: DeviceNetwork
@@ -75378,6 +75208,7 @@ entities:
- uid: 15275
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 14.5,8.5
parent: 2
- type: DeviceNetwork
@@ -75389,6 +75220,7 @@ entities:
- uid: 15301
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -14.5,-14.5
parent: 2
- type: DeviceNetwork
@@ -75398,6 +75230,7 @@ entities:
- uid: 15302
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -14.5,-15.5
parent: 2
- type: DeviceNetwork
@@ -75407,11 +75240,13 @@ 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
@@ -75420,6 +75255,7 @@ entities:
- uid: 15324
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -14.5,-11.5
parent: 2
- type: DeviceNetwork
@@ -75428,6 +75264,7 @@ entities:
- uid: 15337
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -21.5,-37.5
parent: 2
- type: DeviceNetwork
@@ -75439,6 +75276,7 @@ entities:
- uid: 15338
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -21.5,-38.5
parent: 2
- type: DeviceNetwork
@@ -75450,16 +75288,19 @@ 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
@@ -75471,6 +75312,7 @@ entities:
- uid: 15394
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -8.5,-5.5
parent: 2
- type: DeviceNetwork
@@ -75482,6 +75324,7 @@ entities:
- uid: 15395
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -1.5,-5.5
parent: 2
- type: DeviceNetwork
@@ -75493,6 +75336,7 @@ entities:
- uid: 15396
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -3.5,-5.5
parent: 2
- type: DeviceNetwork
@@ -75504,6 +75348,7 @@ entities:
- uid: 15429
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 34.5,-39.5
parent: 2
- type: DeviceNetwork
@@ -75515,6 +75360,7 @@ entities:
- uid: 15430
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 33.5,-39.5
parent: 2
- type: DeviceNetwork
@@ -75526,6 +75372,7 @@ entities:
- uid: 15431
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 39.5,-43.5
parent: 2
- type: DeviceNetwork
@@ -75544,6 +75391,7 @@ entities:
- uid: 15625
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: -20.5,-49.5
parent: 2
- type: DeviceNetwork
@@ -75555,6 +75403,7 @@ entities:
- uid: 15626
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: -19.5,-49.5
parent: 2
- type: DeviceNetwork
@@ -75585,6 +75434,7 @@ entities:
- uid: 15672
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: -17.5,-5.5
parent: 2
- type: DeviceNetwork
@@ -75649,6 +75499,7 @@ entities:
- uid: 16318
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: -26.5,-42.5
parent: 2
- type: DeviceNetwork
@@ -75660,6 +75511,7 @@ entities:
- uid: 16319
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: -26.5,-41.5
parent: 2
- type: DeviceNetwork
@@ -75671,6 +75523,7 @@ entities:
- uid: 16320
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: -26.5,-40.5
parent: 2
- type: DeviceNetwork
@@ -75738,6 +75591,7 @@ entities:
- uid: 18877
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: 17.5,12.5
parent: 2
- type: DeviceNetwork
@@ -75747,6 +75601,7 @@ entities:
- uid: 18878
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: 16.5,13.5
parent: 2
- type: DeviceNetwork
@@ -75756,6 +75611,7 @@ entities:
- uid: 18879
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: 15.5,13.5
parent: 2
- type: DeviceNetwork
@@ -75765,6 +75621,7 @@ entities:
- uid: 19001
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: -16.5,4.5
parent: 2
- type: DeviceNetwork
@@ -75776,6 +75633,7 @@ entities:
- uid: 19006
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: -16.5,-5.5
parent: 2
- type: DeviceNetwork
@@ -75787,6 +75645,7 @@ entities:
- uid: 19008
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: -15.5,-5.5
parent: 2
- type: DeviceNetwork
@@ -75795,6 +75654,14 @@ 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
@@ -75844,6 +75711,7 @@ entities:
- uid: 21847
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 26.5,21.5
parent: 2
- type: DeviceNetwork
@@ -77455,6 +77323,13 @@ 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
@@ -77462,6 +77337,14 @@ 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
@@ -79993,6 +79876,14 @@ 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
@@ -82033,6 +81924,13 @@ 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
@@ -82382,13 +82280,6 @@ 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
@@ -83259,20 +83150,6 @@ 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
@@ -87739,8 +87616,6 @@ entities:
rot: 3.141592653589793 rad
pos: 9.5,-36.5
parent: 2
- - type: AtmosPipeColor
- color: '#FF1212FF'
- uid: 14491
components:
- type: Transform
@@ -90457,11 +90332,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 17748
- components:
- - type: Transform
- pos: 34.5,-32.5
- parent: 2
- uid: 17878
components:
- type: Transform
@@ -91870,41 +91740,6 @@ 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
@@ -93173,8 +93008,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 11.5,-38.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 13613
components:
- type: Transform
@@ -93750,8 +93583,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 9.5,-40.5
parent: 2
- - type: AtmosPipeColor
- color: '#FF1212FF'
- uid: 17362
components:
- type: Transform
@@ -94033,14 +93864,6 @@ 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
@@ -94425,8 +94248,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 7178
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 666
components:
- type: Transform
@@ -96420,8 +96241,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 7178
- - type: AtmosPipeColor
- color: '#FF1212FF'
- uid: 9627
components:
- type: Transform
@@ -98095,11 +97914,13 @@ 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
@@ -98120,6 +97941,7 @@ entities:
- uid: 309
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 27.5,30.5
parent: 2
- uid: 310
@@ -98305,6 +98127,7 @@ entities:
- uid: 882
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: 20.5,-35.5
parent: 2
- uid: 891
@@ -98390,6 +98213,7 @@ entities:
- uid: 1164
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -59.5,-48.5
parent: 2
- uid: 1169
@@ -98415,6 +98239,7 @@ entities:
- uid: 1257
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -59.5,-46.5
parent: 2
- uid: 1265
@@ -98440,6 +98265,7 @@ entities:
- uid: 1318
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 37.5,26.5
parent: 2
- uid: 1322
@@ -98455,6 +98281,7 @@ entities:
- uid: 1339
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 35.5,27.5
parent: 2
- uid: 1357
@@ -98815,6 +98642,7 @@ entities:
- uid: 3146
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: 28.5,29.5
parent: 2
- uid: 3187
@@ -100290,6 +100118,7 @@ entities:
- uid: 8080
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: 18.5,-69.5
parent: 2
- uid: 8081
@@ -100925,6 +100754,7 @@ entities:
- uid: 10237
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: 20.5,-37.5
parent: 2
- uid: 10314
@@ -101270,6 +101100,7 @@ entities:
- uid: 11006
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -37.5,13.5
parent: 2
- uid: 11011
@@ -101560,11 +101391,13 @@ 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
@@ -101780,6 +101613,7 @@ entities:
- uid: 13039
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 34.5,27.5
parent: 2
- uid: 13085
@@ -101875,6 +101709,7 @@ entities:
- uid: 13351
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 38.5,26.5
parent: 2
- uid: 13387
@@ -102795,6 +102630,7 @@ entities:
- uid: 16987
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 17.5,-45.5
parent: 2
- uid: 17004
@@ -103825,6 +103661,7 @@ entities:
- uid: 18473
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 84.5,-10.5
parent: 2
- uid: 18485
@@ -103885,6 +103722,7 @@ entities:
- uid: 18520
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: 97.5,-31.5
parent: 2
- uid: 18533
@@ -105340,6 +105178,7 @@ entities:
- uid: 21811
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -37.5,11.5
parent: 2
- uid: 21882
@@ -105415,31 +105254,37 @@ 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
@@ -105460,16 +105305,19 @@ 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
@@ -106465,6 +106313,7 @@ entities:
- uid: 753
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -58.5,6.5
parent: 2
- uid: 2868
@@ -106695,6 +106544,7 @@ entities:
- uid: 17191
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -60.5,6.5
parent: 2
- uid: 17305
@@ -106969,36 +106819,6 @@ 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
@@ -107607,7 +107427,7 @@ entities:
- uid: 14409
components:
- type: Transform
- pos: -27.478722,15.819984
+ pos: -27.084833,15.678647
parent: 2
- proto: HospitalCurtainsOpen
entities:
@@ -108496,6 +108316,14 @@ entities:
parent: 2
- type: DeviceLinkSource
linkedPorts:
+ 16020:
+ - Pressed: Toggle
+ 11462:
+ - Pressed: Toggle
+ 11461:
+ - Pressed: Toggle
+ 11459:
+ - Pressed: Toggle
6345:
- Pressed: Toggle
2759:
@@ -108504,6 +108332,8 @@ entities:
- Pressed: Toggle
16090:
- Pressed: Toggle
+ 3717:
+ - Pressed: Toggle
- proto: LockableButtonCaptain
entities:
- uid: 195
@@ -108782,6 +108612,28 @@ 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
@@ -109111,14 +108963,12 @@ entities:
- Pressed: Toggle
527:
- Pressed: Toggle
- 20173:
+ 7944:
- Pressed: Toggle
17722:
- Pressed: Toggle
1053:
- Pressed: Toggle
- 4890:
- - Pressed: Toggle
- proto: LockerAtmosphericsFilledHardsuit
entities:
- uid: 1929
@@ -109515,18 +109365,24 @@ entities:
parent: 2
- proto: LogicGateOr
entities:
- - uid: 13412
+ - uid: 5002
components:
- type: Transform
anchored: True
- rot: -1.5707963267948966 rad
- pos: 27.5,27.5
+ rot: 3.141592653589793 rad
+ pos: 17.5,28.5
parent: 2
- type: DeviceLinkSink
invokeCounter: 2
- type: DeviceLinkSource
linkedPorts:
- 294:
+ 1722:
+ - Output: DoorBolt
+ 21849:
+ - Output: DoorBolt
+ 1756:
+ - Output: DoorBolt
+ 20665:
- Output: DoorBolt
- type: Physics
canCollide: False
@@ -109539,7 +109395,7 @@ entities:
pos: 16.5,27.5
parent: 2
- type: DeviceLinkSink
- invokeCounter: 3
+ invokeCounter: 2
- type: DeviceLinkSource
linkedPorts:
21849:
@@ -109548,6 +109404,8 @@ entities:
- Output: DoorBolt
5486:
- Output: DoorBolt
+ 22009:
+ - Output: DoorBolt
- type: Physics
canCollide: False
bodyType: Static
@@ -109559,13 +109417,15 @@ entities:
pos: 16.5,29.5
parent: 2
- type: DeviceLinkSink
- invokeCounter: 3
+ invokeCounter: 2
- type: DeviceLinkSource
linkedPorts:
20665:
- Output: DoorBolt
1756:
- Output: DoorBolt
+ 22009:
+ - Output: DoorBolt
5486:
- Output: DoorBolt
- type: Physics
@@ -110228,11 +110088,6 @@ 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
@@ -110365,13 +110220,6 @@ 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
@@ -110764,28 +110612,6 @@ 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
@@ -111488,6 +111314,11 @@ entities:
parent: 2
- type: TimedSpawner
intervalSeconds: 720
+ - uid: 12128
+ components:
+ - type: Transform
+ pos: 24.5,-2.5
+ parent: 2
- uid: 16089
components:
- type: Transform
@@ -111524,11 +111355,6 @@ 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
@@ -112031,7 +111857,6 @@ entities:
===================================================
- type: Contraband
- allowedJobs: []
allowedDepartments:
- Security
severity: Syndicate
@@ -113603,12 +113428,6 @@ 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
@@ -113830,6 +113649,12 @@ 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
@@ -114967,12 +114792,6 @@ 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
@@ -115056,11 +114875,6 @@ 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
@@ -115937,12 +115751,6 @@ 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
@@ -116024,16 +115832,16 @@ entities:
rot: -1.5707963267948966 rad
pos: 21.5,-47.5
parent: 2
- - uid: 4890
+ - uid: 6121
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,-42.5
+ pos: 42.5,12.5
parent: 2
- - uid: 6121
+ - uid: 6943
components:
- type: Transform
- pos: 42.5,12.5
+ rot: 3.141592653589793 rad
+ pos: -5.5,-45.5
parent: 2
- uid: 7335
components:
@@ -116180,23 +115988,17 @@ entities:
rot: 1.5707963267948966 rad
pos: -9.5,-25.5
parent: 2
- - uid: 17723
+ - uid: 17606
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,-26.5
+ rot: -1.5707963267948966 rad
+ pos: -7.5,-42.5
parent: 2
- - uid: 20173
+ - uid: 17723
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -6.5,-44.5
- parent: 2
- - uid: 20268
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.5,-53.5
+ pos: -5.5,-26.5
parent: 2
- uid: 20501
components:
@@ -116458,6 +116260,12 @@ 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
@@ -117311,7 +117119,7 @@ entities:
- uid: 15855
components:
- type: Transform
- pos: -4.4382114,-46.323513
+ pos: -0.66263175,-45.283024
parent: 2
- uid: 20693
components:
@@ -118152,6 +117960,11 @@ 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
@@ -118206,11 +118019,6 @@ 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
@@ -118752,21 +118560,25 @@ 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
@@ -118924,6 +118736,7 @@ entities:
- uid: 14507
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: -23.5,13.5
parent: 2
- uid: 15128
@@ -118939,6 +118752,7 @@ entities:
- uid: 16119
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: -13.5,-36.5
parent: 2
- uid: 16123
@@ -118989,6 +118803,7 @@ entities:
- uid: 16974
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: -13.5,-4.5
parent: 2
- uid: 17024
@@ -119029,31 +118844,37 @@ 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
@@ -119189,11 +119010,13 @@ 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
@@ -119213,11 +119036,6 @@ 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
@@ -119258,6 +119076,11 @@ 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
@@ -119283,6 +119106,7 @@ entities:
- uid: 12936
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: -37.5,-5.5
parent: 2
- proto: RandomSoap
@@ -119402,6 +119226,7 @@ entities:
- uid: 10972
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 50.5,-9.5
parent: 2
- uid: 11191
@@ -119417,6 +119242,7 @@ entities:
- uid: 15871
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: -23.5,-47.5
parent: 2
- uid: 15919
@@ -119836,38 +119662,6 @@ 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
@@ -119882,6 +119676,11 @@ entities:
parent: 2
- proto: RandomVendingSnacks
entities:
+ - uid: 1739
+ components:
+ - type: Transform
+ pos: -35.5,-62.5
+ parent: 2
- uid: 2604
components:
- type: Transform
@@ -120295,6 +120094,7 @@ entities:
- uid: 196
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 38.5,26.5
parent: 2
- uid: 211
@@ -120700,6 +120500,7 @@ entities:
- uid: 1712
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: 15.5,28.5
parent: 2
- uid: 1747
@@ -120710,6 +120511,7 @@ entities:
- uid: 1800
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: 15.5,27.5
parent: 2
- uid: 1832
@@ -120725,6 +120527,7 @@ entities:
- uid: 1891
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -35.5,13.5
parent: 2
- uid: 1900
@@ -120740,6 +120543,7 @@ entities:
- uid: 1916
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 35.5,27.5
parent: 2
- uid: 1958
@@ -120765,6 +120569,7 @@ entities:
- uid: 2329
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 34.5,27.5
parent: 2
- uid: 2352
@@ -121060,6 +120865,7 @@ entities:
- uid: 4494
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -35.5,11.5
parent: 2
- uid: 4577
@@ -121110,6 +120916,7 @@ entities:
- uid: 4745
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: 51.5,20.5
parent: 2
- uid: 4754
@@ -121305,11 +121112,13 @@ 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
@@ -121415,11 +121224,13 @@ 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
@@ -121915,6 +121726,7 @@ entities:
- uid: 8571
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: 46.5,25.5
parent: 2
- uid: 8583
@@ -122750,6 +122562,7 @@ entities:
- uid: 13341
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 37.5,26.5
parent: 2
- uid: 13369
@@ -123225,6 +123038,7 @@ entities:
- uid: 21838
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -37.5,11.5
parent: 2
- uid: 21867
@@ -123275,11 +123089,13 @@ 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
@@ -123295,16 +123111,19 @@ 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
@@ -123315,16 +123134,19 @@ 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
@@ -123416,7 +123238,7 @@ entities:
- uid: 8291
components:
- type: Transform
- pos: -21.73,6.5
+ pos: -21.461847,6.590386
parent: 2
- type: Blocking
blockingToggleActionEntity: 5100
@@ -123431,23 +123253,15 @@ entities:
- uid: 632
components:
- type: Transform
- pos: -21.73,6.63
+ pos: -21.709589,6.6321044
parent: 2
- proto: RiotShield
entities:
- uid: 3686
components:
- type: Transform
- pos: -21.71,6.432082
+ pos: -21.211723,6.5486903
parent: 2
- - type: Blocking
- blockingToggleActionEntity: 22750
- - type: ActionsContainer
- - type: ContainerContainer
- containers:
- actions: !type:Container
- ents:
- - 22750
- proto: RobocopCircuitBoard
entities:
- uid: 16469
@@ -123940,10 +123754,10 @@ entities:
- type: Transform
pos: -37.7531,-24.421627
parent: 2
- - uid: 17606
+ - uid: 21619
components:
- type: Transform
- pos: -57.49946,-58.450542
+ pos: -57.542072,-58.42012
parent: 2
- proto: SheetGlass1
entities:
@@ -124136,13 +123950,6 @@ 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
@@ -124241,6 +124048,12 @@ 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
@@ -124340,6 +124153,24 @@ 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
@@ -124415,6 +124246,12 @@ 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
@@ -125188,26 +125025,6 @@ 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
@@ -127463,16 +127280,19 @@ 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
@@ -127480,11 +127300,13 @@ 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
@@ -127495,11 +127317,13 @@ 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
@@ -127608,6 +127432,7 @@ entities:
- uid: 61
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: -3.5,-53.5
parent: 2
- proto: SpawnMobReindeerDoe
@@ -127615,6 +127440,7 @@ entities:
- uid: 10952
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 6.5,-53.5
parent: 2
- proto: SpawnMobShiva
@@ -128055,11 +127881,21 @@ 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
@@ -128258,11 +128094,6 @@ 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
@@ -128594,11 +128425,6 @@ 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
@@ -128614,6 +128440,11 @@ 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
@@ -128781,6 +128612,11 @@ 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
@@ -128792,11 +128628,6 @@ 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
@@ -128838,11 +128669,6 @@ 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
@@ -128889,12 +128715,6 @@ 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
@@ -130234,6 +130054,7 @@ entities:
- uid: 71
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: 13.5,-59.5
parent: 2
- uid: 270
@@ -130249,11 +130070,13 @@ 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
@@ -130299,16 +130122,19 @@ 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
@@ -130319,6 +130145,7 @@ entities:
- uid: 1670
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 19.5,15.5
parent: 2
- uid: 1674
@@ -130334,16 +130161,19 @@ 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
@@ -130364,16 +130194,19 @@ 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
@@ -130384,6 +130217,7 @@ entities:
- uid: 3111
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: -5.5,-23.5
parent: 2
- uid: 3191
@@ -130404,6 +130238,7 @@ entities:
- uid: 3263
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 1.5,-33.5
parent: 2
- uid: 3275
@@ -130429,11 +130264,13 @@ 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
@@ -130489,6 +130326,7 @@ entities:
- uid: 4209
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 26.5,-38.5
parent: 2
- uid: 4241
@@ -130504,11 +130342,13 @@ 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
@@ -130519,6 +130359,7 @@ entities:
- uid: 4317
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 37.5,-27.5
parent: 2
- uid: 4326
@@ -130529,11 +130370,13 @@ 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
@@ -130549,11 +130392,13 @@ 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
@@ -130564,6 +130409,7 @@ entities:
- uid: 4762
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 7.5,-19.5
parent: 2
- uid: 4807
@@ -130574,11 +130420,13 @@ 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
@@ -130594,6 +130442,7 @@ entities:
- uid: 5610
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -23.5,21.5
parent: 2
- uid: 5943
@@ -130604,6 +130453,7 @@ entities:
- uid: 6653
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: -3.5,-15.5
parent: 2
- uid: 6677
@@ -130614,11 +130464,13 @@ 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
@@ -130634,61 +130486,73 @@ 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
@@ -130709,6 +130573,7 @@ entities:
- uid: 9380
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 28.5,-16.5
parent: 2
- uid: 9515
@@ -130719,11 +130584,13 @@ 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
@@ -130734,6 +130601,7 @@ entities:
- uid: 10439
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: -26.5,15.5
parent: 2
- uid: 10489
@@ -130744,16 +130612,19 @@ 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
@@ -130764,21 +130635,25 @@ 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
@@ -130789,16 +130664,19 @@ 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
@@ -130809,6 +130687,7 @@ entities:
- uid: 12384
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: -44.5,-29.5
parent: 2
- uid: 12429
@@ -130819,6 +130698,7 @@ entities:
- uid: 12538
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 24.5,8.5
parent: 2
- uid: 12647
@@ -130829,6 +130709,7 @@ entities:
- uid: 12668
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 27.5,-12.5
parent: 2
- uid: 12748
@@ -130839,31 +130720,37 @@ 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
@@ -130874,6 +130761,7 @@ entities:
- uid: 13061
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 10.5,-18.5
parent: 2
- uid: 13194
@@ -130889,11 +130777,13 @@ 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
@@ -130959,11 +130849,13 @@ 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
@@ -130979,21 +130871,25 @@ 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
@@ -131009,11 +130905,13 @@ 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
@@ -131114,6 +131012,7 @@ entities:
- uid: 20661
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: -7.5,-6.5
parent: 2
- uid: 20681
@@ -131129,11 +131028,13 @@ 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
@@ -131149,6 +131050,7 @@ entities:
- uid: 21757
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 21.5,4.5
parent: 2
- uid: 22111
@@ -131216,6 +131118,7 @@ entities:
- uid: 749
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -28.5,-26.5
parent: 2
- uid: 773
@@ -131226,11 +131129,13 @@ 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
@@ -131261,6 +131166,7 @@ entities:
- uid: 4193
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: 20.5,-23.5
parent: 2
- uid: 4227
@@ -131276,6 +131182,7 @@ entities:
- uid: 4596
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -27.5,-33.5
parent: 2
- uid: 6371
@@ -131296,6 +131203,7 @@ entities:
- uid: 11265
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -29.5,-33.5
parent: 2
- uid: 11322
@@ -131306,6 +131214,7 @@ entities:
- uid: 11331
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -28.5,-33.5
parent: 2
- uid: 11453
@@ -131316,6 +131225,7 @@ entities:
- uid: 12009
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -29.5,-26.5
parent: 2
- uid: 12596
@@ -131338,21 +131248,25 @@ 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
@@ -131390,14 +131304,10 @@ 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
@@ -131413,6 +131323,7 @@ entities:
- uid: 14611
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -4.5,-46.5
parent: 2
- uid: 14721
@@ -131448,11 +131359,13 @@ 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
@@ -131716,6 +131629,7 @@ entities:
- uid: 6734
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 27.5,-33.5
parent: 2
- proto: TableReinforced
@@ -131723,6 +131637,7 @@ entities:
- uid: 164
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 20.5,-15.5
parent: 2
- uid: 443
@@ -131748,6 +131663,7 @@ entities:
- uid: 851
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 8.5,22.5
parent: 2
- uid: 853
@@ -131763,11 +131679,13 @@ 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
@@ -131808,11 +131726,13 @@ 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
@@ -131833,6 +131753,7 @@ entities:
- uid: 5363
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 9.5,18.5
parent: 2
- uid: 7540
@@ -131863,16 +131784,19 @@ 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
@@ -131883,11 +131807,13 @@ 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
@@ -131895,26 +131821,31 @@ 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
@@ -132501,23 +132432,6 @@ 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
@@ -132565,6 +132479,11 @@ 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
@@ -132710,16 +132629,19 @@ 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
@@ -132740,11 +132662,13 @@ 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
@@ -132775,11 +132699,13 @@ 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
@@ -133312,19 +133238,6 @@ 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
@@ -133606,6 +133519,11 @@ 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
@@ -133613,6 +133531,11 @@ entities:
parent: 2
- proto: VendingMachineClothing
entities:
+ - uid: 10901
+ components:
+ - type: Transform
+ pos: 13.5,-25.5
+ parent: 2
- uid: 11490
components:
- type: Transform
@@ -133859,6 +133782,13 @@ 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
@@ -133878,6 +133808,18 @@ 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
@@ -134049,6 +133991,7 @@ entities:
- uid: 217
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -35.5,10.5
parent: 2
- uid: 222
@@ -134599,6 +134542,7 @@ entities:
- uid: 1037
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: 24.5,19.5
parent: 2
- uid: 1042
@@ -134619,6 +134563,7 @@ entities:
- uid: 1070
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: 24.5,18.5
parent: 2
- uid: 1084
@@ -134654,11 +134599,13 @@ 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
@@ -134719,11 +134666,13 @@ 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
@@ -135249,6 +135198,7 @@ entities:
- uid: 2351
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 33.5,27.5
parent: 2
- uid: 2353
@@ -135264,6 +135214,7 @@ entities:
- uid: 2389
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 36.5,27.5
parent: 2
- uid: 2413
@@ -135789,6 +135740,7 @@ entities:
- uid: 3825
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: 25.5,17.5
parent: 2
- uid: 3826
@@ -136296,11 +136248,6 @@ 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
@@ -136399,6 +136346,7 @@ entities:
- uid: 5176
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: 18.5,27.5
parent: 2
- uid: 5185
@@ -136834,6 +136782,7 @@ entities:
- uid: 5886
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: 48.5,25.5
parent: 2
- uid: 5900
@@ -137344,6 +137293,7 @@ entities:
- uid: 6948
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 41.5,15.5
parent: 2
- uid: 6949
@@ -137839,6 +137789,7 @@ entities:
- uid: 8507
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: 46.5,18.5
parent: 2
- uid: 8541
@@ -137994,6 +137945,7 @@ entities:
- uid: 8853
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: 48.5,24.5
parent: 2
- uid: 8861
@@ -138154,6 +138106,7 @@ entities:
- uid: 9602
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: 24.5,17.5
parent: 2
- uid: 9609
@@ -138379,6 +138332,7 @@ entities:
- uid: 10423
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -58.5,-55.5
parent: 2
- uid: 10428
@@ -138579,6 +138533,7 @@ entities:
- uid: 11216
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 26.5,30.5
parent: 2
- uid: 11239
@@ -138724,6 +138679,7 @@ entities:
- uid: 11892
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: -31.5,-33.5
parent: 2
- uid: 11894
@@ -138749,6 +138705,7 @@ entities:
- uid: 12022
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 45.5,14.5
parent: 2
- uid: 12026
@@ -139074,6 +139031,7 @@ entities:
- uid: 12784
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 3.5,-54.5
parent: 2
- uid: 12787
@@ -139119,6 +139077,7 @@ entities:
- uid: 12852
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -5.5,-54.5
parent: 2
- uid: 12873
@@ -139884,11 +139843,13 @@ 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
@@ -140139,6 +140100,7 @@ entities:
- uid: 17459
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 50.5,13.5
parent: 2
- uid: 17461
@@ -140179,6 +140141,7 @@ entities:
- uid: 17817
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -58.5,-51.5
parent: 2
- uid: 17849
@@ -140269,6 +140232,7 @@ entities:
- uid: 18409
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: 44.5,23.5
parent: 2
- uid: 18523
@@ -140304,6 +140268,7 @@ entities:
- uid: 19229
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 4.5,-55.5
parent: 2
- uid: 19240
@@ -140334,6 +140299,7 @@ entities:
- uid: 19264
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 4.5,-57.5
parent: 2
- uid: 19398
@@ -140419,6 +140385,7 @@ entities:
- uid: 20663
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 26.5,26.5
parent: 2
- uid: 20670
@@ -140439,6 +140406,7 @@ entities:
- uid: 21785
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: 44.5,25.5
parent: 2
- uid: 21807
@@ -140469,6 +140437,7 @@ entities:
- uid: 21886
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 51.5,12.5
parent: 2
- uid: 21891
@@ -140494,6 +140463,7 @@ entities:
- uid: 22013
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -36.5,10.5
parent: 2
- uid: 22015
@@ -140504,11 +140474,13 @@ 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
@@ -140524,6 +140496,7 @@ entities:
- uid: 22086
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -34.5,10.5
parent: 2
- uid: 22089
@@ -140559,11 +140532,13 @@ 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
@@ -140641,6 +140616,7 @@ entities:
- uid: 1118
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -59.5,-54.5
parent: 2
- uid: 1158
@@ -140671,6 +140647,7 @@ entities:
- uid: 2805
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 4.5,-87.5
parent: 2
- uid: 3008
@@ -140716,31 +140693,37 @@ 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
@@ -140761,26 +140744,31 @@ 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
@@ -140796,11 +140784,13 @@ 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
@@ -140811,11 +140801,13 @@ 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
@@ -140841,26 +140833,31 @@ 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
@@ -140871,11 +140868,13 @@ 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
@@ -140986,6 +140985,7 @@ entities:
- uid: 5774
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 4.5,-85.5
parent: 2
- uid: 5775
@@ -141036,6 +141036,7 @@ entities:
- uid: 5866
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 13.5,-86.5
parent: 2
- uid: 5881
@@ -141046,11 +141047,13 @@ 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
@@ -141066,6 +141069,7 @@ entities:
- uid: 6085
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 8.5,-65.5
parent: 2
- uid: 6099
@@ -141081,6 +141085,7 @@ entities:
- uid: 6161
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -12.5,-91.5
parent: 2
- uid: 6179
@@ -141091,6 +141096,7 @@ entities:
- uid: 6186
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -3.5,-73.5
parent: 2
- uid: 6223
@@ -141141,26 +141147,31 @@ 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
@@ -141176,16 +141187,19 @@ 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
@@ -141196,6 +141210,7 @@ entities:
- uid: 6510
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 11.5,-76.5
parent: 2
- uid: 6604
@@ -141276,6 +141291,7 @@ entities:
- uid: 7087
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -8.5,-76.5
parent: 2
- uid: 7107
@@ -141301,6 +141317,7 @@ entities:
- uid: 7175
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -3.5,-66.5
parent: 2
- uid: 7210
@@ -141326,6 +141343,7 @@ entities:
- uid: 7286
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -4.5,-61.5
parent: 2
- uid: 7298
@@ -141336,6 +141354,7 @@ entities:
- uid: 7315
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -3.5,-72.5
parent: 2
- uid: 7318
@@ -141346,6 +141365,7 @@ entities:
- uid: 7320
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 11.5,-79.5
parent: 2
- uid: 7326
@@ -141381,11 +141401,13 @@ 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
@@ -141401,6 +141423,7 @@ entities:
- uid: 7612
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -3.5,-68.5
parent: 2
- uid: 7633
@@ -141531,6 +141554,7 @@ entities:
- uid: 8041
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -5.5,-96.5
parent: 2
- uid: 8042
@@ -141546,6 +141570,7 @@ entities:
- uid: 8051
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 14.5,-89.5
parent: 2
- uid: 8089
@@ -141661,6 +141686,7 @@ entities:
- uid: 8725
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -58.5,-49.5
parent: 2
- uid: 8737
@@ -141851,6 +141877,7 @@ entities:
- uid: 10925
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: -31.5,-64.5
parent: 2
- uid: 10978
@@ -141921,11 +141948,13 @@ 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
@@ -141936,36 +141965,43 @@ 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
@@ -141976,26 +142012,31 @@ 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
@@ -142046,6 +142087,7 @@ entities:
- uid: 11903
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: -30.5,-39.5
parent: 2
- uid: 11927
@@ -142061,11 +142103,13 @@ 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
@@ -142081,6 +142125,7 @@ entities:
- uid: 12207
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: -36.5,-65.5
parent: 2
- uid: 12224
@@ -142091,31 +142136,37 @@ 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
@@ -142126,6 +142177,7 @@ entities:
- uid: 12342
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: -31.5,-82.5
parent: 2
- uid: 12353
@@ -142136,6 +142188,7 @@ entities:
- uid: 12362
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: -31.5,-59.5
parent: 2
- uid: 12365
@@ -142146,6 +142199,7 @@ entities:
- uid: 12390
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: -25.5,-20.5
parent: 2
- uid: 12441
@@ -142156,11 +142210,13 @@ 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
@@ -142181,11 +142237,13 @@ 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
@@ -142196,6 +142254,7 @@ entities:
- uid: 12616
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: -36.5,-60.5
parent: 2
- uid: 12622
@@ -142206,6 +142265,7 @@ entities:
- uid: 12625
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: -47.5,-58.5
parent: 2
- uid: 12648
@@ -142241,21 +142301,25 @@ 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
@@ -142276,6 +142340,7 @@ entities:
- uid: 12811
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -0.5,-54.5
parent: 2
- uid: 12812
@@ -142291,6 +142356,7 @@ entities:
- uid: 12859
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: -49.5,-60.5
parent: 2
- uid: 12902
@@ -142316,6 +142382,7 @@ entities:
- uid: 13211
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: -51.5,-61.5
parent: 2
- uid: 13223
@@ -142336,6 +142403,7 @@ entities:
- uid: 13229
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: -35.5,-11.5
parent: 2
- uid: 13250
@@ -142351,66 +142419,79 @@ 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
@@ -142426,121 +142507,145 @@ 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
@@ -142551,21 +142656,25 @@ 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
@@ -142596,16 +142705,19 @@ 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
@@ -142616,16 +142728,19 @@ 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
@@ -142646,6 +142761,7 @@ entities:
- uid: 15015
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 4.5,-54.5
parent: 2
- uid: 15023
@@ -142661,11 +142777,13 @@ 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
@@ -142691,41 +142809,49 @@ 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
@@ -143371,21 +143497,25 @@ 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
@@ -143693,6 +143823,7 @@ entities:
- uid: 1812
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: -25.5,-44.5
parent: 2
- uid: 1823
@@ -144518,6 +144649,7 @@ entities:
- uid: 5425
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 40.5,16.5
parent: 2
- uid: 5513
@@ -144928,6 +145060,7 @@ entities:
- uid: 6300
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 20.5,-42.5
parent: 2
- uid: 6339
@@ -144953,6 +145086,7 @@ entities:
- uid: 6365
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 20.5,-44.5
parent: 2
- uid: 6429
@@ -145773,6 +145907,7 @@ entities:
- uid: 10707
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -54.5,-54.5
parent: 2
- uid: 10722
@@ -147015,6 +147150,11 @@ 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
@@ -147028,6 +147168,7 @@ entities:
- uid: 21900
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 20.5,4.5
parent: 2
- uid: 21967
@@ -147038,6 +147179,7 @@ entities:
- uid: 21997
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -54.5,-52.5
parent: 2
- uid: 22002
@@ -147048,6 +147190,7 @@ entities:
- uid: 22003
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 14.5,-8.5
parent: 2
- uid: 22005
@@ -147135,6 +147278,7 @@ entities:
- uid: 3838
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 17.5,-58.5
parent: 2
- uid: 4867
@@ -147155,6 +147299,7 @@ entities:
- uid: 5657
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 17.5,-59.5
parent: 2
- uid: 6053
@@ -147185,26 +147330,31 @@ 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
@@ -147215,6 +147365,7 @@ entities:
- uid: 9862
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 35.5,15.5
parent: 2
- uid: 9896
@@ -147240,6 +147391,7 @@ entities:
- uid: 9938
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 20.5,-58.5
parent: 2
- uid: 9992
@@ -147270,21 +147422,25 @@ 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
@@ -147300,6 +147456,7 @@ entities:
- uid: 10571
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -17.5,-31.5
parent: 2
- uid: 10627
@@ -147330,6 +147487,7 @@ entities:
- uid: 10706
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -18.5,-31.5
parent: 2
- uid: 10711
@@ -147370,6 +147528,7 @@ entities:
- uid: 10914
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 20.5,9.5
parent: 2
- uid: 11001
@@ -147380,6 +147539,7 @@ entities:
- uid: 11074
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 23.5,-38.5
parent: 2
- uid: 11118
@@ -147420,6 +147580,7 @@ entities:
- uid: 11287
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 30.5,20.5
parent: 2
- uid: 11310
@@ -147435,6 +147596,7 @@ entities:
- uid: 11439
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 16.5,-45.5
parent: 2
- uid: 11523
@@ -147445,11 +147607,13 @@ 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
@@ -147480,6 +147644,7 @@ entities:
- uid: 11766
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 5.5,-35.5
parent: 2
- uid: 11795
@@ -147490,6 +147655,7 @@ entities:
- uid: 11805
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 26.5,-57.5
parent: 2
- uid: 11841
@@ -147505,6 +147671,7 @@ entities:
- uid: 11931
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -19.5,-31.5
parent: 2
- uid: 11932
@@ -147575,6 +147742,7 @@ entities:
- uid: 12132
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 7.5,-40.5
parent: 2
- uid: 12202
@@ -147630,11 +147798,13 @@ 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
@@ -147645,6 +147815,7 @@ entities:
- uid: 12628
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 29.5,24.5
parent: 2
- uid: 12722
@@ -147655,36 +147826,43 @@ 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
@@ -147695,46 +147873,55 @@ 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
@@ -147750,6 +147937,7 @@ entities:
- uid: 13740
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 24.5,4.5
parent: 2
- uid: 13762
@@ -147785,6 +147973,7 @@ entities:
- uid: 13892
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 36.5,16.5
parent: 2
- uid: 14209
@@ -147800,6 +147989,7 @@ entities:
- uid: 14348
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 23.5,3.5
parent: 2
- uid: 14479
@@ -147825,6 +148015,7 @@ entities:
- uid: 14833
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 23.5,-42.5
parent: 2
- uid: 15144
@@ -147835,6 +148026,7 @@ entities:
- uid: 15154
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 23.5,-44.5
parent: 2
- uid: 15283
@@ -147870,6 +148062,7 @@ entities:
- uid: 15606
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 0.5,-45.5
parent: 2
- uid: 15663
@@ -147890,6 +148083,7 @@ entities:
- uid: 15878
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 35.5,11.5
parent: 2
- uid: 15906
@@ -147915,11 +148109,13 @@ 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
@@ -147930,6 +148126,7 @@ entities:
- uid: 17073
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 35.5,10.5
parent: 2
- uid: 17120
@@ -147965,6 +148162,7 @@ entities:
- uid: 18065
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 34.5,16.5
parent: 2
- uid: 18190
@@ -148005,11 +148203,13 @@ 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
@@ -148020,6 +148220,7 @@ entities:
- uid: 18970
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 29.5,20.5
parent: 2
- uid: 18974
@@ -148030,36 +148231,43 @@ 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
@@ -148075,16 +148283,19 @@ 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
@@ -148100,61 +148311,73 @@ 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
@@ -148165,21 +148388,25 @@ 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
@@ -148515,27 +148742,6 @@ 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
@@ -148543,28 +148749,6 @@ 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 c41d2540488..86dac99313c 100644
--- a/Resources/Maps/bagel.yml
+++ b/Resources/Maps/bagel.yml
@@ -77,99 +77,99 @@ entities:
chunks:
0,-1:
ind: 0,-1
- tiles: XQAAAAABXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAXQAAAAABXQAAAAABXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAACfgAAAAAAXQAAAAACXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAABbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAXQAAAAABXQAAAAADXQAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAATQAAAAADHwAAAAADHwAAAAACfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABHwAAAAACHwAAAAACHwAAAAABTwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAHwAAAAADHwAAAAAAfgAAAAAATwAAAAAAEQAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAABHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABHwAAAAADHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAD
+ tiles: XQAAAAACXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAABfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAACfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAATQAAAAACHwAAAAAAHwAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAHwAAAAADHwAAAAACHwAAAAADTwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACHwAAAAAAHwAAAAADfgAAAAAATwAAAAAAEQAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABHwAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAADfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAB
version: 6
-1,-1:
ind: -1,-1
- tiles: XQAAAAACXQAAAAABfgAAAAAAXQAAAAACXQAAAAACXQAAAAACZAAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADZAAAAAAAXQAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABZAAAAAAAXQAAAAADZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABZAAAAAAAXQAAAAABXQAAAAADfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAdAAAAAAAdAAAAAACfgAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAdAAAAAABcwAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAABfgAAAAAAHwAAAAADXQAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAACMwAAAAAAegAAAAABegAAAAAAegAAAAAAfgAAAAAAHwAAAAADXQAAAAABXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAACegAAAAAAegAAAAACMwAAAAAAegAAAAADegAAAAACegAAAAADfgAAAAAAHwAAAAACXQAAAAABXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAADJAAAAAADegAAAAADegAAAAADegAAAAADfgAAAAAAHwAAAAADXQAAAAABXQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAABfgAAAAAAegAAAAACegAAAAAAegAAAAAAfgAAAAAAHwAAAAADTQAAAAADTQAAAAACfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAHwAAAAABHwAAAAAAHwAAAAADfgAAAAAAHwAAAAACXQAAAAABXQAAAAABXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAAC
+ tiles: XQAAAAADXQAAAAADfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABZAAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAXQAAAAACXQAAAAACXQAAAAABZAAAAAAAXQAAAAADZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAZAAAAAAAXQAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABZAAAAAAAXQAAAAAAXQAAAAADfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAdAAAAAAAdAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAdAAAAAABcwAAAAACfgAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAABegAAAAADfgAAAAAAHwAAAAABXQAAAAACXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAADMwAAAAAAegAAAAADegAAAAAAegAAAAADfgAAAAAAHwAAAAAAXQAAAAABXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAABegAAAAACegAAAAADMwAAAAAAegAAAAABegAAAAABegAAAAADfgAAAAAAHwAAAAACXQAAAAAAXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAACegAAAAAAegAAAAABJAAAAAACegAAAAAAegAAAAADegAAAAABfgAAAAAAHwAAAAADXQAAAAACXQAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAegAAAAADegAAAAADegAAAAACfgAAAAAAegAAAAABegAAAAABegAAAAADfgAAAAAAHwAAAAABTQAAAAABTQAAAAADfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAHwAAAAADHwAAAAADHwAAAAAAfgAAAAAAHwAAAAADXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAAC
version: 6
0,0:
ind: 0,0
- tiles: HwAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAALwAAAAACLwAAAAAALwAAAAABfQAAAAAAfgAAAAAAXQAAAAACHwAAAAADHwAAAAACHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAALwAAAAACDAAAAAADDAAAAAACDAAAAAADLwAAAAAAfgAAAAAAXQAAAAACHwAAAAAAHwAAAAAAHwAAAAACHwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAALwAAAAAADAAAAAACDAAAAAACDAAAAAADDAAAAAACDAAAAAADLwAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAALwAAAAAADAAAAAACDAAAAAACDAAAAAACDAAAAAABDAAAAAABLwAAAAABXQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAALwAAAAACHwAAAAABDAAAAAACDAAAAAAADAAAAAAAHwAAAAACLwAAAAADXQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAALwAAAAADLwAAAAABTgAAAAABLwAAAAAALwAAAAAAfgAAAAAATQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAAATQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAABTQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABTQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAABfgAAAAAAXQAAAAACXQAAAAADXQAAAAABfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAABXQAAAAADXQAAAAACfgAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAADfgAAAAAAXQAAAAAB
+ tiles: HwAAAAABHwAAAAACHwAAAAABHwAAAAACHwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAABHwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAALwAAAAABLwAAAAADLwAAAAAAfQAAAAAAfgAAAAAAXQAAAAADHwAAAAABHwAAAAABHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAALwAAAAADDAAAAAABDAAAAAACDAAAAAADLwAAAAABfgAAAAAAXQAAAAACHwAAAAADHwAAAAADHwAAAAADHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAALwAAAAACDAAAAAADDAAAAAADDAAAAAABDAAAAAAADAAAAAACLwAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAALwAAAAADDAAAAAADDAAAAAADDAAAAAABDAAAAAACDAAAAAADLwAAAAADXQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAALwAAAAABHwAAAAACDAAAAAACDAAAAAACDAAAAAABHwAAAAACLwAAAAAAXQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAALwAAAAADLwAAAAABTgAAAAABLwAAAAACLwAAAAADfgAAAAAATQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAABTQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAATQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAACTQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAABfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAABfgAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAABfgAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAXQAAAAAC
version: 6
-1,0:
ind: -1,0
- tiles: XQAAAAABXQAAAAACXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAAAXQAAAAADXQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAXQAAAAABXQAAAAABHwAAAAAAbQAAAAAAbQAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAADfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAXQAAAAACXQAAAAABfgAAAAAAbQAAAAAAbQAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAADfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAOAAAAAAAOAAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAATQAAAAADTQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADTQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAABXQAAAAADTQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADTQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAACTQAAAAADTQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAAAHwAAAAABfgAAAAAAegAAAAAAegAAAAADegAAAAABegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAAAHwAAAAADfgAAAAAAegAAAAABegAAAAABegAAAAABegAAAAAAegAAAAADegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAegAAAAAAegAAAAACegAAAAAAegAAAAADegAAAAABegAAAAABfgAAAAAAHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAADegAAAAACegAAAAACegAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAegAAAAACegAAAAABQAAAAAAAQAAAAAAAQAAAAAAAegAAAAACegAAAAACfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAfgAAAAAAXQAAAAAA
+ tiles: XQAAAAADXQAAAAABXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAADXQAAAAACXQAAAAACfgAAAAAAbQAAAAAAbQAAAAAAHwAAAAABHwAAAAABHwAAAAADHwAAAAABfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAACXQAAAAAAXQAAAAACHwAAAAADbQAAAAAAbQAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAABfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAACXQAAAAABXQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAACfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAOAAAAAAAOAAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAATQAAAAACTQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAABTQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAADXQAAAAACTQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABTQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAAATQAAAAACTQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAABHwAAAAADHwAAAAACfgAAAAAAegAAAAADegAAAAACegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAADHwAAAAAAHwAAAAACfgAAAAAAegAAAAACegAAAAAAegAAAAAAegAAAAABegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACHwAAAAAAHwAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAADegAAAAABegAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAADegAAAAABegAAAAACfgAAAAAAHwAAAAADHwAAAAACHwAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAegAAAAADegAAAAABegAAAAADegAAAAADegAAAAADegAAAAABegAAAAABfgAAAAAAHwAAAAADHwAAAAABHwAAAAACfgAAAAAAXQAAAAAD
version: 6
0,-2:
ind: 0,-2
- tiles: XQAAAAAAXQAAAAACfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAegAAAAAAegAAAAABegAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAATgAAAAACfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAACXQAAAAABfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAABfgAAAAAADgAAAAADegAAAAABegAAAAABegAAAAAAegAAAAACegAAAAACXQAAAAAAXQAAAAABfgAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAABHwAAAAAAHwAAAAACfgAAAAAADgAAAAAAegAAAAABegAAAAADegAAAAABegAAAAACegAAAAADXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADgAAAAACDgAAAAAADgAAAAAADgAAAAABDgAAAAACDgAAAAABXQAAAAACXQAAAAADfgAAAAAATQAAAAAATQAAAAABTQAAAAABTQAAAAAATQAAAAAATQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADTQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAACTQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAACTQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAABXQAAAAAAXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAC
+ tiles: XQAAAAACXQAAAAADfgAAAAAAHwAAAAABHwAAAAADHwAAAAABegAAAAAAegAAAAAAegAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAHwAAAAADHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACHwAAAAABHwAAAAADHwAAAAACHwAAAAABHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAATgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADXQAAAAACXQAAAAACfgAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAABHwAAAAABfgAAAAAADgAAAAAAegAAAAAAegAAAAABegAAAAACegAAAAABegAAAAABXQAAAAAAXQAAAAABfgAAAAAAHwAAAAADHwAAAAACHwAAAAAAHwAAAAADHwAAAAABHwAAAAADfgAAAAAADgAAAAABegAAAAACegAAAAABegAAAAADegAAAAAAegAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADgAAAAADDgAAAAACDgAAAAACDgAAAAADDgAAAAAADgAAAAACXQAAAAABXQAAAAACfgAAAAAATQAAAAADTQAAAAACTQAAAAADTQAAAAAATQAAAAADTQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAATQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAABTQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAAATQAAAAACXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAAC
version: 6
-1,-2:
ind: -1,-2
- tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAACegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAADfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAADHwAAAAAAHwAAAAADfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAAAHwAAAAACHwAAAAABfgAAAAAAXQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAABTQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAAATQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAACTQAAAAACXQAAAAABTQAAAAAATQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAALgAAAAAAfgAAAAAAAgAAAAACfgAAAAAAHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAACfgAAAAAALgAAAAAAfgAAAAAAAwAAAAADfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAABfgAAAAAALgAAAAAAfgAAAAAAAwAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAACfgAAAAAAbQAAAAAAfgAAAAAAAwAAAAACfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAC
+ tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAACegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAABHwAAAAADHwAAAAACfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAACHwAAAAABfgAAAAAAXQAAAAABbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAACfgAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACTQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAAATQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAABTQAAAAAAXQAAAAABTQAAAAACTQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAALgAAAAAAfgAAAAAAAgAAAAADfgAAAAAAHwAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAALgAAAAAAfgAAAAAAAwAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAABfgAAAAAALgAAAAAAfgAAAAAAAwAAAAACfgAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAABfgAAAAAAbQAAAAAAfgAAAAAAAwAAAAACfgAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAD
version: 6
0,-3:
ind: 0,-3
- tiles: XQAAAAABXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAACbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAHwAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAHwAAAAADHwAAAAABHwAAAAABfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAHwAAAAABXQAAAAADXQAAAAACfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAAAHwAAAAABfgAAAAAAegAAAAAAegAAAAADegAAAAADfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAABHwAAAAADfgAAAAAAegAAAAAAegAAAAACegAAAAACfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAADfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAHwAAAAABHwAAAAABHwAAAAABfgAAAAAAegAAAAADegAAAAADfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAA
+ tiles: XQAAAAADXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAACbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAHwAAAAADHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAABXQAAAAACHwAAAAACHwAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAABfgAAAAAAHwAAAAABHwAAAAACHwAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAHwAAAAACXQAAAAADXQAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAegAAAAAAegAAAAACegAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAACHwAAAAABfgAAAAAAegAAAAACegAAAAACegAAAAACfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAADfgAAAAAAegAAAAAAegAAAAACegAAAAACfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAHwAAAAABHwAAAAABHwAAAAACfgAAAAAAegAAAAACegAAAAADfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAA
version: 6
-1,-3:
ind: -1,-3
- tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAbQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAABQAAAAAAXQAAAAADXQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAABQAAAAABXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAA
+ tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAbQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAABQAAAAAAXQAAAAABXQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAABQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAC
version: 6
1,-2:
ind: 1,-2
- tiles: egAAAAACegAAAAABegAAAAACegAAAAADegAAAAAAegAAAAADfgAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAACfgAAAAAAHwAAAAADXQAAAAADXQAAAAADXQAAAAABegAAAAACegAAAAABegAAAAAAegAAAAACegAAAAACegAAAAADfgAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAACfgAAAAAAHwAAAAACXQAAAAAAXQAAAAACXQAAAAAAegAAAAAAegAAAAABegAAAAACegAAAAACegAAAAAAegAAAAADfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAADXQAAAAAAXQAAAAAAegAAAAABegAAAAABegAAAAACegAAAAABegAAAAABegAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAACXQAAAAADXQAAAAABXQAAAAABegAAAAAAegAAAAAAegAAAAADegAAAAAAegAAAAABegAAAAACfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAACXQAAAAABXQAAAAACXQAAAAACDgAAAAABDgAAAAACDgAAAAACDgAAAAABDgAAAAADDgAAAAADfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAABDgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAPAAAAAAAXQAAAAADXQAAAAACTQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAABTQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAABTQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAAATQAAAAABTQAAAAACfgAAAAAAfgAAAAAADgAAAAADDgAAAAABDgAAAAAADgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAHwAAAAACDgAAAAADDgAAAAADDgAAAAADDgAAAAAADgAAAAACegAAAAABegAAAAAAegAAAAAAfgAAAAAAXQAAAAAAcAAAAAADfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAHwAAAAAADgAAAAADDgAAAAAADgAAAAADDgAAAAADDgAAAAACegAAAAACegAAAAADegAAAAABfgAAAAAAcAAAAAACcAAAAAACcAAAAAACXQAAAAAAXQAAAAACHwAAAAABHwAAAAABDgAAAAABDgAAAAACDgAAAAACDgAAAAAADgAAAAACegAAAAADegAAAAABegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABHwAAAAABHwAAAAAADgAAAAADDgAAAAABDgAAAAACDgAAAAACDgAAAAACegAAAAAAegAAAAABegAAAAADfgAAAAAAcAAAAAAAcAAAAAADcAAAAAADXQAAAAABXQAAAAAAfgAAAAAAHwAAAAAADgAAAAAADgAAAAAADgAAAAABDgAAAAADDgAAAAACegAAAAABegAAAAABegAAAAAAfgAAAAAAcAAAAAADcAAAAAAAfgAAAAAA
+ tiles: egAAAAACegAAAAACegAAAAABegAAAAACegAAAAAAegAAAAADfgAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAACfgAAAAAAHwAAAAAAXQAAAAAAXQAAAAACXQAAAAABegAAAAACegAAAAAAegAAAAACegAAAAABegAAAAACegAAAAACfgAAAAAABAAAAAAABAAAAAACBAAAAAABBAAAAAACfgAAAAAAHwAAAAADXQAAAAACXQAAAAACXQAAAAACegAAAAACegAAAAADegAAAAABegAAAAACegAAAAAAegAAAAACfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACXQAAAAAAXQAAAAADXQAAAAAAegAAAAADegAAAAACegAAAAABegAAAAAAegAAAAADegAAAAACfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAAAXQAAAAACXQAAAAAAXQAAAAACegAAAAABegAAAAABegAAAAAAegAAAAABegAAAAABegAAAAABfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAADXQAAAAADXQAAAAACXQAAAAAADgAAAAAADgAAAAABDgAAAAAADgAAAAADDgAAAAADDgAAAAABfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAABDgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAPAAAAAAAXQAAAAACXQAAAAADTQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAACTQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAABTQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAACTQAAAAACTQAAAAADfgAAAAAAfgAAAAAADgAAAAABDgAAAAABDgAAAAACDgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAHwAAAAABDgAAAAAADgAAAAAADgAAAAADDgAAAAABDgAAAAACegAAAAADegAAAAADegAAAAADfgAAAAAAXQAAAAACcAAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAHwAAAAADDgAAAAABDgAAAAABDgAAAAABDgAAAAADDgAAAAADegAAAAADegAAAAADegAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAADXQAAAAADXQAAAAABHwAAAAADHwAAAAABDgAAAAACDgAAAAACDgAAAAADDgAAAAACDgAAAAADegAAAAACegAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADHwAAAAAAHwAAAAADDgAAAAAADgAAAAADDgAAAAADDgAAAAADDgAAAAADegAAAAAAegAAAAADegAAAAADfgAAAAAAcAAAAAAAcAAAAAADcAAAAAACXQAAAAACXQAAAAADfgAAAAAAHwAAAAACDgAAAAAADgAAAAADDgAAAAADDgAAAAACDgAAAAADegAAAAADegAAAAAAegAAAAADfgAAAAAAcAAAAAAAcAAAAAACfgAAAAAA
version: 6
1,-1:
ind: 1,-1
- tiles: XQAAAAACXQAAAAACfgAAAAAAHwAAAAAADgAAAAAADgAAAAABDgAAAAABDgAAAAAADgAAAAACegAAAAAAegAAAAABegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAGwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAegAAAAACegAAAAACcAAAAAACXQAAAAADXQAAAAACfgAAAAAAHwAAAAADGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAHwAAAAADfgAAAAAAegAAAAABegAAAAADHwAAAAADXQAAAAABXQAAAAADfgAAAAAAHwAAAAABGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAHwAAAAAAfgAAAAAAegAAAAABegAAAAACfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAHwAAAAACGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAATQAAAAADTQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAACfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAACHwAAAAACEQAAAAAAHwAAAAACHwAAAAADfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA
+ tiles: XQAAAAAAXQAAAAACfgAAAAAAHwAAAAABDgAAAAADDgAAAAADDgAAAAADDgAAAAACDgAAAAAAegAAAAABegAAAAACegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAGwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAegAAAAADegAAAAABcAAAAAACXQAAAAAAXQAAAAACfgAAAAAAHwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAHwAAAAAAfgAAAAAAegAAAAAAegAAAAABHwAAAAADXQAAAAAAXQAAAAADfgAAAAAAHwAAAAADGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAHwAAAAABfgAAAAAAegAAAAADegAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAHwAAAAACGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAABXQAAAAADbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAATQAAAAABTQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAABfgAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAABHwAAAAADHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAABEQAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA
version: 6
1,0:
ind: 1,0
- tiles: XQAAAAABXQAAAAABfgAAAAAAAAAAAAAAfgAAAAAAOAAAAAAAXQAAAAADEQAAAAAAHwAAAAACOAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAAAAAAAAAfgAAAAAAOAAAAAAAOAAAAAAAEQAAAAAAOAAAAAAAOAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAEQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAAAAAAAAAfgAAAAAAHwAAAAACQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAATQAAAAAATQAAAAAAfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAAATQAAAAABTQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAdAAAAAABdAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACcAAAAAADdAAAAAAAdAAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAXQAAAAAAXQAAAAACfgAAAAAAdAAAAAACdAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAdAAAAAADVgAAAAADfgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA
+ tiles: XQAAAAADXQAAAAABfgAAAAAAAAAAAAAAfgAAAAAAOAAAAAAAXQAAAAACEQAAAAAAHwAAAAADOAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAAAAAAAAAfgAAAAAAOAAAAAAAOAAAAAAAEQAAAAAAOAAAAAAAOAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAEQAAAAAAXQAAAAABXQAAAAADfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAATQAAAAACTQAAAAADfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAACTQAAAAAATQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAdAAAAAAAdAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABcAAAAAABdAAAAAACdAAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAXQAAAAABXQAAAAACfgAAAAAAdAAAAAACdAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAdAAAAAABVgAAAAADfgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA
version: 6
-2,-2:
ind: -2,-2
- tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWwAAAAAFfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAACegAAAAABfAAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAABTQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAABTQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAABTQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAHwAAAAADfgAAAAAATQAAAAADHwAAAAADHwAAAAACHwAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAHwAAAAABfgAAAAAAXQAAAAACHwAAAAADTQAAAAABTQAAAAADLgAAAAAALgAAAAAATgAAAAABLgAAAAAALgAAAAAATQAAAAACTQAAAAADHwAAAAADHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAXQAAAAACHwAAAAABTQAAAAABTQAAAAAAHwAAAAADLgAAAAAALgAAAAAALgAAAAAAHwAAAAABTQAAAAABTQAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAACfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACLgAAAAAATgAAAAACLgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAADfgAAAAAAXQAAAAABXQAAAAABXQAAAAACfgAAAAAAHwAAAAAALgAAAAAALgAAAAAALgAAAAAAHwAAAAABfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAXQAAAAAD
+ tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAACegAAAAAAegAAAAACegAAAAADfAAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAABTQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAADTQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAADTQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAHwAAAAADfgAAAAAATQAAAAADHwAAAAAAHwAAAAADHwAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAACHwAAAAABHwAAAAACfgAAAAAAXQAAAAADHwAAAAACTQAAAAACTQAAAAADLgAAAAAALgAAAAAATgAAAAAALgAAAAAALgAAAAAATQAAAAADTQAAAAABHwAAAAAAHwAAAAABHwAAAAABHwAAAAADfgAAAAAAXQAAAAADHwAAAAABTQAAAAACTQAAAAADHwAAAAAALgAAAAAALgAAAAAALgAAAAAAHwAAAAABTQAAAAABTQAAAAADHwAAAAAAHwAAAAACHwAAAAADHwAAAAABfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACLgAAAAAATgAAAAAALgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAACfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAHwAAAAABLgAAAAAALgAAAAAALgAAAAAAHwAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAXQAAAAAC
version: 6
-2,-1:
ind: -2,-1
- tiles: XQAAAAAAXQAAAAABHwAAAAAALgAAAAAALgAAAAAATgAAAAABLgAAAAAALgAAAAAAHwAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAXQAAAAADXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACHwAAAAADHwAAAAADHwAAAAACfgAAAAAAXQAAAAAATQAAAAACTQAAAAABfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAACfgAAAAAATQAAAAABTQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAXQAAAAACXQAAAAAAHwAAAAADHwAAAAADHwAAAAADfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAABHwAAAAACHwAAAAADHwAAAAADXQAAAAABXQAAAAAAfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABHwAAAAABHwAAAAADfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAHwAAAAABHwAAAAACHwAAAAACfgAAAAAAXQAAAAABXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAHwAAAAABHwAAAAACHwAAAAADfgAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAHwAAAAABHwAAAAACfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABHwAAAAADHwAAAAACfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAADfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAXQAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAATQAAAAACHwAAAAABHwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAXQAAAAADXQAAAAABHwAAAAAAHwAAAAACfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAADegAAAAACfgAAAAAAXQAAAAADXQAAAAAC
+ tiles: XQAAAAAAXQAAAAADHwAAAAADLgAAAAAALgAAAAAATgAAAAACLgAAAAAALgAAAAAAHwAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAACfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAXQAAAAADTQAAAAACTQAAAAADfgAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAAAHwAAAAABfgAAAAAATQAAAAACTQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAHwAAAAABHwAAAAADHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAADHwAAAAACHwAAAAABHwAAAAABfgAAAAAAXQAAAAABXQAAAAACXQAAAAABHwAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAACHwAAAAACHwAAAAABXQAAAAABXQAAAAADfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABHwAAAAAAHwAAAAACfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAADHwAAAAACHwAAAAADHwAAAAACfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAABHwAAAAAAHwAAAAADfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAATQAAAAAAHwAAAAADHwAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAABfgAAAAAAXQAAAAABXQAAAAAAHwAAAAAAHwAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAABegAAAAADfgAAAAAAXQAAAAAAXQAAAAAD
version: 6
-2,0:
ind: -2,0
- tiles: HwAAAAADHwAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAADegAAAAACfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAACTQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAATQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAADTQAAAAACXQAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAAAXQAAAAADHwAAAAAAfgAAAAAAHwAAAAAAegAAAAADegAAAAABegAAAAAAegAAAAACegAAAAAAHwAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAACEQAAAAAAHwAAAAABfgAAAAAAHwAAAAADegAAAAADegAAAAADegAAAAAAegAAAAABegAAAAADHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADEQAAAAAAXQAAAAACfgAAAAAAHwAAAAAAegAAAAABegAAAAABegAAAAACegAAAAACegAAAAABHwAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAACEQAAAAAAHwAAAAACfgAAAAAAHwAAAAAAegAAAAADegAAAAAAegAAAAACegAAAAACegAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABHwAAAAABfgAAAAAAHwAAAAAAegAAAAADegAAAAADegAAAAABegAAAAAAegAAAAADHwAAAAACfgAAAAAAHwAAAAABHwAAAAAAHwAAAAADfgAAAAAAXQAAAAAB
+ tiles: HwAAAAADHwAAAAADfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAegAAAAABegAAAAABegAAAAADegAAAAADfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAbQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAADTQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAACTQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADTQAAAAADXQAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAADXQAAAAAAHwAAAAABfgAAAAAAHwAAAAABegAAAAADegAAAAAAegAAAAABegAAAAADegAAAAADHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADEQAAAAAAHwAAAAADfgAAAAAAHwAAAAABegAAAAADegAAAAACegAAAAAAegAAAAAAegAAAAACHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACEQAAAAAAXQAAAAACfgAAAAAAHwAAAAADegAAAAABegAAAAACegAAAAACegAAAAADegAAAAADHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAABEQAAAAAAHwAAAAACfgAAAAAAHwAAAAADegAAAAAAegAAAAABegAAAAABegAAAAABegAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACHwAAAAACfgAAAAAAHwAAAAABegAAAAAAegAAAAABegAAAAABegAAAAABegAAAAABHwAAAAACfgAAAAAAHwAAAAABHwAAAAACHwAAAAADfgAAAAAAXQAAAAAB
version: 6
1,-3:
ind: 1,-3
- tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAAAHwAAAAACHwAAAAABfgAAAAAABAAAAAADBAAAAAADBAAAAAACBAAAAAAABAAAAAADfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAADHwAAAAABHwAAAAADfgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAAAfgAAAAAADAAAAAABDAAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAACegAAAAACegAAAAABegAAAAACHwAAAAABBAAAAAABBAAAAAADBAAAAAADBAAAAAADBAAAAAACHwAAAAADDAAAAAADDAAAAAADfgAAAAAAegAAAAAAegAAAAACegAAAAADegAAAAADegAAAAACegAAAAADfgAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAABBAAAAAACfgAAAAAADAAAAAABDAAAAAACfgAAAAAAegAAAAAAegAAAAAAegAAAAADegAAAAAAegAAAAABegAAAAADfgAAAAAABAAAAAAABAAAAAACBAAAAAABBAAAAAACfgAAAAAAfgAAAAAADAAAAAABDAAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAABegAAAAADegAAAAAAegAAAAADfgAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAACegAAAAAAegAAAAABegAAAAAAegAAAAADegAAAAAAegAAAAACfgAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAABfgAAAAAAHwAAAAADXQAAAAADXQAAAAADXQAAAAAA
+ tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAACHwAAAAADHwAAAAADfgAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAADBAAAAAADfgAAAAAAHwAAAAACHwAAAAACfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAHwAAAAADfgAAAAAABAAAAAADBAAAAAAABAAAAAADBAAAAAACBAAAAAABfgAAAAAADAAAAAAADAAAAAACfgAAAAAAegAAAAAAegAAAAACegAAAAACegAAAAADegAAAAAAegAAAAABHwAAAAACBAAAAAABBAAAAAABBAAAAAABBAAAAAAABAAAAAABHwAAAAADDAAAAAADDAAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAAAegAAAAAAegAAAAABegAAAAADfgAAAAAABAAAAAADBAAAAAADBAAAAAABBAAAAAAABAAAAAACfgAAAAAADAAAAAACDAAAAAAAfgAAAAAAegAAAAAAegAAAAACegAAAAAAegAAAAACegAAAAAAegAAAAABfgAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAADfgAAAAAAfgAAAAAADAAAAAACDAAAAAAAfgAAAAAAegAAAAAAegAAAAACegAAAAADegAAAAADegAAAAADegAAAAADfgAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAAAegAAAAACegAAAAAAegAAAAABegAAAAACegAAAAAAegAAAAAAfgAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAAAfgAAAAAAHwAAAAACXQAAAAADXQAAAAACXQAAAAAA
version: 6
-3,0:
ind: -3,0
- tiles: HwAAAAADHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAeQAAAAACeQAAAAACfgAAAAAATQAAAAACXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAAAHwAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAABHwAAAAABHwAAAAADHwAAAAADfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAAAHwAAAAADfgAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAMgAAAAACMgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAADHwAAAAABfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAACegAAAAAAegAAAAACfgAAAAAAegAAAAADfgAAAAAAXQAAAAADXQAAAAADXQAAAAACTQAAAAAAXQAAAAAAXQAAAAABXQAAAAACfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAACegAAAAABegAAAAABHwAAAAABegAAAAABfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACTQAAAAACXQAAAAACXQAAAAABXQAAAAADfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAADegAAAAAAegAAAAAAfgAAAAAAegAAAAADfgAAAAAAXQAAAAABXQAAAAADXQAAAAADTQAAAAADXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAAAHwAAAAAAHwAAAAABfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAACcAAAAAADcAAAAAAAcAAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAACKAAAAAADHwAAAAADHwAAAAAAHwAAAAACfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAAAcAAAAAABcAAAAAAAcAAAAAAAfgAAAAAAXQAAAAACEQAAAAAAXQAAAAADKAAAAAABHwAAAAADHwAAAAADHwAAAAACHwAAAAAAcAAAAAAAcAAAAAABcAAAAAAAcAAAAAABcAAAAAABcAAAAAABcAAAAAAAHwAAAAABXQAAAAABEQAAAAAAEQAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAAAfgAAAAAAcAAAAAACcAAAAAADcAAAAAAAcAAAAAADcAAAAAADcAAAAAAAcAAAAAABfgAAAAAAXQAAAAABEQAAAAAAXQAAAAABaAAAAAACXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAA
+ tiles: HwAAAAACHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAeQAAAAAAeQAAAAABfgAAAAAATQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAADHwAAAAABfgAAAAAAXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAABHwAAAAABHwAAAAADfgAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAABHwAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAMgAAAAACMgAAAAABfgAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAACegAAAAACegAAAAACfgAAAAAAegAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACTQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAegAAAAAAegAAAAADHwAAAAACegAAAAACfgAAAAAAXQAAAAACXQAAAAABXQAAAAAATQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAegAAAAABegAAAAAAfgAAAAAAegAAAAACfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACTQAAAAABXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAAAHwAAAAABHwAAAAAAHwAAAAADfgAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAAAcAAAAAABcAAAAAAAcAAAAAACfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADKAAAAAABHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAACcAAAAAACcAAAAAACcAAAAAABfgAAAAAAXQAAAAABEQAAAAAAXQAAAAAAKAAAAAAAHwAAAAABHwAAAAADHwAAAAACHwAAAAABcAAAAAAAcAAAAAAAcAAAAAADcAAAAAAAcAAAAAABcAAAAAAAcAAAAAABHwAAAAAAXQAAAAABEQAAAAAAEQAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAACfgAAAAAAcAAAAAACcAAAAAAAcAAAAAACcAAAAAAAcAAAAAACcAAAAAADcAAAAAAAfgAAAAAAXQAAAAABEQAAAAAAXQAAAAACaAAAAAABXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAAD
version: 6
-3,-2:
ind: -3,-2
- tiles: ZAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAABfgAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAADHwAAAAACHwAAAAACHwAAAAACHwAAAAABHwAAAAADXQAAAAABXQAAAAABXQAAAAACfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAAAHwAAAAACHwAAAAABfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAegAAAAADegAAAAAAegAAAAADegAAAAAAegAAAAADegAAAAABegAAAAADfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAHwAAAAACHwAAAAADHwAAAAABfgAAAAAAegAAAAABegAAAAAAegAAAAACegAAAAACegAAAAACegAAAAABegAAAAABfgAAAAAATQAAAAAATQAAAAABTQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAADegAAAAAAegAAAAADegAAAAAAegAAAAAAegAAAAACegAAAAAAegAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAABfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAA
+ tiles: ZAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAACfgAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAACHwAAAAACHwAAAAABHwAAAAADfgAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAADHwAAAAADHwAAAAAAHwAAAAABHwAAAAADHwAAAAADXQAAAAADXQAAAAADXQAAAAACfgAAAAAAHwAAAAABHwAAAAABHwAAAAACfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAACHwAAAAACHwAAAAACHwAAAAACfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACHwAAAAAAHwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAABegAAAAACegAAAAAAegAAAAABegAAAAADfgAAAAAAXQAAAAABXQAAAAABXQAAAAABfgAAAAAAHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAegAAAAACegAAAAABegAAAAAAegAAAAAAegAAAAABegAAAAABegAAAAACfgAAAAAATQAAAAACTQAAAAABTQAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAHwAAAAADegAAAAADegAAAAACegAAAAADegAAAAAAegAAAAADegAAAAACegAAAAABfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAB
version: 6
-3,-1:
ind: -3,-1
- tiles: fgAAAAAAfAAAAAABfAAAAAACegAAAAAAegAAAAADegAAAAAAfAAAAAAAfAAAAAACfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADbAAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAADXQAAAAADHwAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAADHwAAAAADfgAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAACHwAAAAADfgAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAABfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAABfgAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAHwAAAAABHwAAAAACfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAHwAAAAACHwAAAAADXQAAAAACHwAAAAABfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAATQAAAAABXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAAAHwAAAAABHwAAAAABHwAAAAADHwAAAAABKAAAAAADKAAAAAABHwAAAAABTQAAAAACXQAAAAACXQAAAAACXQAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAAC
+ tiles: fgAAAAAAfAAAAAACfAAAAAADegAAAAACegAAAAAAegAAAAABfAAAAAADfAAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADfgAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAXQAAAAABXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAADfgAAAAAAHwAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABXQAAAAABXQAAAAABXQAAAAABfgAAAAAAXQAAAAABXQAAAAACXQAAAAABfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAHwAAAAABHwAAAAABXQAAAAADHwAAAAACfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACHwAAAAABfgAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAACfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAABfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAABHwAAAAADHwAAAAAAHwAAAAADfgAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAACfgAAAAAAHwAAAAABHwAAAAADXQAAAAAAHwAAAAADfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAQAAAAAAAQAAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAATQAAAAACXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAACHwAAAAAAHwAAAAABHwAAAAADHwAAAAADKAAAAAADKAAAAAABHwAAAAABTQAAAAACXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAHwAAAAADHwAAAAAAHwAAAAAA
version: 6
2,-3:
ind: 2,-3
- tiles: fgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAACegAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAABegAAAAADAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAAATQAAAAADfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAATQAAAAAATQAAAAAATQAAAAAAfgAAAAAAcAAAAAACcAAAAAABcAAAAAADfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABeQAAAAADcAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABHwAAAAADfgAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAACHwAAAAADfgAAAAAAcAAAAAADeQAAAAABcAAAAAACcAAAAAAAcAAAAAAA
+ tiles: fgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAAAegAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAADAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAABTQAAAAABfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAATQAAAAADTQAAAAACTQAAAAABfgAAAAAAcAAAAAACcAAAAAACcAAAAAABfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABeQAAAAACcAAAAAACfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABHwAAAAABfgAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAcAAAAAABeQAAAAADcAAAAAACcAAAAAACcAAAAAAA
version: 6
2,-2:
ind: 2,-2
- tiles: XQAAAAABXQAAAAAAXQAAAAADHwAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAAAHwAAAAABcAAAAAACcAAAAAABeQAAAAADcAAAAAADcAAAAAABcAAAAAACXQAAAAADXQAAAAAAXQAAAAABHwAAAAACfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAcAAAAAAAeQAAAAACcAAAAAACcAAAAAADcAAAAAABXQAAAAACXQAAAAAAXQAAAAAAHwAAAAAAXQAAAAABHwAAAAACHwAAAAAAHwAAAAACHwAAAAABHwAAAAACcAAAAAAAcAAAAAABeQAAAAADcAAAAAACcAAAAAACdQAAAAABXQAAAAABXQAAAAACXQAAAAACHwAAAAABfgAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAcAAAAAABeQAAAAACcAAAAAABcAAAAAACdQAAAAADXQAAAAAAXQAAAAABXQAAAAABHwAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAACcAAAAAACcAAAAAABeQAAAAAAcAAAAAAAcAAAAAABdQAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAABfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAABfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAABcAAAAAACcAAAAAAAPAAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAXQAAAAACXQAAAAAAHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAcAAAAAADcAAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAADfgAAAAAAcAAAAAABcAAAAAACcAAAAAAAcAAAAAADcAAAAAAAfgAAAAAAcAAAAAACcAAAAAADcAAAAAACfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAADcAAAAAABcAAAAAABeQAAAAAAeQAAAAAAeQAAAAABcAAAAAABcAAAAAACcAAAAAAAeQAAAAAAcAAAAAABfgAAAAAAKAAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAcAAAAAACcAAAAAACcAAAAAAAcAAAAAAAcAAAAAACfgAAAAAAcAAAAAACeQAAAAABcAAAAAABfgAAAAAAHwAAAAACfgAAAAAAcAAAAAABcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAeQAAAAACcAAAAAAAcAAAAAABHwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAACcAAAAAABcAAAAAADcAAAAAAAcAAAAAABcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAACeQAAAAABcAAAAAADfgAAAAAAXQAAAAACcAAAAAACeQAAAAACeQAAAAACeQAAAAACeQAAAAADeQAAAAABeQAAAAABeQAAAAAAeQAAAAABcAAAAAAAXQAAAAABcAAAAAAAeQAAAAADcAAAAAAAfgAAAAAAfgAAAAAAcAAAAAACeQAAAAABcAAAAAABcAAAAAAAcAAAAAADcAAAAAAAcAAAAAABcAAAAAADeQAAAAADeQAAAAAAcAAAAAABcAAAAAABeQAAAAADcAAAAAABcAAAAAACcAAAAAACcAAAAAACeQAAAAADeQAAAAADeQAAAAADeQAAAAABeQAAAAAAeQAAAAABeQAAAAADeQAAAAADcAAAAAACfgAAAAAAcAAAAAAAeQAAAAACcAAAAAAAcAAAAAADcAAAAAABcAAAAAADcAAAAAADcAAAAAABcAAAAAABcAAAAAAAcAAAAAADcAAAAAABcAAAAAAAcAAAAAADcAAAAAAAfgAAAAAAcAAAAAACcAAAAAADcAAAAAACcAAAAAADcAAAAAAD
+ tiles: XQAAAAABXQAAAAAAXQAAAAADHwAAAAADfgAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAABHwAAAAABcAAAAAAAcAAAAAACeQAAAAAAcAAAAAAAcAAAAAAAcAAAAAABXQAAAAACXQAAAAADXQAAAAADHwAAAAADfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAcAAAAAADeQAAAAAAcAAAAAABcAAAAAABcAAAAAADXQAAAAABXQAAAAABXQAAAAACHwAAAAACXQAAAAABHwAAAAABHwAAAAABHwAAAAABHwAAAAAAHwAAAAAAcAAAAAADcAAAAAAAeQAAAAADcAAAAAAAcAAAAAADdQAAAAACXQAAAAACXQAAAAACXQAAAAACHwAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAcAAAAAADeQAAAAADcAAAAAAAcAAAAAAAdQAAAAABXQAAAAAAXQAAAAABXQAAAAABHwAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAADHwAAAAADcAAAAAACcAAAAAAAeQAAAAAAcAAAAAADcAAAAAAAdQAAAAACHwAAAAADHwAAAAACHwAAAAAAHwAAAAABfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAADHwAAAAABfgAAAAAAcAAAAAADcAAAAAADcAAAAAABcAAAAAADcAAAAAAAPAAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAXQAAAAACXQAAAAACHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABfgAAAAAAcAAAAAABcAAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAcAAAAAADcAAAAAABcAAAAAACcAAAAAADcAAAAAACfgAAAAAAcAAAAAAAcAAAAAACcAAAAAABfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAACcAAAAAAAcAAAAAAAeQAAAAADeQAAAAACeQAAAAADcAAAAAAAcAAAAAADcAAAAAABeQAAAAAAcAAAAAACfgAAAAAAKAAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAcAAAAAABcAAAAAABcAAAAAADcAAAAAAAcAAAAAABfgAAAAAAcAAAAAAAeQAAAAACcAAAAAACfgAAAAAAHwAAAAADfgAAAAAAcAAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACeQAAAAADcAAAAAACcAAAAAAAHwAAAAADcAAAAAACcAAAAAABcAAAAAAAcAAAAAADcAAAAAACcAAAAAABcAAAAAAAcAAAAAAAcAAAAAACcAAAAAADfgAAAAAAcAAAAAABeQAAAAACcAAAAAABfgAAAAAAXQAAAAAAcAAAAAABeQAAAAADeQAAAAACeQAAAAACeQAAAAABeQAAAAACeQAAAAABeQAAAAACeQAAAAAAcAAAAAADXQAAAAACcAAAAAADeQAAAAAAcAAAAAADfgAAAAAAfgAAAAAAcAAAAAACeQAAAAABcAAAAAABcAAAAAADcAAAAAABcAAAAAABcAAAAAAAcAAAAAADeQAAAAACeQAAAAAAcAAAAAADcAAAAAACeQAAAAACcAAAAAABcAAAAAAAcAAAAAADcAAAAAADeQAAAAABeQAAAAAAeQAAAAABeQAAAAACeQAAAAAAeQAAAAABeQAAAAADeQAAAAABcAAAAAADfgAAAAAAcAAAAAADeQAAAAAAcAAAAAABcAAAAAACcAAAAAAAcAAAAAABcAAAAAABcAAAAAAAcAAAAAAAcAAAAAADcAAAAAACcAAAAAAAcAAAAAADcAAAAAABcAAAAAAAfgAAAAAAcAAAAAACcAAAAAADcAAAAAABcAAAAAACcAAAAAAA
version: 6
3,-3:
ind: 3,-3
- tiles: fgAAAAAAegAAAAADegAAAAABegAAAAABegAAAAADegAAAAABfgAAAAAAegAAAAABfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAegAAAAADegAAAAADfgAAAAAAegAAAAADegAAAAACegAAAAADQAAAAAAAegAAAAAAegAAAAADegAAAAABZAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAegAAAAACegAAAAACfgAAAAAAegAAAAACegAAAAACfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAegAAAAACegAAAAADegAAAAADegAAAAABegAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAADZAAAAAAAfgAAAAAAXQAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACZAAAAAAAZAAAAAAAXQAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAXQAAAAACZAAAAAAAZAAAAAAAXQAAAAADZAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAADZAAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAXQAAAAABfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAcAAAAAAAcAAAAAAAcAAAAAADcAAAAAADcAAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAA
+ tiles: fgAAAAAAegAAAAACegAAAAADegAAAAACegAAAAADegAAAAABfgAAAAAAegAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAegAAAAAAegAAAAACfgAAAAAAegAAAAADegAAAAADegAAAAACQAAAAAAAegAAAAACegAAAAAAegAAAAACZAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAegAAAAACegAAAAACfgAAAAAAegAAAAADegAAAAABfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAABZAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAegAAAAABegAAAAAAegAAAAABegAAAAAAegAAAAABfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAABZAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAZAAAAAAAfgAAAAAAXQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAZAAAAAAAZAAAAAAAXQAAAAADfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAXQAAAAABZAAAAAAAZAAAAAAAXQAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAABZAAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAXQAAAAADfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAcAAAAAAAcAAAAAADcAAAAAAAcAAAAAADcAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAA
version: 6
3,-2:
ind: 3,-2
- tiles: cAAAAAABcAAAAAACcAAAAAADeQAAAAACcAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAcAAAAAABcAAAAAACcAAAAAABeQAAAAABcAAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAdQAAAAABdQAAAAAAcAAAAAABeQAAAAADcAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfQAAAAAAdQAAAAACdQAAAAACcAAAAAAAeQAAAAACcAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAdQAAAAACdQAAAAABcAAAAAABeQAAAAADcAAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAcAAAAAABcAAAAAABcAAAAAABeQAAAAAAcAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAACfgAAAAAAfgAAAAAAfQAAAAAAcAAAAAAAcAAAAAACcAAAAAADcAAAAAADcAAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAACfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAKAAAAAABKAAAAAABKAAAAAABKAAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAKAAAAAACKAAAAAACKAAAAAACKAAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAKAAAAAADKAAAAAAAKAAAAAACKAAAAAACfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAXQAAAAABTQAAAAABXQAAAAABXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAcAAAAAAAcAAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAeQAAAAAAcAAAAAABfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcAAAAAADcAAAAAADfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAA
+ tiles: cAAAAAACcAAAAAADcAAAAAACeQAAAAABcAAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAcAAAAAADcAAAAAADcAAAAAADeQAAAAACcAAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfQAAAAAAdQAAAAADdQAAAAABcAAAAAADeQAAAAACcAAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfQAAAAAAdQAAAAACdQAAAAABcAAAAAADeQAAAAADcAAAAAACfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAdQAAAAABdQAAAAAAcAAAAAABeQAAAAABcAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAcAAAAAADcAAAAAABcAAAAAADeQAAAAABcAAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfQAAAAAAcAAAAAABcAAAAAAAcAAAAAADcAAAAAACcAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAABfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAKAAAAAABKAAAAAABKAAAAAABKAAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAKAAAAAACKAAAAAAAKAAAAAABKAAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAKAAAAAADKAAAAAADKAAAAAADKAAAAAADfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAXQAAAAADTQAAAAADXQAAAAABXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAcAAAAAACcAAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAeQAAAAAAcAAAAAABfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcAAAAAACcAAAAAACfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAA
version: 6
2,-1:
ind: 2,-1
- tiles: fgAAAAAAcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAeQAAAAACeQAAAAACeQAAAAABcAAAAAADfgAAAAAAcAAAAAACcAAAAAABcAAAAAADcAAAAAAAcAAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAADfgAAAAAAcAAAAAADcAAAAAADcAAAAAAAfgAAAAAAXQAAAAABcAAAAAADcAAAAAABcAAAAAACcAAAAAADcAAAAAABfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAHwAAAAACHwAAAAABcAAAAAABeQAAAAAAcAAAAAACfgAAAAAAXQAAAAADcAAAAAAAcAAAAAADcAAAAAAAcAAAAAAAcAAAAAABfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAHwAAAAADfgAAAAAAcAAAAAACeQAAAAACcAAAAAACfgAAAAAAXQAAAAABfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACeQAAAAACcAAAAAABfgAAAAAAXQAAAAAAHwAAAAABHwAAAAADHwAAAAACfgAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAcAAAAAACeQAAAAAAcAAAAAACfgAAAAAAcAAAAAADHwAAAAADHwAAAAABHwAAAAACfgAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAABHwAAAAADHwAAAAABcAAAAAAAeQAAAAADcAAAAAAAcAAAAAADcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAcAAAAAAAcAAAAAADcAAAAAABfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAADHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAACHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAAA
+ tiles: fgAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAeQAAAAAAeQAAAAAAeQAAAAABcAAAAAABfgAAAAAAcAAAAAABcAAAAAACcAAAAAADcAAAAAABcAAAAAACfgAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAAAfgAAAAAAcAAAAAAAcAAAAAADcAAAAAABfgAAAAAAXQAAAAAAcAAAAAAAcAAAAAAAcAAAAAADcAAAAAACcAAAAAACfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAHwAAAAADHwAAAAADcAAAAAACeQAAAAABcAAAAAAAfgAAAAAAXQAAAAAAcAAAAAABcAAAAAABcAAAAAACcAAAAAADcAAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAHwAAAAADfgAAAAAAcAAAAAAAeQAAAAADcAAAAAADfgAAAAAAXQAAAAACfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABeQAAAAABcAAAAAACfgAAAAAAXQAAAAACHwAAAAACHwAAAAAAHwAAAAADfgAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAcAAAAAADeQAAAAAAcAAAAAADfgAAAAAAcAAAAAAAHwAAAAADHwAAAAADHwAAAAADfgAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAABHwAAAAADHwAAAAAAHwAAAAACcAAAAAAAeQAAAAACcAAAAAABcAAAAAACcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAADHwAAAAAAHwAAAAADfgAAAAAAcAAAAAABcAAAAAADcAAAAAABfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAADHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAAAHwAAAAAAHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAC
version: 6
3,-1:
ind: 3,-1
- tiles: cAAAAAABfgAAAAAAcAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAcAAAAAABcAAAAAABfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcAAAAAAAcAAAAAABfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcAAAAAABcAAAAAABfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAcAAAAAAAcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcAAAAAACcAAAAAACXQAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcAAAAAABcAAAAAABXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: cAAAAAAAfgAAAAAAcAAAAAADAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAcAAAAAADcAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcAAAAAAAcAAAAAADfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcAAAAAACcAAAAAADfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAcAAAAAABcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcAAAAAAAcAAAAAACXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcAAAAAAAcAAAAAABXQAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
1,-4:
ind: 1,-4
@@ -197,11 +197,11 @@ entities:
version: 6
-4,-1:
ind: -4,-1
- tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbgAAAAABbgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbgAAAAADfgAAAAAAbgAAAAADfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAABfgAAAAAAHwAAAAAALwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAABHwAAAAACfgAAAAAAHwAAAAAALwAAAAACfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAACfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAACLwAAAAABbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAACfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAADHwAAAAACHwAAAAACfgAAAAAAHwAAAAAALwAAAAAD
+ tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbgAAAAABbgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbgAAAAAAfgAAAAAAbgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAACfgAAAAAAHwAAAAABLwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAACfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAADfgAAAAAAHwAAAAADLwAAAAABfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAABHwAAAAADfgAAAAAAHwAAAAAALwAAAAADbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAABfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAAAHwAAAAADHwAAAAACfgAAAAAAHwAAAAACLwAAAAAD
version: 6
-4,-2:
ind: -4,-2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAA
version: 6
-6,-1:
ind: -6,-1
@@ -213,7 +213,7 @@ entities:
version: 6
-4,0:
ind: -4,0
- tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAACcAAAAAADfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAADfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAABHwAAAAADHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAHwAAAAACLwAAAAAAHwAAAAADLwAAAAABHwAAAAACLwAAAAACHwAAAAACLwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAACTQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAOAAAAAAAHwAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcAAAAAACcAAAAAABcAAAAAADcAAAAAABfgAAAAAAOAAAAAAAHwAAAAABEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAACcAAAAAABcAAAAAAAfgAAAAAAOAAAAAAAHwAAAAADEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAACHwAAAAABHwAAAAABHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAACHwAAAAABHwAAAAADHwAAAAADKAAAAAADHwAAAAABfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAbQAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAABHwAAAAADHwAAAAABKAAAAAABKAAAAAADKAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAACHwAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAADfgAAAAAAfgAAAAAA
+ tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAACcAAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAACfgAAAAAAHwAAAAACfgAAAAAAHwAAAAABHwAAAAADHwAAAAAAfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAABfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAACHwAAAAACHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAHwAAAAACLwAAAAADHwAAAAABLwAAAAACHwAAAAAALwAAAAACHwAAAAAALwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAADHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAAATQAAAAACXQAAAAABfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAOAAAAAAAHwAAAAACEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcAAAAAACcAAAAAACcAAAAAAAcAAAAAADfgAAAAAAOAAAAAAAHwAAAAACEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAADcAAAAAADcAAAAAACfgAAAAAAOAAAAAAAHwAAAAACEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAAAHwAAAAADHwAAAAADHwAAAAAAKAAAAAADHwAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAbQAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAAAKAAAAAADKAAAAAABKAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAABHwAAAAADHwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAADfgAAAAAAfgAAAAAA
version: 6
-4,-3:
ind: -4,-3
@@ -221,15 +221,15 @@ entities:
version: 6
0,-4:
ind: 0,-4
- tiles: XQAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAABbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAA
+ tiles: XQAAAAAAXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAADbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAADfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAA
version: 6
-1,-4:
ind: -1,-4
- tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAABXQAAAAACXQAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAJAAAAAADHwAAAAABHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAegAAAAACegAAAAADegAAAAAAegAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAegAAAAACegAAAAACegAAAAADegAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAC
+ tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAABXQAAAAACXQAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAJAAAAAADHwAAAAABHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAegAAAAACegAAAAAAegAAAAADegAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAACegAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAABXQAAAAAD
version: 6
-2,-4:
ind: -2,-4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAA
version: 6
-1,-6:
ind: -1,-6
@@ -237,23 +237,23 @@ entities:
version: 6
0,-5:
ind: 0,-5
- tiles: fgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAACXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAADAAAAAABXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAADDAAAAAADXQAAAAABXQAAAAADXQAAAAABBwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAADDAAAAAAAXQAAAAAAXQAAAAABXQAAAAABBwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAABDAAAAAAAXQAAAAAAXQAAAAABXQAAAAABBwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAABDAAAAAAAXQAAAAAAXQAAAAADXQAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAACDAAAAAABXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: fgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAACfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAADAAAAAADXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAABDAAAAAABXQAAAAADXQAAAAAAXQAAAAABBwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAADDAAAAAABXQAAAAABXQAAAAACXQAAAAACBwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAACDAAAAAACXQAAAAACXQAAAAAAXQAAAAADBwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAADDAAAAAAAXQAAAAACXQAAAAABXQAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAACDAAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-3,-3:
ind: -3,-3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAegAAAAAAegAAAAADfgAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAegAAAAACegAAAAABfgAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA
version: 6
-1,1:
ind: -1,1
- tiles: XQAAAAADXQAAAAAAHwAAAAADegAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAABfgAAAAAAHwAAAAADHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAegAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAADfgAAAAAAegAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAADfgAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAACfgAAAAAAegAAAAABegAAAAABQAAAAAAAQAAAAAAAQAAAAAAAegAAAAACegAAAAABfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAAAegAAAAADHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAAAegAAAAAAHwAAAAAAHwAAAAADHwAAAAABfgAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAABTQAAAAABTQAAAAACfgAAAAAAegAAAAABegAAAAABegAAAAABegAAAAACHwAAAAADHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAACfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADHwAAAAAAfgAAAAAATgAAAAABXQAAAAADbQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAABHwAAAAADHwAAAAAAHwAAAAADHwAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAHwAAAAABHwAAAAAA
+ tiles: XQAAAAAAXQAAAAABXQAAAAAAegAAAAADegAAAAACegAAAAADegAAAAAAegAAAAADegAAAAACegAAAAADfgAAAAAAHwAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAADegAAAAAAegAAAAABegAAAAADegAAAAABfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAegAAAAADegAAAAADegAAAAACegAAAAADegAAAAACegAAAAADegAAAAADfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAACfgAAAAAAegAAAAAAegAAAAAAegAAAAACegAAAAAAegAAAAADegAAAAABegAAAAACfgAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAegAAAAACegAAAAAAegAAAAABegAAAAABHwAAAAABHwAAAAACHwAAAAABfgAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAABfgAAAAAAegAAAAABegAAAAABegAAAAAAegAAAAACHwAAAAABHwAAAAACHwAAAAACfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAABTQAAAAADTQAAAAADfgAAAAAAegAAAAABegAAAAADegAAAAADegAAAAACHwAAAAACHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAACfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADHwAAAAAAfgAAAAAATgAAAAADXQAAAAACbQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAADHwAAAAABHwAAAAADHwAAAAACHwAAAAADHwAAAAAAHwAAAAACXQAAAAADXQAAAAADfgAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAADXQAAAAAA
version: 6
3,0:
ind: 3,0
- tiles: XQAAAAACXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: XQAAAAADXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
0,1:
ind: 0,1
- tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAegAAAAADegAAAAADfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAHwAAAAADHwAAAAADHwAAAAABfgAAAAAAegAAAAADegAAAAACfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAACHwAAAAACegAAAAAAegAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAABfgAAAAAAHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAATQAAAAADfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAAAHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAHwAAAAACHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAHwAAAAACHwAAAAACfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAATQAAAAAAXQAAAAACXQAAAAACHwAAAAADfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAHwAAAAABHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAHwAAAAADfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAA
+ tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAADfgAAAAAAHwAAAAAAHwAAAAADHwAAAAABfgAAAAAAegAAAAADegAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAegAAAAACegAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAABHwAAAAADHwAAAAADHwAAAAADHwAAAAABHwAAAAAAegAAAAABegAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAHwAAAAABHwAAAAADHwAAAAADfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAATQAAAAABfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAAAHwAAAAABHwAAAAADHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAATQAAAAABXQAAAAACXQAAAAACHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAABHwAAAAADfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAHwAAAAADHwAAAAACHwAAAAABfgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAHwAAAAADHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAA
version: 6
0,-6:
ind: 0,-6
@@ -261,15 +261,15 @@ entities:
version: 6
-1,-5:
ind: -1,-5
- tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACDAAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAAXQAAAAACXQAAAAABXQAAAAABDAAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAIXQAAAAAAXQAAAAABXQAAAAACDAAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAADAAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAAXQAAAAADXQAAAAACXQAAAAAADAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADDAAAAAAA
+ tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAADAAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAAXQAAAAABXQAAAAADXQAAAAADDAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAABXQAAAAACXQAAAAAAXQAAAAAADAAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAAXQAAAAADXQAAAAAAXQAAAAADDAAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAAXQAAAAAAXQAAAAABXQAAAAAADAAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADDAAAAAAD
version: 6
1,1:
ind: 1,1
- tiles: XQAAAAAAXQAAAAAAfgAAAAAATQAAAAAATQAAAAACfgAAAAAAfgAAAAAAKAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAAAHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAADHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAXQAAAAAAXQAAAAACfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAHwAAAAABHwAAAAABHwAAAAADHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAATQAAAAADTQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAAATQAAAAACTQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAXQAAAAABXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAA
+ tiles: XQAAAAAAXQAAAAACfgAAAAAATQAAAAACTQAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAADHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAXQAAAAAAXQAAAAACfgAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAACHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAATQAAAAADTQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAADTQAAAAAATQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAXQAAAAADXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAA
version: 6
2,1:
ind: 2,1
- tiles: fgAAAAAAfgAAAAAAJgAAAAABJgAAAAADJgAAAAAAJgAAAAACfgAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAegAAAAACegAAAAACegAAAAABXQAAAAADXQAAAAABbAAAAAAAfgAAAAAAJgAAAAABLwAAAAABLwAAAAAALwAAAAABfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAJgAAAAACLwAAAAABLwAAAAABLwAAAAADfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABfgAAAAAACQAAAAAACQAAAAAACQAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAAATQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAAATQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAAATQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAACXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: fgAAAAAAfgAAAAAAJgAAAAAAJgAAAAABJgAAAAAAJgAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAAAXQAAAAADXQAAAAACbAAAAAAAfgAAAAAAJgAAAAADLwAAAAACLwAAAAAALwAAAAACfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAJgAAAAADLwAAAAABLwAAAAABLwAAAAABfgAAAAAAXQAAAAADXQAAAAADXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAACQAAAAAACQAAAAAACQAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACTQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAACTQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAABTQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
4,-2:
ind: 4,-2
@@ -285,27 +285,27 @@ entities:
version: 6
2,0:
ind: 2,0
- tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABXQAAAAAAXQAAAAADfgAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAABfgAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAABfgAAAAAAHwAAAAAAHwAAAAACHwAAAAABfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAAegAAAAABegAAAAADegAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAAAXQAAAAABXQAAAAADXQAAAAABfgAAAAAAegAAAAAAegAAAAACegAAAAADfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAegAAAAADegAAAAADegAAAAADfgAAAAAAfgAAAAAA
+ tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADXQAAAAACXQAAAAACfgAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAAegAAAAACegAAAAABegAAAAACXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAABXQAAAAACXQAAAAADXQAAAAADfgAAAAAAegAAAAADegAAAAADegAAAAADfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAegAAAAADegAAAAACegAAAAACfgAAAAAAfgAAAAAA
version: 6
3,1:
ind: 3,1
- tiles: XQAAAAABXQAAAAACXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAACQAAAAAACQAAAAAACQAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: XQAAAAACXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAACQAAAAAACQAAAAAACQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-3,1:
ind: -3,1
- tiles: aAAAAAADXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAaAAAAAADaAAAAAABaAAAAAADbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAABegAAAAADfgAAAAAAXQAAAAADXQAAAAADXQAAAAABfgAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAABHwAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAABfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAPwAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAACegAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAABegAAAAABegAAAAAAegAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAABTgAAAAADXQAAAAABTgAAAAACXQAAAAAATgAAAAADXQAAAAABTgAAAAAAXQAAAAADegAAAAADegAAAAABegAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAADHwAAAAADHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAA
+ tiles: aAAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAaAAAAAACaAAAAAAAaAAAAAADbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAABfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAACegAAAAAAHwAAAAADXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAABegAAAAADfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAPwAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAACegAAAAACfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAegAAAAAAegAAAAABegAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAAATgAAAAADXQAAAAADTgAAAAACXQAAAAADTgAAAAACXQAAAAACTgAAAAAAXQAAAAACegAAAAABegAAAAAAegAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAACHwAAAAADHwAAAAABHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAA
version: 6
-4,1:
ind: -4,1
- tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAXQAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAegAAAAAAegAAAAAAegAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAATgAAAAAAXQAAAAAAfgAAAAAAegAAAAAAegAAAAADegAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACZAAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAXQAAAAAATgAAAAABfgAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAZAAAAAAAXQAAAAACfgAAAAAAXQAAAAAAegAAAAACegAAAAADegAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAA
+ tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAXQAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAegAAAAABegAAAAADegAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAATgAAAAABXQAAAAABfgAAAAAAegAAAAACegAAAAABegAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADZAAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAXQAAAAADTgAAAAADfgAAAAAAfgAAAAAAegAAAAACegAAAAABegAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAZAAAAAAAXQAAAAABfgAAAAAAXQAAAAACegAAAAAAegAAAAABegAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAA
version: 6
-2,1:
ind: -2,1
- tiles: fgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABegAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAADHwAAAAACfgAAAAAAHwAAAAADHwAAAAADHwAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAHwAAAAAAegAAAAADegAAAAADegAAAAABegAAAAACegAAAAADHwAAAAADHwAAAAABQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAAAXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAACegAAAAABegAAAAACegAAAAABegAAAAADegAAAAAAHwAAAAABfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAACegAAAAADegAAAAABegAAAAABegAAAAABegAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAACegAAAAACegAAAAACegAAAAAAegAAAAAAegAAAAAAHwAAAAAAHwAAAAACIwAAAAACHwAAAAACIwAAAAAAfgAAAAAAXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAABegAAAAABegAAAAAAegAAAAACegAAAAACegAAAAABHwAAAAADfgAAAAAAIwAAAAAAHwAAAAACIwAAAAAAfgAAAAAAXQAAAAABbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAABTgAAAAADXQAAAAAATgAAAAAAXQAAAAADTgAAAAADXQAAAAAATgAAAAAAXQAAAAABTgAAAAADXQAAAAADTgAAAAAAXQAAAAADTgAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAABHwAAAAACHwAAAAAAHwAAAAABHwAAAAADHwAAAAACHwAAAAACHwAAAAADHwAAAAABfgAAAAAATQAAAAAATQAAAAACTQAAAAADfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA
+ tiles: fgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACegAAAAACegAAAAADegAAAAACegAAAAADegAAAAABHwAAAAACfgAAAAAAHwAAAAACHwAAAAADHwAAAAACfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAbQAAAAAAHwAAAAABegAAAAAAegAAAAACegAAAAADegAAAAABegAAAAAAHwAAAAABHwAAAAABQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAACXQAAAAACfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAADegAAAAACegAAAAABegAAAAABegAAAAACegAAAAACHwAAAAADfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAABegAAAAACegAAAAADegAAAAADegAAAAACegAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAXQAAAAACfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAegAAAAACegAAAAAAegAAAAADegAAAAACegAAAAAAHwAAAAABHwAAAAAAIwAAAAABHwAAAAADIwAAAAACfgAAAAAAXQAAAAADfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAADegAAAAAAegAAAAADegAAAAADegAAAAAAegAAAAABHwAAAAABfgAAAAAAIwAAAAADHwAAAAADIwAAAAADfgAAAAAAXQAAAAADbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACTgAAAAABXQAAAAAATgAAAAADXQAAAAABTgAAAAABXQAAAAADTgAAAAACXQAAAAAATgAAAAADXQAAAAAATgAAAAAAXQAAAAAATgAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACHwAAAAACHwAAAAADHwAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAAAfgAAAAAATQAAAAACTQAAAAACTQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA
version: 6
-2,2:
ind: -2,2
- tiles: fgAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAXQAAAAACTwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAABTwAAAAAABQAAAAADfgAAAAAATwAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAABHwAAAAABHwAAAAABHwAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAXQAAAAACTwAAAAAATwAAAAAAfgAAAAAATwAAAAAAHwAAAAABTwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAABXQAAAAABXQAAAAACXQAAAAACfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAACTwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUQAAAAAA
+ tiles: fgAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAABTwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAXQAAAAADTwAAAAAABQAAAAAAfgAAAAAATwAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAABHwAAAAADHwAAAAACXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAXQAAAAADTwAAAAAATwAAAAAAfgAAAAAATwAAAAAAHwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAACXQAAAAADXQAAAAABXQAAAAABfgAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAHwAAAAABHwAAAAABTwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAACHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUQAAAAAA
version: 6
-1,3:
ind: -1,3
@@ -313,7 +313,7 @@ entities:
version: 6
-1,2:
ind: -1,2
- tiles: TwAAAAAAXQAAAAADfgAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAABXQAAAAACTwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAADbAAAAAAATwAAAAAAXQAAAAABfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAACbAAAAAAAXQAAAAADXQAAAAACfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAHwAAAAAAXQAAAAABbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAHwAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA
+ tiles: TwAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAAAbAAAAAAATwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAAAbAAAAAAATwAAAAAAXQAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAbAAAAAAAXQAAAAAAXQAAAAABfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAXQAAAAAAXQAAAAABbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAXQAAAAADXQAAAAADXQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA
version: 6
-3,2:
ind: -3,2
@@ -333,23 +333,23 @@ entities:
version: 6
0,2:
ind: 0,2
- tiles: XQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAABHwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbAAAAAAAbAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAXQAAAAABHwAAAAABfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAXQAAAAAAHwAAAAABbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAXQAAAAABHwAAAAABbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAXQAAAAADXQAAAAABXQAAAAABHwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAA
+ tiles: bAAAAAAAbAAAAAAAXQAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAABHwAAAAABHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAbQAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAXQAAAAACXQAAAAABbQAAAAAAbQAAAAAAbQAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAA
version: 6
-4,2:
ind: -4,2
- tiles: AAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAACHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAA
version: 6
-4,3:
ind: -4,3
- tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAXQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAXQAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAXQAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAXQAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAXQAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-5,1:
ind: -5,1
- tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAACHwAAAAACHwAAAAACHwAAAAADHwAAAAADHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAHwAAAAACfgAAAAAAHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-5,0:
ind: -5,0
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA
version: 6
2,-5:
ind: 2,-5
@@ -405,11 +405,11 @@ entities:
version: 6
-6,1:
ind: -6,1
- tiles: HwAAAAADHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAHwAAAAABHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAOwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAfgAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: HwAAAAADHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAOwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAfgAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-7,1:
ind: -7,1
- tiles: QAAAAAAAQAAAAAAAQAAAAAAAHwAAAAABfgAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAADHwAAAAADQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAACHwAAAAABHwAAAAACHwAAAAAAHwAAAAADQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAABfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAABHwAAAAABHwAAAAADHwAAAAABHwAAAAABHwAAAAADfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAfQAAAAAAHwAAAAADfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAADTwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAIwAAAAACIwAAAAADIwAAAAADIwAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfQAAAAAAIwAAAAAAOAAAAAAAOAAAAAAAIwAAAAABHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAOAAAAAAAIwAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAfgAAAAAAOAAAAAAAIwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAIwAAAAACIwAAAAACIwAAAAABIwAAAAACIwAAAAABOAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAOAAAAAAAIwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAABfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAIwAAAAADHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAABfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAACIwAAAAAAIwAAAAADIwAAAAADHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAADfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAABTwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: QAAAAAAAQAAAAAAAQAAAAAAAHwAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAABHwAAAAADfgAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAACHwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAABHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAABHwAAAAACHwAAAAABQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAADfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAACfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAABHwAAAAACfgAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfQAAAAAAHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAACTwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAIwAAAAADIwAAAAABIwAAAAADIwAAAAACHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfQAAAAAAIwAAAAACOAAAAAAAOAAAAAAAIwAAAAACHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAOAAAAAAAIwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAfgAAAAAAOAAAAAAAIwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAIwAAAAABIwAAAAACIwAAAAAAIwAAAAAAIwAAAAAAOAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAABfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAOAAAAAAAIwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAABfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAIwAAAAAAHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAABfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAACIwAAAAADIwAAAAAAIwAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAABTwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-6,0:
ind: -6,0
@@ -417,23 +417,23 @@ entities:
version: 6
-7,0:
ind: -7,0
- tiles: fQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAADHwAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABHwAAAAACHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAACHwAAAAABHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAHwAAAAAAHwAAAAABEQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACEQAAAAAAHwAAAAABEQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAABfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAJAAAAAADHwAAAAABHwAAAAABfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADEQAAAAAAHwAAAAABEQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAADHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAEQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAABfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAABHwAAAAABfgAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAA
+ tiles: fQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADHwAAAAABHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAABHwAAAAADfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAABfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAADfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADHwAAAAACHwAAAAABEQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAABfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAEQAAAAAAHwAAAAABEQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAADJAAAAAACHwAAAAADHwAAAAABfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACEQAAAAAAHwAAAAACEQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAADEQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAADfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAADHwAAAAAAfgAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAA
version: 6
-8,0:
ind: -8,0
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAABHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAADfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAEQAAAAAAHwAAAAABHwAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfgAAAAAAEQAAAAAAHwAAAAABEQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAADHwAAAAAAJAAAAAADAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAAAHwAAAAABHwAAAAACfQAAAAAAfQAAAAAAfgAAAAAAEQAAAAAAHwAAAAABEQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAEQAAAAAAHwAAAAADHwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAAD
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAADHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAEQAAAAAAHwAAAAADHwAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfQAAAAAAAAAAAAAAfgAAAAAAEQAAAAAAHwAAAAACEQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAADHwAAAAAAJAAAAAACAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAABHwAAAAAAHwAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAEQAAAAAAHwAAAAADHwAAAAABAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAD
version: 6
-8,1:
ind: -8,1
- tiles: AAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAHwAAAAACfgAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAACHwAAAAACfgAAAAAAHwAAAAABQAAAAAAAQAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAACHwAAAAACHwAAAAADHwAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAHwAAAAABHwAAAAAAHwAAAAACAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAACfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAIwAAAAAAIwAAAAADIwAAAAABAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAIwAAAAABOAAAAAAAOAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAIwAAAAABOAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADIwAAAAAAOAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfgAAAAAAfgAAAAAAOAAAAAAAIwAAAAABIwAAAAAAIwAAAAADIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAIwAAAAAAOAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAIwAAAAAAOAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAIwAAAAACIwAAAAACIwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAHwAAAAADHwAAAAAAHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAA
+ tiles: AAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAHwAAAAACfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAHwAAAAABQAAAAAAAQAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAADHwAAAAABHwAAAAADHwAAAAAAHwAAAAACHwAAAAADHwAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACQAAAAAAAQAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAHwAAAAABHwAAAAAAHwAAAAADAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAABfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACIwAAAAABIwAAAAAAIwAAAAADAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACIwAAAAAAOAAAAAAAOAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACIwAAAAACOAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADIwAAAAABOAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfgAAAAAAfgAAAAAAOAAAAAAAIwAAAAABIwAAAAADIwAAAAABIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABIwAAAAADOAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAIwAAAAACOAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADIwAAAAAAIwAAAAACIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAHwAAAAABHwAAAAACHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAD
version: 6
-8,2:
ind: -8,2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAABHwAAAAADHwAAAAADHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAACHwAAAAACHwAAAAAAHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAADHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-7,2:
ind: -7,2
- tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAABHwAAAAACHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAAAHwAAAAADfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAABfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAACHwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAAAHwAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAADHwAAAAADfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-7,-1:
ind: -7,-1
@@ -445,7 +445,7 @@ entities:
version: 6
-5,3:
ind: -5,3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-5,2:
ind: -5,2
@@ -465,11 +465,11 @@ entities:
version: 6
3,2:
ind: 3,2
- tiles: AAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAACXQAAAAABbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAABXQAAAAACXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAADXQAAAAABbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADXQAAAAABXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAACXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAABXQAAAAADXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAABXQAAAAADXQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAABXQAAAAADXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
2,2:
ind: 2,2
- tiles: XQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAXQAAAAACXQAAAAABXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAXQAAAAADXQAAAAABXQAAAAADbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAXQAAAAACXQAAAAACXQAAAAADbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAXQAAAAADXQAAAAACXQAAAAABbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: XQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAXQAAAAACXQAAAAADXQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAXQAAAAADXQAAAAADXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAXQAAAAABXQAAAAAAXQAAAAABbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAXQAAAAADXQAAAAAAXQAAAAADbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
1,3:
ind: 1,3
@@ -477,11 +477,11 @@ entities:
version: 6
2,3:
ind: 2,3
- tiles: fgAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: fgAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
3,3:
ind: 3,3
- tiles: AAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
- type: Broadphase
- type: Physics
@@ -938,6 +938,17 @@ 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
@@ -1036,6 +1047,7 @@ entities:
3808: 45,1
3809: 47,17
3810: 47,18
+ 3896: -13,11
3941: -5,17
3979: -56,13
3980: -54,13
@@ -1048,7 +1060,6 @@ entities:
5095: -20,5
5096: -25,5
5227: -25,-12
- 5352: -14,11
- node:
cleanable: True
color: '#FFFFFFFF'
@@ -1134,6 +1145,12 @@ entities:
color: '#FFFFFFFF'
id: BotRightGreyscale
decals:
+ 3774: 7,34
+ 3775: 7,35
+ 3776: 7,36
+ 3777: 8,36
+ 3778: 8,34
+ 3779: 8,35
5067: -29,-1
5068: -29,0
5083: -29,-2
@@ -1231,6 +1248,7 @@ entities:
decals:
3008: 21,1
3019: 23,1
+ 3773: 6,37
- node:
color: '#FFFFFFFF'
id: BrickTileDarkInnerSw
@@ -1244,6 +1262,9 @@ entities:
2959: -115,13
3011: 23,0
3275: 37,18
+ 3770: 6,34
+ 3771: 6,35
+ 3772: 6,36
- node:
color: '#FFFFFFFF'
id: BrickTileDarkLineN
@@ -2827,8 +2848,6 @@ entities:
5128: -19,-18
5129: -19,-22
5130: -21,-22
- 5350: 3,34
- 5351: 0,30
- node:
cleanable: True
color: '#FFFFFFFF'
@@ -5506,11 +5525,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'
@@ -5522,11 +5541,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'
@@ -5540,8 +5559,8 @@ entities:
1050: -2,-78
3340: -19,42
3894: -15,4
+ 4923: -2,36
5082: -29,-2
- 5347: -2,37
- node:
zIndex: 5
color: '#FFFFFFFF'
@@ -5554,12 +5573,12 @@ entities:
decals:
727: -30,36
1049: 2,-78
+ 1360: 2,36
2544: 40,-35
3329: -27,40
3339: -15,42
3963: -54,6
5075: -25,-2
- 5346: 2,37
- node:
zIndex: 5
color: '#FFFFFFFF'
@@ -5614,6 +5633,10 @@ entities:
862: -12,3
863: -12,4
864: -12,5
+ 1353: -2,32
+ 1354: -2,33
+ 1355: -2,34
+ 1356: -2,35
1748: -37,-18
1759: -15,22
1763: 17,6
@@ -5627,6 +5650,9 @@ entities:
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
@@ -5639,10 +5665,6 @@ entities:
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
@@ -5876,6 +5898,9 @@ 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
@@ -5911,9 +5936,6 @@ entities:
5073: -27,-2
5074: -26,-2
5090: -18,7
- 5336: 1,37
- 5337: 0,37
- 5338: -1,37
- node:
color: '#DE3A3A96'
id: WarnLineS
@@ -5934,6 +5956,10 @@ entities:
1051: -20,-56
1052: -20,-55
1053: -20,-54
+ 1349: 2,32
+ 1350: 2,33
+ 1351: 2,34
+ 1352: 2,35
1747: -39,-18
1760: -17,22
1762: 15,6
@@ -5956,12 +5982,10 @@ entities:
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
@@ -5987,6 +6011,9 @@ 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
@@ -6024,6 +6051,7 @@ entities:
3747: -6,29
3764: 4,37
3765: 5,37
+ 3766: 6,37
3767: -4,37
3768: -5,37
3769: -6,37
@@ -6043,10 +6071,6 @@ entities:
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'
@@ -6119,49 +6143,28 @@ 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:
- 5375: -8,14
- 5376: -7,15
+ 1207: -7,14
- 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
- 5369: -7,19
- 5370: -8,20
+ 1202: -7,19
- node:
color: '#FFFFFFFF'
id: WoodTrimThinLineE
@@ -6184,6 +6187,10 @@ 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
@@ -6196,9 +6203,6 @@ entities:
3692: 10,-29
3693: 10,-28
3844: 26,-16
- 5357: -13,16
- 5358: -13,17
- 5359: -13,18
- node:
color: '#FFFFFFFF'
id: WoodTrimThinLineN
@@ -6209,8 +6213,17 @@ 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
@@ -6237,9 +6250,6 @@ entities:
5053: -22,-2
5054: -21,-2
5055: -20,-2
- 5363: -11,14
- 5364: -10,14
- 5365: -9,14
- node:
color: '#FFFFFFFF'
id: WoodTrimThinLineS
@@ -6249,6 +6259,10 @@ entities:
797: -5,-3
798: -7,-3
799: -8,-3
+ 1198: -11,19
+ 1199: -10,19
+ 1200: -9,19
+ 1201: -8,19
2046: -47,-16
2047: -46,-16
2053: -41,7
@@ -6271,9 +6285,6 @@ entities:
5049: -23,1
5050: -22,1
5051: -21,1
- 5366: -11,20
- 5367: -10,20
- 5368: -9,20
- node:
color: '#FFFFFFFF'
id: WoodTrimThinLineW
@@ -6291,10 +6302,11 @@ 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'
@@ -6612,12 +6624,12 @@ entities:
-5,1:
0: 63675
-4,2:
- 0: 29695
+ 0: 62463
-5,2:
0: 35071
1: 12288
-4,3:
- 0: 45943
+ 0: 46079
-5,3:
0: 47240
1: 48
@@ -6628,9 +6640,9 @@ entities:
-3,1:
0: 61695
-3,2:
- 0: 62719
+ 0: 58623
-3,3:
- 0: 65535
+ 0: 65262
-3,4:
0: 65535
-2,1:
@@ -7867,7 +7879,7 @@ entities:
-3,7:
0: 46079
-3,8:
- 0: 15259
+ 0: 48027
-2,5:
0: 37819
-2,6:
@@ -7875,7 +7887,7 @@ entities:
-2,7:
0: 61695
-2,8:
- 0: 4095
+ 0: 46079
-1,5:
0: 64511
-1,6:
@@ -7883,7 +7895,7 @@ entities:
-1,7:
0: 53503
-1,8:
- 0: 52701
+ 0: 64733
0,4:
0: 65520
0,5:
@@ -7927,7 +7939,7 @@ entities:
1,7:
0: 65535
1,8:
- 0: 30479
+ 0: 65295
2,4:
0: 63344
2,5:
@@ -7940,8 +7952,8 @@ entities:
0: 4369
1: 19524
2,8:
- 0: 30465
- 1: 4
+ 0: 4353
+ 1: 52292
3,5:
0: 34955
1: 8960
@@ -8362,23 +8374,23 @@ entities:
0,14:
1: 65456
-3,9:
- 0: 15291
+ 0: 15283
-3,10:
0: 13115
1: 34944
-2,9:
- 0: 7677
+ 0: 7672
-2,10:
0: 4433
1: 57902
-1,9:
- 0: 511
+ 0: 287
1: 49152
-1,10:
1: 61727
0,9:
- 0: 255
- 1: 28672
+ 0: 15
+ 1: 28928
0,10:
1: 61727
0,11:
@@ -8511,15 +8523,15 @@ entities:
-5,16:
1: 30068
1,9:
- 0: 2039
+ 0: 1919
1,10:
1: 63903
0: 64
2,9:
- 0: 4915
- 1: 34944
+ 0: 4097
+ 1: 43916
2,10:
- 0: 4371
+ 0: 4369
1: 43680
3,9:
1: 65255
@@ -9474,8 +9486,8 @@ entities:
id: docking43669
localAnchorB: -47.5,-40
localAnchorA: 0.5,0
- damping: 1560.5565
- stiffness: 14007.522
+ damping: 1560.5498
+ stiffness: 14007.463
- proto: AcousticGuitarInstrument
entities:
- uid: 6610
@@ -9597,17 +9609,6 @@ entities:
- 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
@@ -10331,6 +10332,18 @@ 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
@@ -11203,11 +11216,6 @@ entities:
parent: 60
- proto: AirlockEngineeringGlassLocked
entities:
- - uid: 4260
- components:
- - type: Transform
- pos: 23.5,3.5
- parent: 60
- uid: 5859
components:
- type: MetaData
@@ -11373,6 +11381,12 @@ 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
@@ -11423,28 +11437,6 @@ 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
@@ -13989,9 +13981,6 @@ entities:
- type: Transform
pos: -7.5,13.5
parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 1229
- uid: 21648
components:
- type: Transform
@@ -14336,14 +14325,6 @@ 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
@@ -14586,6 +14567,13 @@ entities:
- type: Transform
pos: -24.5,-2.5
parent: 60
+ - uid: 14328
+ components:
+ - type: MetaData
+ name: Library APC
+ - type: Transform
+ pos: -13.5,14.5
+ parent: 60
- uid: 14552
components:
- type: MetaData
@@ -16507,16 +16495,6 @@ entities:
- 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
@@ -16603,6 +16581,34 @@ 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
@@ -16610,6 +16616,11 @@ 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
@@ -16629,16 +16640,6 @@ 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
@@ -16646,70 +16647,80 @@ entities:
- type: Transform
pos: -5.5,-7.5
parent: 60
- - uid: 4794
+ - uid: 4526
components:
- type: Transform
- pos: -6.5,14.5
+ pos: -6.5,18.5
+ parent: 60
+ - uid: 4527
+ components:
+ - type: Transform
+ pos: -6.5,16.5
parent: 60
- uid: 6577
components:
- type: Transform
pos: -6.5,22.5
parent: 60
- - uid: 9009
+ - uid: 14124
components:
- type: Transform
- pos: -10.5,20.5
+ pos: -6.5,17.5
parent: 60
- - uid: 9040
+ - uid: 14126
components:
- type: Transform
pos: -6.5,12.5
parent: 60
- - uid: 11522
+ - uid: 14131
components:
- type: Transform
- pos: -11.5,20.5
+ pos: -7.5,12.5
parent: 60
- - uid: 14155
+ - uid: 14137
+ components:
+ - type: Transform
+ pos: -6.5,14.5
+ parent: 60
+ - uid: 14138
components:
- type: Transform
pos: -7.5,14.5
parent: 60
- - uid: 14171
+ - uid: 14139
components:
- type: Transform
- pos: -11.5,22.5
+ pos: -12.5,20.5
parent: 60
- - uid: 14173
+ - uid: 14141
components:
- type: Transform
- pos: -11.5,13.5
+ pos: -10.5,12.5
parent: 60
- - uid: 14303
+ - uid: 14144
components:
- type: Transform
- pos: -11.5,11.5
+ pos: -10.5,14.5
parent: 60
- - uid: 16091
+ - uid: 14145
components:
- type: Transform
- pos: -10.5,22.5
+ pos: -12.5,21.5
parent: 60
- - uid: 16418
+ - uid: 14146
components:
- type: Transform
- pos: -12.5,22.5
+ pos: -12.5,18.5
parent: 60
- - uid: 16436
+ - uid: 14175
components:
- type: Transform
- pos: -7.5,12.5
+ pos: -10.5,22.5
parent: 60
- - uid: 16438
+ - uid: 14178
components:
- type: Transform
- pos: -12.5,20.5
+ pos: -12.5,22.5
parent: 60
- uid: 17652
components:
@@ -17285,12 +17296,6 @@ entities:
rot: 3.141592653589793 rad
pos: 37.5,-21.5
parent: 60
- - uid: 16403
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,31.5
- parent: 60
- uid: 19838
components:
- type: Transform
@@ -17355,6 +17360,12 @@ 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
@@ -25414,11 +25425,6 @@ 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
@@ -26384,11 +26390,6 @@ 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
@@ -26414,11 +26415,6 @@ 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
@@ -26844,11 +26840,6 @@ 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
@@ -27164,6 +27155,11 @@ 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
@@ -27552,7 +27548,7 @@ entities:
- uid: 16361
components:
- type: Transform
- pos: 6.5,37.5
+ pos: -3.5,35.5
parent: 60
- uid: 16366
components:
@@ -27564,15 +27560,15 @@ entities:
- type: Transform
pos: -7.5,39.5
parent: 60
- - uid: 16377
+ - uid: 16401
components:
- type: Transform
- pos: 5.5,37.5
+ pos: -7.5,33.5
parent: 60
- - uid: 16401
+ - uid: 16407
components:
- type: Transform
- pos: -7.5,33.5
+ pos: -2.5,35.5
parent: 60
- uid: 16412
components:
@@ -28919,6 +28915,11 @@ 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
@@ -31154,21 +31155,6 @@ entities:
- 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
@@ -32399,16 +32385,6 @@ 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
@@ -32479,26 +32455,6 @@ 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
@@ -33351,11 +33307,6 @@ 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
@@ -38265,56 +38216,11 @@ entities:
- 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
@@ -38325,16 +38231,6 @@ entities:
- 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
@@ -38475,6 +38371,11 @@ 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
@@ -39995,6 +39896,16 @@ 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
@@ -40025,6 +39936,31 @@ 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
+ components:
+ - type: Transform
+ pos: -4.5,35.5
+ parent: 60
- uid: 16456
components:
- type: Transform
@@ -40045,6 +39981,11 @@ entities:
- type: Transform
pos: 6.5,38.5
parent: 60
+ - uid: 16528
+ components:
+ - type: Transform
+ pos: -2.5,35.5
+ parent: 60
- uid: 16678
components:
- type: Transform
@@ -40165,6 +40106,21 @@ 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
@@ -40290,6 +40246,11 @@ entities:
- type: Transform
pos: -9.5,56.5
parent: 60
+ - uid: 17153
+ components:
+ - type: Transform
+ pos: 10.5,37.5
+ parent: 60
- uid: 17467
components:
- type: Transform
@@ -46219,11 +46180,6 @@ 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
@@ -46484,51 +46440,16 @@ 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
@@ -47104,6 +47025,11 @@ 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
@@ -47129,6 +47055,36 @@ 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
@@ -47139,11 +47095,21 @@ 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
@@ -49615,6 +49581,78 @@ entities:
- 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
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -9.5,21.5
+ parent: 60
+ - uid: 14169
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -9.5,11.5
+ parent: 60
+ - uid: 14170
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -9.5,12.5
+ parent: 60
+ - uid: 14171
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -9.5,13.5
+ parent: 60
+ - uid: 14172
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -8.5,11.5
+ parent: 60
+ - uid: 14173
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -8.5,12.5
+ parent: 60
+ - uid: 14174
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -8.5,13.5
+ parent: 60
- uid: 14485
components:
- type: Transform
@@ -49680,113 +49718,6 @@ 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
@@ -50056,6 +49987,96 @@ 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
@@ -50068,6 +50089,12 @@ 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
@@ -53624,11 +53651,6 @@ 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
@@ -53694,11 +53716,6 @@ 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
@@ -53999,31 +54016,6 @@ 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
@@ -56066,11 +56058,6 @@ 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
@@ -57611,11 +57598,6 @@ 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
@@ -58007,17 +57989,41 @@ entities:
rot: -1.5707963267948966 rad
pos: 18.4897,-38.423878
parent: 60
- - uid: 14154
+ - uid: 14118
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -11.5321455,21.501402
+ pos: -7.5,17.5
parent: 60
- - uid: 14159
+ - uid: 14119
+ 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
+ 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: -11.474271,12.4426365
+ pos: -10.5,16.5
+ parent: 60
+ - uid: 14136
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -10.5,17.5
parent: 60
- uid: 14187
components:
@@ -58031,6 +58037,17 @@ 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
@@ -59962,13 +59979,6 @@ entities:
- type: Transform
pos: -30.497168,-20.40541
parent: 60
-- proto: ClothingBeltUtilityEngineering
- entities:
- - uid: 14118
- components:
- - type: Transform
- pos: -14.449867,32.546978
- parent: 60
- proto: ClothingBeltUtilityFilled
entities:
- uid: 5284
@@ -60271,7 +60281,7 @@ entities:
- uid: 24258
components:
- type: Transform
- pos: 12.34339,35.974167
+ pos: 12.042968,35.99082
parent: 60
- uid: 24259
components:
@@ -60586,20 +60596,6 @@ 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
@@ -60696,6 +60692,20 @@ 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
@@ -60746,6 +60756,27 @@ 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
@@ -60764,6 +60795,13 @@ 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
@@ -60831,6 +60869,13 @@ 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
@@ -61357,18 +61402,6 @@ 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
@@ -61430,24 +61463,6 @@ 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
@@ -61460,35 +61475,16 @@ entities:
rot: 1.5707963267948966 rad
pos: 19.5,-37.5
parent: 60
- - uid: 14172
- components:
- - type: Transform
- 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
+ - uid: 14117
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,17.5
+ pos: -9.5,18.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
@@ -63309,32 +63305,6 @@ entities:
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
@@ -63373,19 +63343,35 @@ entities:
parent: 7536
- proto: d20Dice
entities:
- - uid: 14149
+ - uid: 14217
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.975064,16.881664
+ pos: -8.428826,17.002214
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
@@ -64231,6 +64217,11 @@ 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
@@ -64624,6 +64615,11 @@ 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
@@ -67220,6 +67216,12 @@ 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
@@ -67275,11 +67277,17 @@ entities:
- type: Transform
pos: -15.5,23.5
parent: 60
- - uid: 14178
+ - uid: 14434
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -15.5,16.5
+ rot: -1.5707963267948966 rad
+ pos: -13.5,16.5
+ parent: 60
+ - uid: 14435
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -14.5,16.5
parent: 60
- uid: 14636
components:
@@ -68302,11 +68310,23 @@ 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
@@ -68347,12 +68367,6 @@ 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
@@ -68572,6 +68586,16 @@ entities:
- type: Transform
pos: 7.5,10.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
@@ -68617,11 +68641,6 @@ 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
@@ -69458,6 +69477,16 @@ 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
@@ -69631,11 +69660,6 @@ 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
@@ -69666,6 +69690,11 @@ 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
@@ -69882,6 +69911,11 @@ entities:
- type: Transform
pos: -36.5,-34.5
parent: 60
+ - uid: 11018
+ components:
+ - type: Transform
+ pos: -8.5,16.5
+ parent: 60
- proto: filingCabinetDrawerRandom
entities:
- uid: 1942
@@ -70570,6 +70604,12 @@ 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
@@ -75090,22 +75130,6 @@ entities:
parent: 60
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 14217
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,14.5
- parent: 60
- - type: AtmosPipeColor
- color: '#FF1212FF'
- - uid: 14219
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,14.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0335FCFF'
- uid: 14260
components:
- type: Transform
@@ -86105,22 +86129,6 @@ entities:
parent: 60
- type: AtmosPipeColor
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
@@ -86646,11 +86654,10 @@ entities:
parent: 60
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 14318
+ - uid: 14319
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,17.5
+ pos: -9.5,14.5
parent: 60
- type: AtmosPipeColor
color: '#0335FCFF'
@@ -93759,6 +93766,14 @@ entities:
parent: 60
- type: AtmosPipeColor
color: '#FF1212FF'
+ - uid: 1229
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,14.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 1259
components:
- type: Transform
@@ -95267,26 +95282,26 @@ entities:
parent: 60
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 14295
+ - uid: 14293
components:
- type: Transform
- pos: -9.5,17.5
+ rot: 3.141592653589793 rad
+ pos: -11.5,17.5
parent: 60
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 14308
+ - uid: 14295
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,14.5
+ pos: -9.5,17.5
parent: 60
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 14312
+ - uid: 14308
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,14.5
+ rot: 3.141592653589793 rad
+ pos: -11.5,15.5
parent: 60
- type: AtmosPipeColor
color: '#FF1212FF'
@@ -97941,16 +97956,6 @@ entities:
parent: 60
- type: AtmosPipeColor
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
@@ -97988,6 +97993,13 @@ entities:
parent: 60
- type: AtmosPipeColor
color: '#0335FCFF'
+ - uid: 14303
+ components:
+ - type: Transform
+ pos: -11.5,18.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 14325
components:
- type: Transform
@@ -99402,16 +99414,6 @@ entities:
parent: 60
- type: AtmosPipeColor
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
@@ -99516,6 +99518,21 @@ entities:
rot: 1.5707963267948966 rad
pos: -9.5,-13.5
parent: 60
+ - uid: 14312
+ components:
+ - type: Transform
+ pos: -11.5,16.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 14318
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -9.5,14.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 14503
components:
- type: Transform
@@ -101535,6 +101552,11 @@ 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
@@ -103066,6 +103088,11 @@ 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
@@ -103756,21 +103783,6 @@ 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
@@ -104336,35 +104348,30 @@ entities:
rot: 1.5707963267948966 rad
pos: 1.5,30.5
parent: 60
- - uid: 16356
- components:
- - type: Transform
- pos: 7.5,34.5
- parent: 60
- - uid: 16362
+ - uid: 16377
components:
- type: Transform
- pos: 1.5,38.5
+ pos: -0.5,37.5
parent: 60
- - uid: 16370
+ - uid: 16378
components:
- type: Transform
- pos: -0.5,38.5
+ pos: 38.5,17.5
parent: 60
- - uid: 16378
+ - uid: 16397
components:
- type: Transform
- pos: 38.5,17.5
+ pos: -19.5,35.5
parent: 60
- - uid: 16392
+ - uid: 16433
components:
- type: Transform
- pos: -1.5,38.5
+ pos: 0.5,37.5
parent: 60
- - uid: 16397
+ - uid: 16434
components:
- type: Transform
- pos: -19.5,35.5
+ pos: 1.5,37.5
parent: 60
- uid: 16623
components:
@@ -105047,11 +105054,6 @@ 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
@@ -107922,11 +107924,6 @@ 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
@@ -109809,10 +109806,10 @@ entities:
parent: 60
- proto: HolopadServiceLibrary
entities:
- - uid: 14151
+ - uid: 24049
components:
- type: Transform
- pos: -9.5,19.5
+ pos: -8.5,18.5
parent: 60
- proto: HolopadServiceNewsroom
entities:
@@ -110173,16 +110170,16 @@ entities:
parent: 60
- proto: IntercomEngineering
entities:
- - uid: 9473
+ - uid: 6286
components:
- type: Transform
- pos: 2.5,12.5
+ rot: 1.5707963267948966 rad
+ pos: -5.5,18.5
parent: 60
- - uid: 14440
+ - uid: 9473
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,16.5
+ pos: 2.5,12.5
parent: 60
- uid: 23847
components:
@@ -110577,15 +110574,10 @@ entities:
- type: Transform
pos: -8.397732,20.931147
parent: 60
- - uid: 14163
- components:
- - type: Transform
- pos: -8.599271,11.8332615
- parent: 60
- - uid: 14215
+ - uid: 14437
components:
- type: Transform
- pos: -12.5790205,21.938902
+ pos: -10.617271,13.996219
parent: 60
- uid: 17683
components:
@@ -112764,10 +112756,10 @@ entities:
parent: 60
- proto: PaintingPersistenceOfMemory
entities:
- - uid: 14162
+ - uid: 18852
components:
- type: Transform
- pos: -5.5,17.5
+ pos: -11.5,14.5
parent: 60
- proto: PaintingPrayerHands
entities:
@@ -113037,6 +113029,16 @@ 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
@@ -113222,59 +113224,59 @@ entities:
parent: 60
- proto: ParticleAcceleratorControlBox
entities:
- - uid: 16390
+ - uid: 5542
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 1.5,34.5
+ pos: 1.5,33.5
parent: 60
- proto: ParticleAcceleratorEmitterForeUnfinished
entities:
- - uid: 15521
+ - uid: 16403
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 0.5,36.5
+ pos: 0.5,35.5
parent: 60
- proto: ParticleAcceleratorEmitterPortUnfinished
entities:
- - uid: 15522
+ - uid: 16349
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -0.5,36.5
+ pos: -0.5,35.5
parent: 60
- proto: ParticleAcceleratorEmitterStarboardUnfinished
entities:
- - uid: 14514
+ - uid: 16402
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 1.5,36.5
+ pos: 1.5,35.5
parent: 60
- proto: ParticleAcceleratorEndCapUnfinished
entities:
- - uid: 15520
+ - uid: 16405
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 0.5,33.5
+ pos: 0.5,32.5
parent: 60
- proto: ParticleAcceleratorFuelChamberUnfinished
entities:
- - uid: 16420
+ - uid: 15520
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 0.5,34.5
+ pos: 0.5,33.5
parent: 60
- proto: ParticleAcceleratorPowerBoxUnfinished
entities:
- - uid: 15523
+ - uid: 16404
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 0.5,35.5
+ pos: 0.5,34.5
parent: 60
- proto: PartRodMetal
entities:
@@ -113333,11 +113335,6 @@ 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
@@ -113454,10 +113451,10 @@ entities:
- type: Transform
pos: -113.45662,13.529887
parent: 60
- - uid: 14165
+ - uid: 14211
components:
- type: Transform
- pos: -11.458646,12.4738865
+ pos: -10.48097,11.426869
parent: 60
- uid: 18573
components:
@@ -113549,10 +113546,10 @@ entities:
- type: Transform
pos: -25.5,35.5
parent: 60
- - uid: 21644
+ - uid: 16418
components:
- type: Transform
- pos: -5.5,34.5
+ pos: -6.5,33.5
parent: 60
- proto: PlasmaOre1
entities:
@@ -113663,26 +113660,6 @@ 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
@@ -114563,10 +114540,10 @@ entities:
parent: 60
- proto: PosterLegitNTTGC
entities:
- - uid: 14157
+ - uid: 17250
components:
- type: Transform
- pos: -12.5,14.5
+ pos: -11.5,13.5
parent: 60
- proto: PosterLegitPDAAd
entities:
@@ -114933,15 +114910,15 @@ entities:
parent: 60
- proto: PottedPlant24
entities:
- - uid: 14156
+ - uid: 19961
components:
- type: Transform
- pos: -6.5,15.5
+ pos: -20.580471,15.2164345
parent: 60
- - uid: 19961
+ - uid: 21362
components:
- type: Transform
- pos: -20.580471,15.2164345
+ pos: -11.5,15.5
parent: 60
- proto: PottedPlant26
entities:
@@ -116659,6 +116636,14 @@ entities:
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
@@ -116902,6 +116887,22 @@ 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
@@ -117667,12 +117668,6 @@ 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
@@ -118052,29 +118047,11 @@ entities:
rot: 1.5707963267948966 rad
pos: -8.5,33.5
parent: 60
- - uid: 16348
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,36.5
- parent: 60
- - uid: 16349
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,33.5
- parent: 60
- - uid: 16359
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,36.5
- parent: 60
- - uid: 16423
+ - uid: 16344
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,36.5
+ rot: 3.141592653589793 rad
+ pos: 6.5,34.5
parent: 60
- uid: 16679
components:
@@ -118260,6 +118237,18 @@ 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
@@ -118328,12 +118317,6 @@ entities:
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 23901
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,36.5
- parent: 60
- uid: 24138
components:
- type: Transform
@@ -118777,11 +118760,6 @@ 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
@@ -118797,16 +118775,6 @@ 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
@@ -118892,11 +118860,6 @@ 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
@@ -119903,12 +119866,10 @@ entities:
- type: Transform
pos: 10.5,-26.5
parent: 60
-- proto: RandomVendingClothing
- entities:
- - uid: 17141
+ - uid: 14002
components:
- type: Transform
- pos: -39.5,19.5
+ pos: -12.5,12.5
parent: 60
- proto: RandomVendingDrinks
entities:
@@ -119937,11 +119898,6 @@ 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
@@ -120312,16 +120268,6 @@ entities:
- type: Transform
pos: -19.5,47.5
parent: 60
- - uid: 18644
- components:
- - type: Transform
- pos: -5.5,35.5
- parent: 60
- - uid: 21013
- components:
- - type: Transform
- pos: -3.5,35.5
- parent: 60
- uid: 23455
components:
- type: Transform
@@ -122560,6 +122506,11 @@ 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
@@ -123331,16 +123282,6 @@ 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
@@ -123762,10 +123703,10 @@ entities:
- type: Transform
pos: 6.5,39.5
parent: 60
- - uid: 16369
+ - uid: 16174
components:
- type: Transform
- pos: 0.5,38.5
+ pos: -1.5,37.5
parent: 60
- uid: 16371
components:
@@ -123787,16 +123728,6 @@ entities:
- type: Transform
pos: -2.5,39.5
parent: 60
- - uid: 16394
- components:
- - type: Transform
- pos: -0.5,38.5
- parent: 60
- - uid: 16395
- components:
- - type: Transform
- pos: -1.5,38.5
- parent: 60
- uid: 16426
components:
- type: Transform
@@ -123812,6 +123743,21 @@ entities:
- type: Transform
pos: -5.5,39.5
parent: 60
+ - uid: 16437
+ components:
+ - type: Transform
+ pos: -0.5,37.5
+ parent: 60
+ - uid: 16438
+ components:
+ - type: Transform
+ pos: 0.5,37.5
+ parent: 60
+ - uid: 16439
+ components:
+ - type: Transform
+ pos: 1.5,37.5
+ parent: 60
- uid: 16509
components:
- type: Transform
@@ -123832,11 +123778,6 @@ 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
@@ -124138,11 +124079,6 @@ 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
@@ -125088,11 +125024,6 @@ 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: 5836
@@ -125823,15 +125754,40 @@ entities:
parent: 60
- proto: ShuttersRadiationOpen
entities:
- - uid: 16388
+ - uid: 16369
+ components:
+ - type: Transform
+ pos: -0.5,30.5
+ parent: 60
+ - uid: 16398
components:
- type: Transform
pos: 1.5,30.5
parent: 60
- - uid: 16389
+ - uid: 18610
components:
- type: Transform
- pos: -0.5,30.5
+ 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
+ components:
+ - type: Transform
+ pos: -1.5,37.5
parent: 60
- proto: ShuttersWindow
entities:
@@ -126207,6 +126163,18 @@ 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: 9571
components:
- type: Transform
@@ -126244,6 +126212,19 @@ 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
@@ -126256,6 +126237,18 @@ 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
@@ -126291,7 +126284,7 @@ entities:
- type: DeviceLinkSource
linkedPorts:
14444:
- - Pressed: DoorBolt
+ - Pressed: Toggle
- uid: 14549
components:
- type: Transform
@@ -126359,6 +126352,18 @@ 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
@@ -126373,6 +126378,17 @@ 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: 20425
components:
- type: MetaData
@@ -126396,6 +126412,23 @@ 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
@@ -126875,104 +126908,6 @@ entities:
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
@@ -128287,11 +128222,6 @@ 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
@@ -128763,10 +128693,10 @@ entities:
parent: 60
- proto: SingularityGenerator
entities:
- - uid: 18611
+ - uid: 16399
components:
- type: Transform
- pos: -6.5,34.5
+ pos: -6.5,35.5
parent: 60
- proto: Sink
entities:
@@ -128927,6 +128857,11 @@ entities:
parent: 60
- proto: SMESBasic
entities:
+ - uid: 5409
+ components:
+ - type: Transform
+ pos: -4.5,33.5
+ parent: 60
- uid: 6999
components:
- type: Transform
@@ -128955,16 +128890,9 @@ 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
@@ -131171,6 +131099,23 @@ 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
@@ -131280,10 +131225,10 @@ entities:
- type: Transform
pos: 29.5,-40.5
parent: 60
- - uid: 14169
+ - uid: 13987
components:
- type: Transform
- pos: -11.5,19.5
+ pos: -9.5,13.5
parent: 60
- uid: 19721
components:
@@ -131313,10 +131258,10 @@ entities:
parent: 60
- proto: SpawnMobSlothPaperwork
entities:
- - uid: 14150
+ - uid: 14210
components:
- type: Transform
- pos: -9.5,21.5
+ pos: -10.5,19.5
parent: 60
- proto: SpawnMobSmile
entities:
@@ -132205,11 +132150,6 @@ entities:
rot: 3.141592653589793 rad
pos: -34.5,-16.5
parent: 60
- - uid: 14432
- components:
- - type: Transform
- pos: 1.5,35.5
- parent: 60
- uid: 14541
components:
- type: Transform
@@ -132250,6 +132190,11 @@ entities:
rot: 3.141592653589793 rad
pos: -45.5,-8.5
parent: 60
+ - uid: 22452
+ components:
+ - type: Transform
+ pos: 1.482888,34.64684
+ parent: 60
- uid: 25283
components:
- type: Transform
@@ -132600,8 +132545,6 @@ entities:
parent: 60
- uid: 16374
components:
- - type: MetaData
- name: Particle Accelerator Substation
- type: Transform
pos: 5.5,34.5
parent: 60
@@ -132670,10 +132613,10 @@ entities:
parent: 60
- proto: SuitStorageEngi
entities:
- - uid: 16421
+ - uid: 16420
components:
- type: Transform
- pos: -7.5,34.5
+ pos: -8.5,35.5
parent: 60
- uid: 19452
components:
@@ -133158,17 +133101,6 @@ 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
@@ -133234,11 +133166,11 @@ entities:
- SurveillanceCameraEngineering
nameSet: True
id: TEG
- - uid: 16422
+ - uid: 16423
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 2.5,37.5
+ pos: 2.5,36.5
parent: 60
- type: SurveillanceCamera
setupAvailableNetworks:
@@ -133375,17 +133307,6 @@ 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
@@ -134067,6 +133988,17 @@ 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
@@ -136136,12 +136068,6 @@ 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
@@ -136214,64 +136140,36 @@ 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: 14139
+ - uid: 14120
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,18.5
+ pos: -8.5,17.5
parent: 60
- - uid: 14142
+ - uid: 14122
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,17.5
+ pos: -9.5,16.5
parent: 60
- - uid: 14146
+ - uid: 14133
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,16.5
+ pos: -8.5,16.5
parent: 60
- - uid: 14148
+ - uid: 14327
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,17.5
+ pos: -9.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
@@ -136314,11 +136212,6 @@ entities:
- 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
@@ -137239,6 +137132,11 @@ 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
@@ -137279,10 +137177,15 @@ entities:
- type: Transform
pos: -8.5,20.5
parent: 60
- - uid: 14164
+ - uid: 14125
components:
- type: Transform
- pos: -8.5,11.5
+ pos: -6.5,15.5
+ parent: 60
+ - uid: 14142
+ components:
+ - type: Transform
+ pos: -11.5,22.5
parent: 60
- uid: 14177
components:
@@ -137299,6 +137202,11 @@ 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
@@ -137615,66 +137523,82 @@ entities:
- type: Transform
pos: 21.522934,4.467383
parent: 60
-- proto: TeslaCoilFlatpack
+- proto: TeslaCoil
entities:
- - uid: 14097
+ - uid: 13248
components:
- type: Transform
- pos: 10.348119,34.754375
+ pos: -6.5,46.5
parent: 60
- - uid: 23907
+ - uid: 13256
components:
- type: Transform
- pos: 10.660619,34.754375
+ pos: 7.5,46.5
parent: 60
- - uid: 23908
+ - uid: 13266
components:
- type: Transform
- pos: 10.348119,34.566875
+ pos: 7.5,47.5
parent: 60
- - uid: 23909
+ - uid: 13269
components:
- type: Transform
- pos: 10.644994,34.566875
+ pos: 7.5,48.5
parent: 60
- - uid: 23910
+ - uid: 16406
components:
- type: Transform
- pos: 10.363744,34.379375
+ pos: -6.5,47.5
parent: 60
- - uid: 23911
+ - uid: 16421
components:
- type: Transform
- pos: 10.629369,34.379375
+ pos: -6.5,48.5
parent: 60
- proto: TeslaGenerator
entities:
- - uid: 16391
+ - uid: 24770
components:
- type: Transform
- pos: -4.5,33.5
+ pos: -6.5,34.5
parent: 60
-- proto: TeslaGroundingRodFlatpack
+- proto: TeslaGroundingRod
entities:
- - uid: 16529
+ - uid: 21013
components:
- type: Transform
- pos: 10.346966,35.715775
+ rot: 3.141592653589793 rad
+ pos: 8.5,36.5
parent: 60
- - uid: 16536
+ - uid: 21021
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,35.5
+ parent: 60
+ - uid: 21026
components:
- type: Transform
- pos: 10.721966,35.340775
+ rot: 3.141592653589793 rad
+ pos: 8.5,34.5
parent: 60
- - uid: 16537
+ - uid: 21066
components:
- type: Transform
- pos: 10.362591,35.340775
+ rot: 3.141592653589793 rad
+ pos: 7.5,34.5
parent: 60
- - uid: 17109
+ - uid: 21339
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,35.5
+ parent: 60
+ - uid: 21343
components:
- type: Transform
- pos: 10.714586,35.715775
+ rot: 3.141592653589793 rad
+ pos: 7.5,36.5
parent: 60
- proto: Thruster
entities:
@@ -138625,10 +138549,10 @@ entities:
parent: 60
- proto: VendingMachineGames
entities:
- - uid: 14168
+ - uid: 14001
components:
- type: Transform
- pos: -6.5,19.5
+ pos: -12.5,13.5
parent: 60
- proto: VendingMachineGeneDrobe
entities:
@@ -138826,6 +138750,13 @@ 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
@@ -143429,6 +143360,11 @@ 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
@@ -144030,6 +143966,11 @@ entities:
- type: Transform
pos: -45.5,-11.5
parent: 60
+ - uid: 9142
+ components:
+ - type: Transform
+ pos: -5.5,34.5
+ parent: 60
- uid: 9143
components:
- type: Transform
@@ -144385,6 +144326,16 @@ entities:
- type: Transform
pos: -64.5,-4.5
parent: 60
+ - uid: 11525
+ components:
+ - type: Transform
+ pos: 9.5,34.5
+ parent: 60
+ - uid: 11529
+ components:
+ - type: Transform
+ pos: 9.5,36.5
+ parent: 60
- uid: 11535
components:
- type: Transform
@@ -146018,6 +145969,16 @@ 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
@@ -146163,6 +146124,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
@@ -146224,21 +146190,20 @@ entities:
- type: Transform
pos: -40.5,22.5
parent: 60
- - uid: 16368
+ - uid: 16307
components:
- type: Transform
- pos: -8.5,39.5
+ pos: -5.5,35.5
parent: 60
- - uid: 16405
+ - uid: 16368
components:
- type: Transform
- pos: 7.5,38.5
+ pos: -8.5,39.5
parent: 60
- - uid: 16406
+ - uid: 16392
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,35.5
+ pos: -5.5,36.5
parent: 60
- uid: 16413
components:
@@ -146258,17 +146223,33 @@ 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
@@ -146484,16 +146465,36 @@ 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
@@ -146559,6 +146560,11 @@ 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
@@ -146589,11 +146595,6 @@ 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
@@ -146609,21 +146610,6 @@ 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
@@ -147352,12 +147338,6 @@ 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
@@ -147398,11 +147378,6 @@ entities:
- type: Transform
pos: -35.5,1.5
parent: 60
- - uid: 18549
- components:
- - type: Transform
- pos: -4.5,35.5
- parent: 60
- uid: 18552
components:
- type: Transform
@@ -147413,11 +147388,6 @@ 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
@@ -147440,11 +147410,6 @@ entities:
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
@@ -147481,12 +147446,6 @@ entities:
- 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
@@ -147785,29 +147744,12 @@ 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
@@ -152476,11 +152418,26 @@ 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
@@ -152621,6 +152578,11 @@ 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
@@ -152656,11 +152618,6 @@ 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
@@ -152770,11 +152727,6 @@ 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
@@ -153245,11 +153197,6 @@ entities:
- 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
@@ -154379,10 +154326,10 @@ entities:
- type: Transform
pos: -32.5,32.5
parent: 60
- - uid: 16174
+ - uid: 17271
components:
- type: Transform
- pos: -4.5,34.5
+ pos: -5.5,33.5
parent: 60
- uid: 19720
components:
diff --git a/Resources/Maps/box.yml b/Resources/Maps/box.yml
index b2d3563ea16..086a883fea7 100644
--- a/Resources/Maps/box.yml
+++ b/Resources/Maps/box.yml
@@ -152,7 +152,7 @@ entities:
version: 6
-1,1:
ind: -1,1
- tiles: eQAAAAAAdgAAAAACdgAAAAAAdgAAAAACdgAAAAABdgAAAAACeQAAAAAAdgAAAAACdgAAAAADdgAAAAACdgAAAAABdgAAAAADdgAAAAACeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAdgAAAAADdgAAAAAAdgAAAAAAdgAAAAACdgAAAAADeQAAAAAAdgAAAAADdgAAAAADdgAAAAADdgAAAAACdgAAAAAAdgAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAADeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAHQAAAAADUAAAAAAAUAAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAADHQAAAAABeQAAAAAAWQAAAAAAUAAAAAAAUAAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAWQAAAAACUAAAAAAAUAAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAA
+ tiles: eQAAAAAAdgAAAAACdgAAAAAAdgAAAAACdgAAAAABdgAAAAACeQAAAAAAdgAAAAACdgAAAAADdgAAAAACdgAAAAABdgAAAAADdgAAAAACeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAdgAAAAADdgAAAAAAdgAAAAAAdgAAAAACdgAAAAADeQAAAAAAdgAAAAADdgAAAAADdgAAAAADdgAAAAACdgAAAAAAdgAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAADeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAHQAAAAADUAAAAAAAUAAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAADHQAAAAABeQAAAAAAWQAAAAAAUAAAAAAAUAAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAWQAAAAACUAAAAAAAUAAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAA
version: 6
1,1:
ind: 1,1
@@ -160,15 +160,15 @@ entities:
version: 6
-1,2:
ind: -1,2
- tiles: HQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAABeQAAAAAAWQAAAAACLAAAAAAALAAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACLAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAACeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAAAHQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAHQAAAAACWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAWQAAAAACTQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAHQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAABeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAdgAAAAABdgAAAAACdgAAAAABeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAABeQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAABeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAADHQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAACQAAAAAAHQAAAAADCQAAAAAB
+ tiles: HQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAABeQAAAAAAWQAAAAACLAAAAAAALAAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACLAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAACeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAAAHQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAHQAAAAACWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAWQAAAAACTQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAHQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAABeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAdgAAAAABdgAAAAACdgAAAAABeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAABeQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAABeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAADHQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAACQAAAAAAHQAAAAADCQAAAAAB
version: 6
0,2:
ind: 0,2
- tiles: UAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAHQAAAAAAWQAAAAACWQAAAAABHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAaAAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAADWQAAAAACWQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADeQAAAAAAdgAAAAADdgAAAAACdgAAAAACdgAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAADdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAADeQAAAAAAdgAAAAADdgAAAAACdgAAAAADdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAACeQAAAAAAdgAAAAAAdgAAAAADdgAAAAADdgAAAAACeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAACHQAAAAAACQAAAAADHQAAAAABCQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: UAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAHQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACHQAAAAAAHQAAAAABHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAADWQAAAAACWQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADeQAAAAAAdgAAAAADdgAAAAACdgAAAAACdgAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAADdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAADeQAAAAAAdgAAAAADdgAAAAACdgAAAAADdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAACeQAAAAAAdgAAAAAAdgAAAAADdgAAAAADdgAAAAACeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAACHQAAAAAACQAAAAADHQAAAAABCQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA
version: 6
1,2:
ind: 1,2
- tiles: WQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAdgAAAAADeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAdgAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAdgAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: WQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAADeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
2,1:
ind: 2,1
@@ -428,7 +428,7 @@ entities:
version: 6
-1,3:
ind: -1,3
- tiles: dgAAAAACdgAAAAACdgAAAAAAdgAAAAABdgAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAeQAAAAAACQAAAAABHQAAAAACCQAAAAACdgAAAAADdgAAAAAAdgAAAAADdgAAAAABdgAAAAADeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAdgAAAAACdgAAAAABdgAAAAABdgAAAAACdgAAAAADeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAABdgAAAAACdgAAAAABdgAAAAACdgAAAAAAdgAAAAABeQAAAAAAPQAAAAAAPQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAADdgAAAAAAdgAAAAAAdgAAAAACdgAAAAAAdgAAAAADeQAAAAAAPQAAAAAAPQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAAAHQAAAAACeQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: dgAAAAACdgAAAAACdgAAAAAAdgAAAAABdgAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAeQAAAAAACQAAAAABHQAAAAACCQAAAAACdgAAAAADdgAAAAAAdgAAAAADdgAAAAABdgAAAAADeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAdgAAAAACdgAAAAABdgAAAAABdgAAAAACdgAAAAADeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAABdgAAAAACdgAAAAABdgAAAAACdgAAAAAAdgAAAAABeQAAAAAAPQAAAAAAPQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAADdgAAAAAAdgAAAAAAdgAAAAACdgAAAAAAdgAAAAADeQAAAAAAPQAAAAAAPQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAAAHQAAAAACeQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
1,3:
ind: 1,3
@@ -513,7 +513,6 @@ entities:
3453: 2,-62
3454: 2,-61
3455: 2,-60
- 6265: 74,-42
- node:
color: '#FFFFFFFF'
id: Arrows
@@ -538,7 +537,6 @@ entities:
3249: -23,-27
3456: 8,-64
3457: 8,-63
- 6264: 74,-40
- node:
angle: 3.141592653589793 rad
color: '#FFFFFFFF'
@@ -563,6 +561,7 @@ entities:
280: 10,39
281: 10,40
282: 10,41
+ 283: 6,41
284: 8,37
285: 8,38
286: 8,39
@@ -680,12 +679,12 @@ entities:
3448: 1,-60
3449: 9,-64
3450: 9,-63
+ 3519: -10,31
3520: -7,31
3547: -10,29
3639: 60,-51
3640: 59,-51
3642: 57,-51
- 6270: -7,32
- node:
zIndex: 1
color: '#FFFFFFFF'
@@ -763,6 +762,11 @@ entities:
6019: -2,-22
6226: -26,-75
6227: -24,-77
+ - node:
+ color: '#FFFFFFFF'
+ id: Box
+ decals:
+ 3546: -7,32
- node:
color: '#FFFFFFFF'
id: BoxGreyscale
@@ -1199,11 +1203,6 @@ entities:
id: BrickTileWhiteCornerSe
decals:
2247: -15,-51
- - node:
- color: '#DE3A3A96'
- id: BrickTileWhiteCornerSe
- decals:
- 6283: -13,22
- node:
color: '#EFB34196'
id: BrickTileWhiteCornerSe
@@ -1248,7 +1247,7 @@ entities:
color: '#DE3A3A96'
id: BrickTileWhiteCornerSw
decals:
- 6284: -15,22
+ 3529: -15,26
- node:
color: '#EFB34196'
id: BrickTileWhiteCornerSw
@@ -1283,11 +1282,6 @@ entities:
id: BrickTileWhiteInnerSe
decals:
1521: -10,8
- - node:
- color: '#DE3A3A96'
- id: BrickTileWhiteInnerSe
- decals:
- 6279: -13,26
- node:
color: '#334E6DC8'
id: BrickTileWhiteInnerSw
@@ -1360,9 +1354,6 @@ entities:
3533: -5,31
3534: -5,32
3535: -5,29
- 6280: -13,25
- 6281: -13,24
- 6282: -13,23
- node:
color: '#EFB34196'
id: BrickTileWhiteLineE
@@ -1570,6 +1561,7 @@ entities:
2081: 0,26
2082: -8,26
2083: -12,26
+ 2084: -13,26
2085: 1,26
2086: 2,26
2087: 3,26
@@ -1581,7 +1573,6 @@ entities:
3563: -13,34
3564: -14,34
3565: -16,34
- 6286: -14,22
- node:
color: '#EFB34196'
id: BrickTileWhiteLineS
@@ -1673,9 +1664,6 @@ entities:
3543: -6,30
3544: -6,31
3545: -6,32
- 6276: -15,26
- 6277: -15,25
- 6278: -15,24
- node:
color: '#EFB34196'
id: BrickTileWhiteLineW
@@ -3247,8 +3235,10 @@ 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
@@ -3921,6 +3911,7 @@ entities:
4653: -1,32
4654: -5,30
4655: -6,32
+ 4656: -9,32
4657: -5,27
4658: -8,27
4659: -12,26
@@ -4807,6 +4798,7 @@ entities:
id: HalfTileOverlayGreyscale180
decals:
18: 9,23
+ 25: -14,22
55: 9,30
56: 10,30
57: 11,30
@@ -5065,6 +5057,9 @@ entities:
id: HalfTileOverlayGreyscale90
decals:
15: 10,23
+ 19: -13,24
+ 20: -13,23
+ 21: -13,22
35: 19,35
36: 19,36
186: -20,-31
@@ -5359,6 +5354,7 @@ entities:
decals:
5: 1,28
6: 6,28
+ 22: -15,24
28: 4,23
39: 19,36
40: 18,35
@@ -5669,6 +5665,7 @@ entities:
decals:
13: 10,24
16: 8,23
+ 24: -15,22
29: 6,24
33: 8,30
184: -20,-30
@@ -5986,6 +5983,8 @@ entities:
decals:
12: 8,24
17: 10,23
+ 23: -15,22
+ 26: -13,22
27: 4,24
47: 11,35
51: 6,33
@@ -6764,13 +6763,11 @@ 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
@@ -6783,7 +6780,6 @@ entities:
decals:
1615: 21,-21
3517: 25,17
- 6268: 68,-47
- node:
color: '#FFFFFFFF'
id: WarnCornerSmallGreyscaleNE
@@ -6866,7 +6862,6 @@ entities:
1536: -13,6
1663: 51,-17
2317: -73,8
- 6275: 2,36
- node:
zIndex: 1
color: '#FFFFFFFF'
@@ -6925,6 +6920,7 @@ entities:
661: 74,-36
662: 74,-35
663: 74,-34
+ 725: 78,-47
726: 78,-48
762: 41,-54
763: 41,-53
@@ -6944,8 +6940,6 @@ entities:
2477: 8,-48
3510: -13,-62
3514: 23,18
- 6271: 2,34
- 6272: 2,35
- node:
zIndex: 1
color: '#FFFFFFFF'
@@ -7107,6 +7101,7 @@ entities:
2093: 4,26
3521: -9,34
3522: -8,34
+ 3530: -14,26
3566: -15,34
- node:
color: '#EFB34196'
@@ -7147,11 +7142,6 @@ entities:
6155: -7,-76
6156: -6,-76
6157: -5,-76
- - node:
- color: '#DE3A3A96'
- id: WarnLineGreyscaleW
- decals:
- 6285: -15,23
- node:
color: '#EFB34196'
id: WarnLineGreyscaleW
@@ -7214,6 +7204,7 @@ entities:
694: 59,-24
705: 70,-19
706: 71,-19
+ 715: 68,-47
755: 39,-54
756: 41,-54
881: 69,-19
@@ -7249,8 +7240,6 @@ entities:
2602: -1,-79
2603: -2,-79
2604: -3,-79
- 6273: 4,36
- 6274: 3,36
- node:
zIndex: 1
color: '#FFFFFFFF'
@@ -7293,6 +7282,8 @@ 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
@@ -7366,6 +7357,7 @@ entities:
703: 62,-20
704: 63,-20
709: 70,-22
+ 714: 68,-45
716: 70,-47
717: 71,-47
718: 72,-47
@@ -7374,6 +7366,7 @@ entities:
721: 75,-47
722: 76,-47
723: 77,-47
+ 724: 78,-47
757: 41,-52
758: 39,-52
880: 69,-22
@@ -7735,8 +7728,7 @@ entities:
-5,0:
0: 39864
-4,0:
- 0: 35552
- 2: 8192
+ 0: 43744
-4,1:
0: 60942
-5,1:
@@ -7817,7 +7809,7 @@ entities:
0: 61423
8,-1:
0: 12320
- 3: 34944
+ 4: 34944
-8,-4:
0: 30583
-8,-5:
@@ -7927,8 +7919,7 @@ entities:
5,-7:
0: 65399
5,-6:
- 0: 30515
- 4: 64
+ 0: 30579
5,-9:
0: 30591
6,-8:
@@ -8026,7 +8017,7 @@ entities:
-9,3:
0: 15
1: 9472
- 5: 4608
+ 3: 4608
-8,4:
0: 13073
-7,1:
@@ -8151,7 +8142,7 @@ entities:
0: 45298
3,-13:
0: 61713
- 5: 204
+ 3: 204
4,-12:
0: 65535
4,-11:
@@ -8160,7 +8151,7 @@ entities:
0: 53744
4,-13:
0: 64716
- 5: 17
+ 3: 17
5,-12:
0: 30583
5,-11:
@@ -8171,30 +8162,30 @@ entities:
0: 30583
6,-12:
1: 4369
- 6: 204
- 5: 49152
+ 2: 204
+ 3: 49152
6,-11:
1: 61713
- 5: 204
+ 3: 204
6,-10:
0: 29424
6,-13:
1: 4369
- 6: 49152
- 5: 204
+ 2: 49152
+ 3: 204
7,-12:
- 6: 17
- 5: 4096
+ 2: 17
+ 3: 4096
1: 17476
7,-11:
- 5: 17
+ 3: 17
1: 29764
7,-10:
0: 61680
7,-13:
- 6: 4096
+ 2: 4096
1: 17476
- 5: 17
+ 3: 17
8,-12:
0: 7647
8,-11:
@@ -8230,7 +8221,7 @@ entities:
1: 8704
8,0:
0: 63523
- 3: 8
+ 4: 8
8,1:
0: 61440
8,2:
@@ -8250,9 +8241,7 @@ entities:
-1,7:
0: 61071
0,8:
- 0: 26367
- 7: 4096
- 2: 32768
+ 0: 63231
1,4:
0: 61680
1,5:
@@ -8262,8 +8251,7 @@ entities:
1,7:
0: 64911
1,8:
- 0: 49373
- 2: 4096
+ 0: 53469
2,5:
0: 28799
2,6:
@@ -8306,22 +8294,19 @@ entities:
-3,6:
0: 65358
-3,7:
- 0: 55769
- 7: 1024
+ 0: 56793
-3,8:
0: 65421
-2,5:
0: 57599
-2,6:
- 0: 65356
- 7: 2
+ 0: 65358
-2,7:
0: 65533
-2,8:
0: 64991
-1,8:
- 0: 206
- 7: 57376
+ 0: 57582
4,8:
0: 65535
5,4:
@@ -8386,24 +8371,19 @@ entities:
-2,12:
0: 65535
-1,9:
- 0: 61038
- 7: 128
+ 0: 61166
-1,10:
1: 60928
- 5: 192
+ 3: 192
-1,11:
1: 14
0: 57344
-1,12:
0: 65518
0,9:
- 0: 32655
- 7: 16
- 2: 32
- 8: 64
- 9: 32768
+ 0: 65535
0,10:
- 5: 240
+ 3: 240
1: 65280
0,11:
1: 15
@@ -8411,16 +8391,15 @@ entities:
0,12:
0: 65535
1,9:
- 0: 52733
- 9: 4096
+ 0: 56829
1,10:
1: 53504
- 5: 8192
+ 3: 8192
0: 204
1,11:
1: 19549
0: 4096
- 5: 34
+ 3: 34
1,12:
0: 4369
1: 17476
@@ -8488,7 +8467,7 @@ entities:
1: 34952
10,7:
1: 33249
- 5: 3598
+ 3: 3598
9,8:
1: 34952
10,3:
@@ -8500,10 +8479,10 @@ entities:
11,6:
1: 40844
11,7:
- 5: 771
+ 3: 771
1: 35064
10,8:
- 5: 3598
+ 3: 3598
1: 33249
11,5:
0: 34956
@@ -8519,29 +8498,29 @@ entities:
1: 20293
12,7:
1: 33008
- 5: 3598
+ 3: 3598
11,8:
1: 35064
- 5: 771
+ 3: 771
9,0:
- 3: 15
+ 4: 15
0: 65296
9,1:
0: 47232
9,2:
0: 48955
9,-1:
- 3: 65520
+ 4: 65520
0: 1
10,0:
- 3: 1
+ 4: 1
0: 65292
10,1:
0: 56789
10,2:
0: 64961
10,-1:
- 3: 4368
+ 4: 4368
0: 57548
11,0:
0: 30543
@@ -8667,7 +8646,7 @@ entities:
0: 65520
-10,4:
1: 3
- 5: 8
+ 3: 8
0: 60928
-13,4:
0: 61432
@@ -8678,24 +8657,24 @@ entities:
-12,6:
1: 44868
-12,7:
- 5: 3855
+ 3: 3855
1: 16624
-13,7:
1: 17652
- 5: 257
+ 3: 257
-12,8:
- 5: 3855
+ 3: 3855
1: 16624
-11,5:
0: 4095
-11,6:
1: 18210
-11,7:
- 5: 257
+ 3: 257
1: 18006
-11,8:
1: 18006
- 5: 257
+ 3: 257
-10,5:
0: 61182
-10,6:
@@ -8726,19 +8705,19 @@ entities:
-14,6:
1: 44953
-14,7:
- 5: 3855
+ 3: 3855
1: 16624
-14,3:
0: 65535
-14,8:
- 5: 3855
+ 3: 3855
1: 16624
-13,6:
1: 57600
0: 1092
-13,8:
1: 17652
- 5: 257
+ 3: 257
-16,0:
0: 55807
-16,-1:
@@ -8943,8 +8922,7 @@ entities:
9,-3:
0: 65407
9,-2:
- 0: 57343
- 7: 8192
+ 0: 65535
9,-5:
0: 61166
10,-4:
@@ -8975,10 +8953,10 @@ entities:
13,6:
1: 40866
13,7:
- 5: 771
+ 3: 771
1: 36024
12,8:
- 5: 3598
+ 3: 3598
1: 33008
14,5:
0: 3
@@ -8987,7 +8965,7 @@ entities:
1: 310
13,8:
1: 36028
- 5: 771
+ 3: 771
15,5:
1: 304
16,4:
@@ -9026,17 +9004,17 @@ entities:
18,3:
0: 15
1: 3840
- 5: 4096
+ 3: 4096
19,0:
1: 61455
19,1:
1: 36608
19,2:
1: 742
- 5: 8192
+ 3: 8192
19,3:
1: 226
- 5: 32768
+ 3: 32768
20,0:
1: 61715
20,1:
@@ -9243,9 +9221,9 @@ entities:
3,-14:
0: 4415
1: 192
- 5: 49152
+ 3: 49152
3,-17:
- 10: 30576
+ 5: 30576
4,-16:
1: 240
0: 61440
@@ -9254,7 +9232,7 @@ entities:
4,-14:
0: 52463
1: 16
- 5: 4096
+ 3: 4096
8,-13:
0: 56605
9,-12:
@@ -9670,7 +9648,7 @@ entities:
0: 15
16,-20:
1: 16
- 5: 52454
+ 3: 52454
15,-20:
1: 44719
16,-19:
@@ -9685,60 +9663,60 @@ entities:
0: 234
1: 20480
16,-21:
- 5: 16384
+ 3: 16384
1: 15
17,-20:
1: 144
- 5: 14178
+ 3: 14178
17,-19:
- 5: 1
+ 3: 1
1: 63744
17,-18:
1: 153
0: 61440
17,-21:
1: 8207
- 5: 16384
+ 3: 16384
18,-20:
1: 9910
- 5: 2056
+ 3: 2056
18,-19:
1: 13990
- 5: 2056
+ 3: 2056
18,-18:
0: 4096
1: 17486
18,-21:
1: 9895
- 5: 2056
+ 3: 2056
19,-20:
- 5: 3855
+ 3: 3855
1: 8432
19,-19:
- 5: 3855
+ 3: 3855
1: 20720
19,-18:
1: 17487
19,-21:
1: 8432
- 5: 3855
+ 3: 3855
20,-20:
1: 8946
- 5: 2056
+ 3: 2056
20,-19:
1: 8946
- 5: 2056
+ 3: 2056
20,-18:
1: 1839
0: 8192
20,-21:
1: 8946
- 5: 2056
+ 3: 2056
21,-20:
- 5: 3855
+ 3: 3855
1: 8432
21,-19:
- 5: 3855
+ 3: 3855
1: 20720
21,-18:
1: 21855
@@ -9746,7 +9724,7 @@ entities:
1: 5621
21,-21:
1: 8432
- 5: 3855
+ 3: 3855
22,-20:
1: 8995
22,-19:
@@ -9775,7 +9753,7 @@ entities:
13,-18:
1: 17476
14,-20:
- 5: 16
+ 3: 16
14,-19:
1: 241
15,-21:
@@ -9812,7 +9790,7 @@ entities:
0: 65535
4,-21:
0: 65348
- 5: 1
+ 3: 1
3,-20:
0: 65535
4,-19:
@@ -9826,7 +9804,7 @@ entities:
0: 255
1: 49152
4,-17:
- 11: 30576
+ 6: 30576
5,-20:
0: 65535
5,-19:
@@ -9838,7 +9816,7 @@ entities:
0: 30576
5,-21:
0: 65280
- 5: 15
+ 3: 15
6,-20:
0: 30583
6,-19:
@@ -9870,15 +9848,15 @@ entities:
0: 30583
6,-15:
1: 4592
- 5: 49152
+ 3: 49152
6,-14:
1: 4369
- 5: 49356
+ 3: 49356
7,-15:
1: 17520
- 5: 4096
+ 3: 4096
7,-14:
- 5: 4113
+ 3: 4113
1: 17476
-4,-20:
0: 61440
@@ -9894,28 +9872,28 @@ entities:
0: 57297
-3,-20:
0: 28672
- 5: 76
+ 3: 76
-3,-19:
0: 30711
-3,-18:
0: 65520
-3,-21:
- 5: 52428
+ 3: 52428
1: 4353
-2,-20:
- 5: 15
+ 3: 15
0: 3840
-2,-19:
0: 65535
-2,-18:
0: 65535
-2,-21:
- 5: 61696
+ 3: 61696
1: 248
-1,-18:
0: 65534
-1,-21:
- 5: 61440
+ 3: 61440
1: 2296
-1,-20:
0: 61152
@@ -9923,7 +9901,7 @@ entities:
0: 36590
0,-20:
0: 15152
- 5: 8
+ 3: 8
0,-19:
0: 35771
0,-18:
@@ -9960,26 +9938,26 @@ entities:
1: 34824
-12,-16:
1: 20292
- 5: 10
+ 3: 10
-13,-16:
1: 20292
- 5: 10
+ 3: 10
-12,-15:
1: 17732
- 5: 43690
+ 3: 43690
-13,-15:
- 5: 43690
+ 3: 43690
1: 17732
-12,-14:
1: 49060
- 5: 10
+ 3: 10
-13,-14:
1: 65444
- 5: 10
+ 3: 10
-12,-13:
1: 62
-12,-17:
- 5: 43690
+ 3: 43690
1: 17732
-11,-16:
1: 8994
@@ -10004,7 +9982,7 @@ entities:
-13,-18:
1: 44800
-13,-17:
- 5: 43690
+ 3: 43690
1: 17732
-11,-18:
1: 8960
@@ -10013,10 +9991,10 @@ entities:
-9,-18:
1: 1811
0,-21:
- 5: 61440
+ 3: 61440
1: 248
1,-20:
- 5: 7
+ 3: 7
0: 1792
1,-19:
0: 65535
@@ -10025,7 +10003,7 @@ entities:
1,-17:
0: 4095
1,-21:
- 5: 64648
+ 3: 64648
1: 112
2,-20:
0: 43962
@@ -10034,17 +10012,17 @@ entities:
2,-18:
0: 46011
2,-21:
- 5: 13107
+ 3: 13107
0: 34816
1: 8
3,-21:
0: 65280
- 5: 14
+ 3: 14
0,-24:
- 5: 64512
+ 3: 64512
1: 136
-1,-24:
- 5: 61696
+ 3: 61696
1: 136
0,-23:
1: 35064
@@ -10053,32 +10031,32 @@ entities:
0,-22:
1: 35064
-1,-22:
- 5: 128
+ 3: 128
1: 34936
0,-25:
1: 36744
1,-24:
- 5: 62208
+ 3: 62208
1: 136
1,-23:
1: 112
- 5: 34956
+ 3: 34956
1,-22:
1: 112
- 5: 34952
+ 3: 34952
1,-25:
1: 36736
2,-23:
- 5: 13073
+ 3: 13073
1: 52224
2,-22:
- 5: 4369
+ 3: 4369
1: 36044
3,-23:
1: 61440
3,-22:
1: 15
- 5: 60928
+ 3: 60928
3,-24:
1: 35939
3,-25:
@@ -10089,7 +10067,7 @@ entities:
1: 64739
4,-22:
1: 15
- 5: 4352
+ 3: 4352
0: 58368
-4,-24:
1: 310
@@ -10106,25 +10084,25 @@ entities:
0: 4
-4,-21:
1: 65295
- 5: 112
+ 3: 112
-4,-25:
1: 51200
-3,-23:
1: 4352
- 5: 52462
+ 3: 52462
-3,-22:
1: 4112
- 5: 61132
+ 3: 61132
-3,-24:
- 5: 32768
+ 3: 32768
1: 136
-3,-25:
1: 36342
-2,-24:
- 5: 63232
+ 3: 63232
1: 136
-2,-23:
- 5: 1
+ 3: 1
1: 35064
-2,-22:
1: 35064
@@ -10136,7 +10114,7 @@ entities:
1: 61459
5,-22:
1: 15
- 5: 65280
+ 3: 65280
5,-24:
1: 62432
6,-24:
@@ -10173,24 +10151,24 @@ entities:
0: 2184
-15,-16:
1: 23391
- 5: 1024
+ 3: 1024
-15,-15:
1: 34959
-15,-17:
1: 34952
-14,-16:
1: 20292
- 5: 10
+ 3: 10
-14,-15:
1: 21588
- 5: 43690
+ 3: 43690
-15,-14:
1: 2184
-14,-14:
1: 36772
- 5: 10
+ 3: 10
-14,-17:
- 5: 43690
+ 3: 43690
1: 21588
-15,-18:
1: 34816
@@ -10201,23 +10179,23 @@ entities:
-15,10:
1: 12
-14,9:
- 5: 3855
+ 3: 3855
1: 41200
-14,10:
1: 15
-13,9:
- 5: 257
+ 3: 257
1: 17652
-13,10:
1: 62901
- 5: 64
+ 3: 64
-12,9:
1: 41200
- 5: 3855
+ 3: 3855
-12,10:
1: 4383
-11,9:
- 5: 257
+ 3: 257
1: 18006
-11,10:
1: 7
@@ -10235,8 +10213,7 @@ entities:
-3,14:
1: 3855
-2,13:
- 4: 1
- 0: 14
+ 0: 15
1: 11776
-2,14:
1: 1831
@@ -10244,24 +10221,24 @@ entities:
1: 34952
10,9:
1: 16865
- 5: 3598
+ 3: 3598
9,10:
1: 8
10,10:
1: 15
11,9:
- 5: 771
+ 3: 771
1: 39160
11,10:
1: 60011
- 5: 128
+ 3: 128
12,9:
1: 16624
- 5: 3598
+ 3: 3598
12,10:
1: 12862
13,9:
- 5: 771
+ 3: 771
1: 40124
13,10:
1: 15
@@ -10279,7 +10256,7 @@ entities:
1: 32768
20,-22:
1: 10970
- 5: 32
+ 3: 32
19,-22:
1: 24456
21,-22:
@@ -10334,66 +10311,6 @@ entities:
- 0
- 0
- 0
- - volume: 2500
- temperature: 293.14975
- moles:
- - 21.824879
- - 82.10312
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - volume: 2500
- temperature: 235
- moles:
- - 21.824879
- - 82.10312
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - volume: 2500
- temperature: 293.15
- moles:
- - 24.680622
- - 92.84615
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - volume: 2500
- temperature: 293.15
- moles:
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- volume: 2500
temperature: 293.15
moles:
@@ -10410,10 +10327,8 @@ entities:
- 0
- 0
- volume: 2500
- temperature: 293.14975
+ temperature: 293.15
moles:
- - 20.078888
- - 75.53487
- 0
- 0
- 0
@@ -10424,26 +10339,13 @@ entities:
- 0
- 0
- 0
- - volume: 2500
- temperature: 293.14923
- moles:
- - 20.078888
- - 75.53487
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- 0
- 0
- volume: 2500
- temperature: 293.14975
+ temperature: 235
moles:
- - 19.950384
- - 75.051445
+ - 21.824879
+ - 82.10312
- 0
- 0
- 0
@@ -10493,8 +10395,8 @@ entities:
id: docking46345
localAnchorB: -0.5,-1
localAnchorA: -66.5,22
- damping: 42.400753
- stiffness: 380.5883
+ damping: 42.40074
+ stiffness: 380.58823
- type: OccluderTree
- type: Shuttle
- type: RadiationGridResistance
@@ -11803,6 +11705,7 @@ entities:
- 7393
- 7390
- 7146
+ - 9262
- 11605
- 11600
- 23935
@@ -11812,7 +11715,6 @@ entities:
- 25420
- 25422
- 25421
- - 9291
- uid: 23899
components:
- type: MetaData
@@ -11832,6 +11734,7 @@ entities:
parent: 8364
- type: DeviceList
devices:
+ - 9262
- 11605
- 11600
- 11377
@@ -12511,18 +12414,6 @@ entities:
- type: Transform
pos: 5.5,31.5
parent: 8364
- - uid: 28244
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,34.5
- parent: 8364
- - uid: 28245
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,34.5
- parent: 8364
- proto: AirlockAtmosphericsGlassLocked
entities:
- uid: 18739
@@ -12596,16 +12487,6 @@ entities:
parent: 8364
- proto: AirlockBrigGlassLocked
entities:
- - uid: 389
- components:
- - type: Transform
- pos: -8.5,28.5
- parent: 8364
- - uid: 3813
- components:
- - type: Transform
- pos: -7.5,28.5
- parent: 8364
- uid: 8544
components:
- type: Transform
@@ -12793,15 +12674,6 @@ entities:
- type: Transform
pos: 38.5,-39.5
parent: 8364
-- proto: AirlockCommandGlass
- entities:
- - uid: 4214
- components:
- - type: MetaData
- name: EVA
- - type: Transform
- pos: -11.5,5.5
- parent: 8364
- proto: AirlockCommandGlassLocked
entities:
- uid: 5514
@@ -13834,7 +13706,7 @@ entities:
pos: 24.5,16.5
parent: 8364
- type: Door
- secondsUntilStateChange: -93654.52
+ secondsUntilStateChange: -74012.63
state: Opening
- type: DeviceLinkSource
lastSignals:
@@ -14224,6 +14096,15 @@ entities:
DockStatus: True
- type: Physics
canCollide: False
+- proto: AirlockHeadOfPersonnelGlassLocked
+ entities:
+ - uid: 12024
+ components:
+ - type: MetaData
+ name: EVA Gear
+ - type: Transform
+ pos: -11.5,5.5
+ parent: 8364
- proto: AirlockHeadOfPersonnelLocked
entities:
- uid: 5647
@@ -14952,6 +14833,11 @@ entities:
- type: Transform
pos: 42.5,-45.5
parent: 8364
+ - uid: 12033
+ components:
+ - type: Transform
+ pos: -13.5,4.5
+ parent: 8364
- uid: 15102
components:
- type: Transform
@@ -15143,6 +15029,11 @@ entities:
- type: Transform
pos: 56.5,-19.5
parent: 8364
+ - uid: 11980
+ components:
+ - type: Transform
+ pos: -13.5,1.5
+ parent: 8364
- uid: 20191
components:
- type: MetaData
@@ -15287,6 +15178,18 @@ entities:
- type: Transform
pos: 8.5,34.5
parent: 8364
+ - uid: 8589
+ components:
+ - type: Transform
+ pos: -8.5,28.5
+ parent: 8364
+ - uid: 8642
+ components:
+ - type: MetaData
+ name: Evidence Storage
+ - type: Transform
+ pos: -13.5,25.5
+ parent: 8364
- uid: 8643
components:
- type: MetaData
@@ -15315,6 +15218,11 @@ entities:
- type: Transform
pos: -4.5,34.5
parent: 8364
+ - uid: 9380
+ components:
+ - type: Transform
+ pos: -7.5,28.5
+ parent: 8364
- uid: 9382
components:
- type: Transform
@@ -15370,20 +15278,6 @@ entities:
- type: Transform
pos: -23.5,-30.5
parent: 8364
- - uid: 26257
- components:
- - type: MetaData
- name: Holding Cell
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,25.5
- parent: 8364
- - type: Door
- secondsUntilStateChange: -6911.021
- state: Opening
- - type: DeviceLinkSource
- lastSignals:
- DoorStatus: True
- proto: AirlockSecurityLocked
entities:
- uid: 971
@@ -16071,9 +15965,6 @@ entities:
- type: Transform
pos: -8.5,20.5
parent: 8364
- - type: DeviceNetwork
- deviceLists:
- - 7797
- uid: 23944
components:
- type: Transform
@@ -16651,8 +16542,6 @@ entities:
parent: 8364
- uid: 8620
components:
- - type: MetaData
- name: Interrigation APC
- type: Transform
rot: 1.5707963267948966 rad
pos: -16.5,30.5
@@ -16665,12 +16554,16 @@ entities:
parent: 8364
- uid: 8622
components:
- - type: MetaData
- name: HOS Office APC
- type: Transform
rot: 1.5707963267948966 rad
pos: 11.5,39.5
parent: 8364
+ - uid: 8623
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,38.5
+ parent: 8364
- uid: 8634
components:
- type: Transform
@@ -16691,6 +16584,15 @@ entities:
currentReceiving: 120.00047
currentSupply: 120
supplyRampPosition: -0.00047302246
+ - uid: 8822
+ components:
+ - type: MetaData
+ name: Brig Control APC
+ - type: Transform
+ pos: -1.5,34.5
+ parent: 8364
+ - type: Battery
+ startingCharge: 12000
- uid: 8944
components:
- type: Transform
@@ -16786,13 +16688,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -14.5,-18.5
parent: 8364
- - uid: 11965
- components:
- - type: MetaData
- name: Warden's Office APC
- - type: Transform
- pos: 3.5,34.5
- parent: 8364
- uid: 12020
components:
- type: MetaData
@@ -16923,14 +16818,6 @@ entities:
- type: PowerNetworkBattery
loadingNetworkDemand: 25
supplyRampPosition: 9.488577
- - uid: 15128
- components:
- - type: MetaData
- name: Security Lockers APC
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,36.5
- parent: 8364
- uid: 15812
components:
- type: MetaData
@@ -18151,6 +18038,11 @@ entities:
- type: Transform
pos: 44.5,36.5
parent: 8364
+ - uid: 4481
+ components:
+ - type: Transform
+ pos: -0.5,41.5
+ parent: 8364
- uid: 4482
components:
- type: Transform
@@ -18296,11 +18188,21 @@ entities:
- type: Transform
pos: 41.5,36.5
parent: 8364
+ - uid: 4645
+ components:
+ - type: Transform
+ pos: 1.5,41.5
+ parent: 8364
- uid: 4648
components:
- type: Transform
pos: -47.5,34.5
parent: 8364
+ - uid: 4650
+ components:
+ - type: Transform
+ pos: -1.5,41.5
+ parent: 8364
- uid: 4652
components:
- type: Transform
@@ -18436,6 +18338,11 @@ entities:
- type: Transform
pos: -43.5,34.5
parent: 8364
+ - uid: 6419
+ components:
+ - type: Transform
+ pos: 5.5,45.5
+ parent: 8364
- uid: 6596
components:
- type: Transform
@@ -18666,6 +18573,21 @@ entities:
- type: Transform
pos: -48.5,-55.5
parent: 8364
+ - uid: 22451
+ components:
+ - type: Transform
+ pos: 3.5,41.5
+ parent: 8364
+ - uid: 22452
+ components:
+ - type: Transform
+ pos: 5.5,43.5
+ parent: 8364
+ - uid: 22453
+ components:
+ - type: Transform
+ pos: 5.5,44.5
+ parent: 8364
- uid: 22454
components:
- type: Transform
@@ -18786,6 +18708,11 @@ entities:
- 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
@@ -18826,6 +18753,11 @@ entities:
- 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
@@ -20455,6 +20387,26 @@ entities:
- 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
@@ -20490,15 +20442,15 @@ entities:
- type: Transform
pos: 71.5,-35.5
parent: 8364
- - uid: 21743
+ - uid: 21244
components:
- type: Transform
- pos: -30.5,-74.5
+ pos: 15.5,41.5
parent: 8364
- - uid: 21784
+ - uid: 21743
components:
- type: Transform
- pos: 16.5,41.5
+ pos: -30.5,-74.5
parent: 8364
- uid: 26349
components:
@@ -20520,21 +20472,6 @@ entities:
- type: Transform
pos: -20.5,48.5
parent: 8364
- - uid: 26546
- components:
- - type: Transform
- pos: -0.5,23.5
- parent: 8364
- - uid: 26603
- components:
- - type: Transform
- pos: -4.5,23.5
- parent: 8364
- - uid: 27489
- components:
- - type: Transform
- pos: -8.5,23.5
- parent: 8364
- proto: BedsheetCaptain
entities:
- uid: 5315
@@ -20583,10 +20520,10 @@ entities:
parent: 8364
- proto: BedsheetHOS
entities:
- - uid: 9287
+ - uid: 21245
components:
- type: Transform
- pos: 16.5,41.5
+ pos: 15.5,41.5
parent: 8364
- proto: BedsheetMedical
entities:
@@ -20600,11 +20537,6 @@ entities:
- type: Transform
pos: 30.5,-27.5
parent: 8364
- - uid: 9245
- components:
- - type: Transform
- pos: -6.5,32.5
- parent: 8364
- uid: 9485
components:
- type: Transform
@@ -20640,12 +20572,6 @@ entities:
parent: 8364
- proto: BedsheetOrange
entities:
- - uid: 7716
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,23.5
- parent: 8364
- uid: 26353
components:
- type: Transform
@@ -20661,18 +20587,6 @@ entities:
- type: Transform
pos: -21.5,40.5
parent: 8364
- - uid: 28249
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,23.5
- parent: 8364
- - uid: 28252
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,23.5
- parent: 8364
- proto: BedsheetQM
entities:
- uid: 5287
@@ -20741,6 +20655,23 @@ entities:
- 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
@@ -20848,7 +20779,7 @@ entities:
- type: Transform
pos: 5.5,-76.5
parent: 8364
- - uid: 6419
+ - uid: 9182
components:
- type: Transform
pos: 5.5,36.5
@@ -21291,12 +21222,12 @@ entities:
- uid: 18896
components:
- type: Transform
- pos: 22.769361,-18.291506
+ pos: 22.5,-18.5
parent: 8364
- uid: 18897
components:
- type: Transform
- pos: 22.60287,-18.097406
+ pos: 22.5,-18.5
parent: 8364
- uid: 19264
components:
@@ -21322,6 +21253,20 @@ entities:
parent: 8364
- type: BallisticAmmoProvider
unspawnedCount: 12
+ - uid: 9381
+ components:
+ - type: Transform
+ pos: -0.63110375,35.29573
+ parent: 8364
+ - type: BallisticAmmoProvider
+ unspawnedCount: 12
+ - uid: 9384
+ components:
+ - type: Transform
+ pos: -0.28735375,35.29573
+ parent: 8364
+ - type: BallisticAmmoProvider
+ unspawnedCount: 12
- proto: BoxBodyBag
entities:
- uid: 2276
@@ -21364,10 +21309,15 @@ entities:
parent: 8364
- proto: BoxFlashbang
entities:
+ - uid: 9345
+ components:
+ - type: Transform
+ pos: 0.32543182,35.35921
+ parent: 8364
- uid: 9388
components:
- type: Transform
- pos: -2.28955,39.38977
+ pos: -2.3561149,38.959312
parent: 8364
- uid: 9589
components:
@@ -21430,11 +21380,6 @@ entities:
- type: Transform
pos: -20.684553,-13.423042
parent: 8364
- - uid: 8459
- components:
- - type: Transform
- pos: 3.5576177,24.479216
- parent: 8364
- proto: BoxFolderGrey
entities:
- uid: 1825
@@ -21457,45 +21402,28 @@ entities:
- uid: 8803
components:
- type: Transform
- pos: -11.686346,32.74469
+ pos: -11.5,32.5
parent: 8364
- - uid: 9384
+ - uid: 9172
components:
- type: Transform
- pos: -1.2688226,30.437838
- parent: 8364
- - type: Storage
- storedItems:
- 9390:
- position: 0,0
- _rotation: South
- 9453:
- position: 1,0
- _rotation: South
- 9454:
- position: 2,0
- _rotation: South
- 9507:
- position: 3,0
- _rotation: South
- 9515:
- position: 4,0
- _rotation: South
- 9516:
- position: 0,1
- _rotation: South
- - type: ContainerContainer
- containers:
- storagebase: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 9390
- - 9453
- - 9454
- - 9507
- - 9515
- - 9516
+ pos: -14.5,22.5
+ parent: 8364
+ - uid: 9173
+ components:
+ - type: Transform
+ pos: -14.5,22.5
+ parent: 8364
+ - uid: 9174
+ components:
+ - type: Transform
+ pos: -14.5,22.5
+ parent: 8364
+ - uid: 9230
+ components:
+ - type: Transform
+ pos: -1.4970741,30.587648
+ parent: 8364
- uid: 9404
components:
- type: Transform
@@ -21603,10 +21531,15 @@ entities:
- type: Transform
pos: 15.418736,30.571737
parent: 8364
+ - uid: 9346
+ components:
+ - type: Transform
+ pos: 0.7629318,35.499836
+ parent: 8364
- uid: 9389
components:
- type: Transform
- pos: -2.648925,39.67102
+ pos: -2.7208788,39.167786
parent: 8364
- proto: BoxingBell
entities:
@@ -21630,26 +21563,13 @@ entities:
parent: 8364
- proto: BoxLethalshot
entities:
- - uid: 4645
- components:
- - type: Transform
- pos: -1.2980705,35.389374
- parent: 8364
- - uid: 8641
- components:
- - type: Transform
- pos: -1.6730705,35.712288
- parent: 8364
- - uid: 9229
- components:
- - type: Transform
- pos: -1.7147372,35.399788
- parent: 8364
- - uid: 9233
+ - uid: 8929
components:
- type: Transform
- pos: -1.2668205,35.701874
+ pos: -0.3215518,35.63938
parent: 8364
+ - type: BallisticAmmoProvider
+ unspawnedCount: 12
- proto: BoxLightbulb
entities:
- uid: 1999
@@ -21714,6 +21634,15 @@ entities:
- type: Transform
pos: -11.614725,-21.270159
parent: 8364
+- proto: BoxShotgunIncendiary
+ entities:
+ - uid: 9178
+ components:
+ - type: Transform
+ pos: -0.6496768,35.60813
+ parent: 8364
+ - type: BallisticAmmoProvider
+ unspawnedCount: 12
- proto: BoxSterileMask
entities:
- uid: 5467
@@ -21731,7 +21660,7 @@ entities:
- uid: 7928
components:
- type: Transform
- pos: -6.6457787,30.567604
+ pos: -6.5023327,30.526033
parent: 8364
- uid: 19263
components:
@@ -21806,7 +21735,6 @@ entities:
linkedPorts:
8624:
- Start: Close
- - Timer: AutoClose
- Timer: Open
- uid: 25829
components:
@@ -21817,7 +21745,6 @@ entities:
linkedPorts:
8625:
- Start: Close
- - Timer: AutoClose
- Timer: Open
- uid: 26575
components:
@@ -21828,7 +21755,6 @@ entities:
linkedPorts:
8626:
- Start: Close
- - Timer: AutoClose
- Timer: Open
- proto: Bucket
entities:
@@ -21910,26 +21836,6 @@ entities:
rot: 3.141592653589793 rad
pos: 12.5,-82.5
parent: 8364
-- proto: ButtonFrameCautionSecurity
- entities:
- - uid: 7677
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,23.5
- parent: 8364
- - uid: 7779
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.4761214,38.22741
- parent: 8364
- - uid: 25742
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.469177,38.803795
- parent: 8364
- proto: ButtonFrameExit
entities:
- uid: 3810
@@ -21937,24 +21843,6 @@ entities:
- type: Transform
pos: 24.5,-21.5
parent: 8364
-- proto: ButtonFrameGrey
- entities:
- - uid: 7721
- components:
- - type: Transform
- pos: 8.5,42.5
- parent: 8364
- - uid: 8989
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,40.5
- parent: 8364
- - uid: 22452
- components:
- - type: Transform
- pos: 13.5,29.5
- parent: 8364
- proto: CableApcExtension
entities:
- uid: 49
@@ -24457,16 +24345,6 @@ entities:
- type: Transform
pos: 18.5,13.5
parent: 8364
- - uid: 7661
- components:
- - type: Transform
- pos: 10.5,36.5
- parent: 8364
- - uid: 7733
- components:
- - type: Transform
- pos: 2.5,37.5
- parent: 8364
- uid: 7743
components:
- type: Transform
@@ -24517,31 +24395,6 @@ entities:
- type: Transform
pos: 17.5,32.5
parent: 8364
- - uid: 8446
- components:
- - type: Transform
- pos: 26.5,-20.5
- parent: 8364
- - uid: 8447
- components:
- - type: Transform
- pos: 26.5,-15.5
- parent: 8364
- - uid: 8448
- components:
- - type: Transform
- pos: 26.5,-16.5
- parent: 8364
- - uid: 8449
- components:
- - type: Transform
- pos: 26.5,-17.5
- parent: 8364
- - uid: 8450
- components:
- - type: Transform
- pos: 26.5,-19.5
- parent: 8364
- uid: 8481
components:
- type: Transform
@@ -24552,16 +24405,6 @@ entities:
- type: Transform
pos: 15.5,28.5
parent: 8364
- - uid: 8546
- components:
- - type: Transform
- pos: 4.5,37.5
- parent: 8364
- - uid: 8547
- components:
- - type: Transform
- pos: 3.5,33.5
- parent: 8364
- uid: 8557
components:
- type: Transform
@@ -24622,26 +24465,6 @@ entities:
- type: Transform
pos: 17.5,20.5
parent: 8364
- - uid: 8589
- components:
- - type: Transform
- pos: 3.5,32.5
- parent: 8364
- - uid: 8590
- components:
- - type: Transform
- pos: -0.5,37.5
- parent: 8364
- - uid: 8623
- components:
- - type: Transform
- pos: -2.5,37.5
- parent: 8364
- - uid: 8630
- components:
- - type: Transform
- pos: -15.5,52.5
- parent: 8364
- uid: 8636
components:
- type: Transform
@@ -24992,11 +24815,6 @@ entities:
- type: Transform
pos: -8.5,22.5
parent: 8364
- - uid: 8751
- components:
- - type: Transform
- pos: 1.5,37.5
- parent: 8364
- uid: 8762
components:
- type: Transform
@@ -25322,15 +25140,50 @@ entities:
- type: Transform
pos: -20.5,23.5
parent: 8364
- - uid: 9268
+ - uid: 9283
components:
- type: Transform
- pos: 3.5,34.5
+ pos: 4.5,38.5
+ parent: 8364
+ - uid: 9284
+ components:
+ - type: Transform
+ pos: 5.5,38.5
+ parent: 8364
+ - uid: 9285
+ components:
+ - type: Transform
+ pos: 6.5,38.5
+ parent: 8364
+ - uid: 9286
+ components:
+ - type: Transform
+ pos: 3.5,38.5
+ parent: 8364
+ - uid: 9287
+ components:
+ - type: Transform
+ pos: 2.5,38.5
parent: 8364
- uid: 9288
components:
- type: Transform
- pos: -3.5,33.5
+ pos: 1.5,38.5
+ parent: 8364
+ - uid: 9289
+ components:
+ - type: Transform
+ pos: 0.5,38.5
+ parent: 8364
+ - uid: 9290
+ components:
+ - type: Transform
+ pos: -0.5,38.5
+ parent: 8364
+ - uid: 9291
+ components:
+ - type: Transform
+ pos: -1.5,38.5
parent: 8364
- uid: 9292
components:
@@ -25347,6 +25200,11 @@ entities:
- type: Transform
pos: 0.5,37.5
parent: 8364
+ - uid: 9295
+ components:
+ - type: Transform
+ pos: 7.5,38.5
+ parent: 8364
- uid: 9296
components:
- type: Transform
@@ -25497,6 +25355,16 @@ entities:
- type: Transform
pos: 19.5,35.5
parent: 8364
+ - uid: 9334
+ components:
+ - type: Transform
+ pos: -1.5,34.5
+ parent: 8364
+ - uid: 9335
+ components:
+ - type: Transform
+ pos: -1.5,33.5
+ parent: 8364
- uid: 9336
components:
- type: Transform
@@ -26302,6 +26170,51 @@ entities:
- type: Transform
pos: 8.5,41.5
parent: 8364
+ - uid: 10056
+ components:
+ - type: Transform
+ pos: 7.5,41.5
+ parent: 8364
+ - uid: 10057
+ components:
+ - type: Transform
+ pos: 7.5,42.5
+ parent: 8364
+ - uid: 10058
+ components:
+ - type: Transform
+ pos: 9.5,41.5
+ parent: 8364
+ - uid: 10059
+ components:
+ - type: Transform
+ pos: 9.5,42.5
+ parent: 8364
+ - uid: 10060
+ components:
+ - type: Transform
+ pos: 3.5,36.5
+ parent: 8364
+ - uid: 10061
+ components:
+ - type: Transform
+ pos: 3.5,35.5
+ parent: 8364
+ - uid: 10062
+ components:
+ - type: Transform
+ pos: 3.5,34.5
+ parent: 8364
+ - uid: 10063
+ components:
+ - type: Transform
+ pos: 0.5,36.5
+ parent: 8364
+ - uid: 10064
+ components:
+ - type: Transform
+ pos: 0.5,35.5
+ parent: 8364
- uid: 10065
components:
- type: Transform
@@ -26402,6 +26315,16 @@ entities:
- type: Transform
pos: 3.5,22.5
parent: 8364
+ - uid: 10086
+ components:
+ - type: Transform
+ pos: 8.5,25.5
+ parent: 8364
+ - uid: 10087
+ components:
+ - type: Transform
+ pos: 10.5,25.5
+ parent: 8364
- uid: 10088
components:
- type: Transform
@@ -35727,11 +35650,6 @@ entities:
- type: Transform
pos: -21.5,-55.5
parent: 8364
- - uid: 15960
- components:
- - type: Transform
- pos: 34.5,-19.5
- parent: 8364
- uid: 15984
components:
- type: Transform
@@ -37245,7 +37163,7 @@ entities:
- uid: 17287
components:
- type: Transform
- pos: 34.5,-20.5
+ pos: -9.5,-69.5
parent: 8364
- uid: 17288
components:
@@ -37902,6 +37820,11 @@ 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
@@ -39042,6 +38965,31 @@ 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
@@ -43002,6 +42950,26 @@ entities:
- type: Transform
pos: -11.5,49.5
parent: 8364
+ - uid: 25742
+ components:
+ - type: Transform
+ pos: -11.5,50.5
+ parent: 8364
+ - uid: 25743
+ components:
+ - type: Transform
+ pos: -11.5,51.5
+ parent: 8364
+ - uid: 25744
+ components:
+ - type: Transform
+ pos: -11.5,52.5
+ parent: 8364
+ - uid: 25747
+ components:
+ - type: Transform
+ pos: -11.5,53.5
+ parent: 8364
- uid: 25995
components:
- type: Transform
@@ -43022,6 +42990,11 @@ entities:
- type: Transform
pos: 9.5,-75.5
parent: 8364
+ - uid: 26136
+ components:
+ - type: Transform
+ pos: -15.5,51.5
+ parent: 8364
- uid: 26137
components:
- type: Transform
@@ -51243,11 +51216,6 @@ entities:
- type: Transform
pos: -7.5,-61.5
parent: 8364
- - uid: 3898
- components:
- - type: Transform
- pos: 0.5,40.5
- parent: 8364
- uid: 4030
components:
- type: Transform
@@ -51328,11 +51296,6 @@ entities:
- type: Transform
pos: -22.5,-72.5
parent: 8364
- - uid: 5288
- components:
- - type: Transform
- pos: 1.5,41.5
- parent: 8364
- uid: 5313
components:
- type: Transform
@@ -52368,11 +52331,6 @@ entities:
- type: Transform
pos: 26.5,1.5
parent: 8364
- - uid: 7340
- components:
- - type: Transform
- pos: 10.5,36.5
- parent: 8364
- uid: 7380
components:
- type: Transform
@@ -52398,11 +52356,6 @@ entities:
- type: Transform
pos: 17.5,30.5
parent: 8364
- - uid: 7735
- components:
- - type: Transform
- pos: 1.5,35.5
- parent: 8364
- uid: 7786
components:
- type: Transform
@@ -52448,11 +52401,6 @@ entities:
- type: Transform
pos: 11.5,27.5
parent: 8364
- - uid: 8470
- components:
- - type: Transform
- pos: -15.5,51.5
- parent: 8364
- uid: 8485
components:
- type: Transform
@@ -52523,61 +52471,6 @@ entities:
- type: Transform
pos: 12.5,27.5
parent: 8364
- - uid: 8553
- components:
- - type: Transform
- pos: -15.5,52.5
- parent: 8364
- - uid: 8554
- components:
- - type: Transform
- pos: -15.5,53.5
- parent: 8364
- - uid: 8555
- components:
- - type: Transform
- pos: -15.5,54.5
- parent: 8364
- - uid: 8569
- components:
- - type: Transform
- pos: -11.5,50.5
- parent: 8364
- - uid: 8592
- components:
- - type: Transform
- pos: 3.5,34.5
- parent: 8364
- - uid: 8597
- components:
- - type: Transform
- pos: -14.5,54.5
- parent: 8364
- - uid: 8606
- components:
- - type: Transform
- pos: -12.5,54.5
- parent: 8364
- - uid: 8607
- components:
- - type: Transform
- pos: -11.5,53.5
- parent: 8364
- - uid: 8610
- components:
- - type: Transform
- pos: -11.5,54.5
- parent: 8364
- - uid: 8615
- components:
- - type: Transform
- pos: -11.5,51.5
- parent: 8364
- - uid: 8632
- components:
- - type: Transform
- pos: 9.5,42.5
- parent: 8364
- uid: 8640
components:
- type: Transform
@@ -52658,25 +52551,20 @@ entities:
- type: Transform
pos: -4.5,28.5
parent: 8364
- - uid: 8750
- components:
- - type: Transform
- pos: 9.5,41.5
- parent: 8364
- - uid: 8822
+ - uid: 8823
components:
- type: Transform
- pos: 1.5,36.5
+ pos: 7.5,38.5
parent: 8364
- - uid: 8823
+ - uid: 8824
components:
- type: Transform
- pos: 1.5,38.5
+ pos: 6.5,38.5
parent: 8364
- - uid: 8824
+ - uid: 8825
components:
- type: Transform
- pos: 1.5,39.5
+ pos: 5.5,38.5
parent: 8364
- uid: 8826
components:
@@ -52833,6 +52721,11 @@ entities:
- type: Transform
pos: -4.5,34.5
parent: 8364
+ - uid: 8858
+ components:
+ - type: Transform
+ pos: -5.5,34.5
+ parent: 8364
- uid: 8859
components:
- type: Transform
@@ -52933,21 +52826,6 @@ entities:
- type: Transform
pos: -19.5,22.5
parent: 8364
- - uid: 8929
- components:
- - type: Transform
- pos: 0.5,34.5
- parent: 8364
- - uid: 9004
- components:
- - type: Transform
- pos: -0.5,34.5
- parent: 8364
- - uid: 9046
- components:
- - type: Transform
- pos: -16.5,39.5
- parent: 8364
- uid: 9143
components:
- type: Transform
@@ -52988,15 +52866,30 @@ entities:
- type: Transform
pos: -19.5,23.5
parent: 8364
+ - uid: 9207
+ components:
+ - type: Transform
+ pos: 4.5,42.5
+ parent: 8364
+ - uid: 9208
+ components:
+ - type: Transform
+ pos: 5.5,42.5
+ parent: 8364
+ - uid: 9209
+ components:
+ - type: Transform
+ pos: 6.5,42.5
+ parent: 8364
- uid: 9218
components:
- type: Transform
pos: 7.5,42.5
parent: 8364
- - uid: 9224
+ - uid: 9248
components:
- type: Transform
- pos: 1.5,37.5
+ pos: 3.5,42.5
parent: 8364
- uid: 9249
components:
@@ -53018,20 +52911,25 @@ entities:
- type: Transform
pos: 1.5,33.5
parent: 8364
- - uid: 9289
+ - uid: 9267
components:
- type: Transform
- pos: 3.5,33.5
+ pos: 0.5,33.5
parent: 8364
- - uid: 9346
+ - uid: 9268
components:
- type: Transform
- pos: 2.5,40.5
+ pos: -0.5,33.5
parent: 8364
- - uid: 9381
+ - uid: 9269
components:
- type: Transform
- pos: -0.5,40.5
+ pos: -1.5,33.5
+ parent: 8364
+ - uid: 9270
+ components:
+ - type: Transform
+ pos: -1.5,34.5
parent: 8364
- uid: 9615
components:
@@ -53243,21 +53141,6 @@ entities:
- type: Transform
pos: 17.5,32.5
parent: 8364
- - uid: 10061
- components:
- - type: Transform
- pos: 1.5,34.5
- parent: 8364
- - uid: 10063
- components:
- - type: Transform
- pos: -11.5,52.5
- parent: 8364
- - uid: 10064
- components:
- - type: Transform
- pos: 9.5,36.5
- parent: 8364
- uid: 10193
components:
- type: Transform
@@ -58213,6 +58096,11 @@ entities:
- type: Transform
pos: -7.5,-54.5
parent: 8364
+ - uid: 19886
+ components:
+ - type: Transform
+ pos: -1.5,42.5
+ parent: 8364
- uid: 19887
components:
- type: Transform
@@ -58228,6 +58116,11 @@ entities:
- type: Transform
pos: 1.5,42.5
parent: 8364
+ - uid: 19890
+ components:
+ - type: Transform
+ pos: -2.5,42.5
+ parent: 8364
- uid: 19925
components:
- type: Transform
@@ -58243,6 +58136,11 @@ entities:
- type: Transform
pos: 8.5,41.5
parent: 8364
+ - uid: 19928
+ components:
+ - type: Transform
+ pos: 8.5,42.5
+ parent: 8364
- uid: 20164
components:
- type: Transform
@@ -59528,11 +59426,6 @@ entities:
- type: Transform
pos: -0.5,-19.5
parent: 8364
- - uid: 25005
- components:
- - type: Transform
- pos: 1.5,40.5
- parent: 8364
- uid: 25089
components:
- type: Transform
@@ -60088,10 +59981,60 @@ entities:
- type: Transform
pos: -11.5,49.5
parent: 8364
+ - uid: 26251
+ components:
+ - type: Transform
+ pos: -11.5,50.5
+ parent: 8364
+ - uid: 26252
+ components:
+ - type: Transform
+ pos: -11.5,51.5
+ parent: 8364
+ - uid: 26253
+ components:
+ - type: Transform
+ pos: -11.5,52.5
+ parent: 8364
+ - uid: 26254
+ components:
+ - type: Transform
+ pos: -11.5,53.5
+ parent: 8364
+ - uid: 26255
+ components:
+ - type: Transform
+ pos: -11.5,54.5
+ parent: 8364
+ - uid: 26256
+ components:
+ - type: Transform
+ pos: -12.5,54.5
+ parent: 8364
+ - uid: 26257
+ components:
+ - type: Transform
+ pos: -12.5,53.5
+ parent: 8364
+ - uid: 26258
+ components:
+ - type: Transform
+ pos: -13.5,53.5
+ parent: 8364
- uid: 26259
components:
- type: Transform
- pos: -16.5,38.5
+ pos: -14.5,53.5
+ parent: 8364
+ - uid: 26260
+ components:
+ - type: Transform
+ pos: -14.5,54.5
+ parent: 8364
+ - uid: 26261
+ components:
+ - type: Transform
+ pos: -15.5,54.5
parent: 8364
- uid: 26262
components:
@@ -60278,11 +60221,6 @@ entities:
- type: Transform
pos: -9.5,37.5
parent: 8364
- - uid: 26456
- components:
- - type: Transform
- pos: 7.5,41.5
- parent: 8364
- uid: 26572
components:
- type: Transform
@@ -61285,7 +61223,7 @@ entities:
- type: Transform
pos: 12.5,24.5
parent: 8364
- - uid: 8611
+ - uid: 8989
components:
- type: Transform
pos: -15.5,51.5
@@ -66917,12 +66855,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -11.5,40.5
parent: 8364
- - uid: 7798
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,23.5
- parent: 8364
- uid: 7978
components:
- type: Transform
@@ -66988,12 +66920,6 @@ entities:
rot: 3.141592653589793 rad
pos: 12.5,22.5
parent: 8364
- - uid: 8436
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,23.5
- parent: 8364
- uid: 8617
components:
- type: Transform
@@ -67039,12 +66965,6 @@ entities:
- type: Transform
pos: 8.5,21.5
parent: 8364
- - uid: 9248
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,23.5
- parent: 8364
- uid: 9414
components:
- type: Transform
@@ -67488,12 +67408,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 4.5,-63.5
parent: 8364
- - uid: 25714
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,41.5
- parent: 8364
- uid: 26133
components:
- type: Transform
@@ -67540,6 +67454,12 @@ entities:
- type: Transform
pos: 1.5,50.5
parent: 8364
+ - uid: 26577
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,40.5
+ parent: 8364
- uid: 26868
components:
- type: Transform
@@ -67995,11 +67915,6 @@ entities:
parent: 8364
- proto: ChairOfficeLight
entities:
- - uid: 3480
- components:
- - type: Transform
- pos: 18.604033,-17.353407
- parent: 8364
- uid: 5220
components:
- type: Transform
@@ -68069,6 +67984,12 @@ entities:
- type: Transform
pos: -24.5,-70.5
parent: 8364
+ - uid: 18614
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,-17.5
+ parent: 8364
- uid: 18685
components:
- type: Transform
@@ -68484,10 +68405,10 @@ entities:
parent: 8364
- proto: ChemDispenser
entities:
- - uid: 3272
+ - uid: 18610
components:
- type: Transform
- pos: 19.5,-16.5
+ pos: 18.5,-18.5
parent: 8364
- uid: 18768
components:
@@ -68501,18 +68422,13 @@ entities:
parent: 8364
- proto: ChemistryHotplate
entities:
- - uid: 18903
+ - uid: 5920
components:
- type: Transform
- pos: 21.5,-18.5
+ pos: 18.5,-17.5
parent: 8364
- proto: ChemMaster
entities:
- - uid: 3280
- components:
- - type: Transform
- pos: 18.5,-16.5
- parent: 8364
- uid: 18770
components:
- type: Transform
@@ -68523,6 +68439,11 @@ entities:
- type: Transform
pos: 22.5,-16.5
parent: 8364
+ - uid: 18775
+ components:
+ - type: Transform
+ pos: 18.5,-16.5
+ parent: 8364
- proto: ChessBoard
entities:
- uid: 11671
@@ -68691,11 +68612,8 @@ entities:
- uid: 27286
components:
- type: Transform
- anchored: True
pos: 10.5,40.5
parent: 8364
- - type: Physics
- bodyType: Static
- type: EntityStorage
air:
volume: 200
@@ -68977,6 +68895,11 @@ entities:
showEnts: False
occludes: True
ent: null
+ - uid: 9197
+ components:
+ - type: Transform
+ pos: -17.5,24.5
+ parent: 8364
- uid: 9255
components:
- type: Transform
@@ -69860,6 +69783,29 @@ entities:
- type: Transform
pos: 63.5,-72.5
parent: 8364
+ - uid: 26546
+ components:
+ - type: Transform
+ pos: -22.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
- uid: 27598
components:
- type: Transform
@@ -69882,11 +69828,6 @@ entities:
- type: Transform
pos: -3.5,-57.5
parent: 8364
- - uid: 9119
- components:
- - type: Transform
- pos: -17.5,24.5
- parent: 8364
- uid: 20638
components:
- type: Transform
@@ -70340,11 +70281,8 @@ entities:
- uid: 9261
components:
- type: Transform
- anchored: True
pos: 10.5,41.5
parent: 8364
- - type: Physics
- bodyType: Static
- type: EntityStorage
air:
volume: 200
@@ -72186,25 +72124,20 @@ entities:
parent: 8364
- proto: ClothingHeadHelmetRiot
entities:
- - uid: 9190
- components:
- - type: Transform
- pos: 2.7655263,39.62697
- parent: 8364
- - uid: 9193
+ - uid: 9366
components:
- type: Transform
- pos: 2.7655263,39.512383
+ pos: 2.689872,39.342834
parent: 8364
- - uid: 9197
+ - uid: 9367
components:
- type: Transform
- pos: 2.7655263,39.366547
+ pos: 2.689872,39.624084
parent: 8364
- - uid: 10062
+ - uid: 9368
components:
- type: Transform
- pos: 2.7551093,39.762383
+ pos: 2.689872,39.51471
parent: 8364
- proto: ClothingHeadsetEngineering
entities:
@@ -72343,6 +72276,23 @@ entities:
- type: Transform
pos: -44.458595,14.399037
parent: 8364
+- proto: ClothingMaskGasSecurity
+ entities:
+ - uid: 9223
+ components:
+ - type: Transform
+ pos: 4.830586,32.536835
+ parent: 8364
+ - uid: 9224
+ components:
+ - type: Transform
+ pos: 4.547027,32.818085
+ parent: 8364
+ - uid: 9228
+ components:
+ - type: Transform
+ pos: 4.656402,32.724335
+ parent: 8364
- proto: ClothingMaskSterile
entities:
- uid: 17899
@@ -72471,59 +72421,54 @@ entities:
parent: 8364
- proto: ClothingOuterArmorBulletproof
entities:
- - uid: 9170
- components:
- - type: Transform
- pos: 1.2759427,39.481133
- parent: 8364
- - uid: 9178
+ - uid: 9375
components:
- type: Transform
- pos: 1.2759427,39.59572
+ pos: 0.54769325,39.79596
parent: 8364
- - uid: 21244
+ - uid: 9376
components:
- type: Transform
- pos: 1.2759427,39.699883
+ pos: 0.71956825,39.592834
parent: 8364
- - uid: 28242
+ - uid: 9377
components:
- type: Transform
- pos: 1.2759427,39.37697
+ pos: 0.81331825,39.405334
parent: 8364
- proto: ClothingOuterArmorReflective
entities:
- - uid: 9483
+ - uid: 9372
components:
- type: Transform
- pos: 1.6821928,39.418633
+ pos: 0.3043524,39.56628
parent: 8364
- - uid: 28240
+ - uid: 9373
components:
- type: Transform
- pos: 1.6926093,39.574883
+ pos: 0.4762274,39.44128
parent: 8364
-- proto: ClothingOuterArmorRiot
- entities:
- - uid: 9166
+ - uid: 9374
components:
- type: Transform
- pos: 2.3384428,39.68947
+ pos: 0.6793524,39.28503
parent: 8364
- - uid: 9167
+- proto: ClothingOuterArmorRiot
+ entities:
+ - uid: 9369
components:
- type: Transform
- pos: 2.3384428,39.554047
+ pos: 2.330497,39.530334
parent: 8364
- - uid: 9216
+ - uid: 9370
components:
- type: Transform
- pos: 2.3488593,39.481133
+ pos: 2.346122,39.38971
parent: 8364
- - uid: 9223
+ - uid: 9371
components:
- type: Transform
- pos: 2.3384428,39.366547
+ pos: 2.314872,39.67096
parent: 8364
- proto: ClothingOuterCardborg
entities:
@@ -72582,6 +72527,32 @@ entities:
- type: Transform
pos: 66.509186,-76.72045
parent: 8364
+- proto: ClothingOuterHardsuitSecurity
+ entities:
+ - uid: 4163
+ components:
+ - type: Transform
+ pos: 0.37893665,35.52849
+ parent: 8364
+ - uid: 15129
+ components:
+ - type: Transform
+ pos: 0.37893665,35.52849
+ parent: 8364
+ - uid: 20856
+ components:
+ - type: Transform
+ parent: 11965
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 20857
+ components:
+ - type: Transform
+ parent: 17151
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: ClothingOuterHoodieGrey
entities:
- uid: 21633
@@ -73392,6 +73363,11 @@ entities:
- type: Transform
pos: 39.5,-16.5
parent: 8364
+ - uid: 8751
+ components:
+ - type: Transform
+ pos: -9.5,32.5
+ parent: 8364
- uid: 20882
components:
- type: Transform
@@ -73502,15 +73478,15 @@ entities:
parent: 8364
- proto: ComputerCriminalRecords
entities:
- - uid: 9181
+ - uid: 9075
components:
- type: Transform
- pos: 13.5,41.5
+ pos: -1.5,33.5
parent: 8364
- - uid: 9345
+ - uid: 9181
components:
- type: Transform
- pos: 4.5,28.5
+ pos: 13.5,41.5
parent: 8364
- uid: 9362
components:
@@ -73539,11 +73515,6 @@ entities:
- type: Transform
pos: -8.5,-6.5
parent: 8364
- - uid: 21245
- components:
- - type: Transform
- pos: 0.5,33.5
- parent: 8364
- proto: ComputerFrame
entities:
- uid: 19878
@@ -73829,34 +73800,11 @@ entities:
- type: Transform
pos: -3.5,14.5
parent: 8364
- - uid: 8780
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,24.5
- parent: 8364
- - uid: 26251
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,24.5
- parent: 8364
- - uid: 26252
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,24.5
- parent: 8364
- uid: 27653
components:
- type: Transform
pos: 10.5,-27.5
parent: 8364
- - uid: 28241
- components:
- - type: Transform
- pos: 16.5,34.5
- parent: 8364
- proto: ContainmentFieldGenerator
entities:
- uid: 4552
@@ -74254,10 +74202,10 @@ entities:
parent: 8364
- proto: CrateContrabandStorageSecure
entities:
- - uid: 8629
+ - uid: 27489
components:
- type: Transform
- pos: 3.5,33.5
+ pos: -2.5,32.5
parent: 8364
- proto: CrateEmergencyRadiation
entities:
@@ -74782,13 +74730,6 @@ entities:
- type: Transform
pos: 2.5,-11.5
parent: 8364
-- proto: CrateMaterialRandom
- entities:
- - uid: 8600
- components:
- - type: Transform
- pos: -28.5,-51.5
- parent: 8364
- proto: CrateMedicalScrubs
entities:
- uid: 16545
@@ -74815,24 +74756,6 @@ entities:
- type: Transform
pos: -9.5,30.5
parent: 8364
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14673
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- uid: 19237
components:
- type: Transform
@@ -75167,14 +75090,6 @@ entities:
- type: Transform
pos: 29.484377,-32.156303
parent: 8364
-- proto: CurtainsRed
- entities:
- - uid: 4650
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,41.5
- parent: 8364
- proto: d20Dice
entities:
- uid: 6522
@@ -75650,20 +75565,15 @@ entities:
parent: 8364
- proto: DeployableBarrier
entities:
- - uid: 7678
- components:
- - type: Transform
- pos: -13.5,22.5
- parent: 8364
- - uid: 7680
+ - uid: 9566
components:
- type: Transform
- pos: -12.5,22.5
+ pos: 3.5,35.5
parent: 8364
- - uid: 25712
+ - uid: 9567
components:
- type: Transform
- pos: -14.5,22.5
+ pos: 4.5,35.5
parent: 8364
- proto: DeskBell
entities:
@@ -75725,11 +75635,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 22.5,-35.5
parent: 8364
- - uid: 2562
- components:
- - type: Transform
- pos: 19.5,-18.5
- parent: 8364
- uid: 3724
components:
- type: Transform
@@ -75875,6 +75780,23 @@ entities:
rot: -1.5707963267948966 rad
pos: 18.5,32.5
parent: 8364
+ - uid: 9515
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,31.5
+ parent: 8364
+ - uid: 9517
+ components:
+ - type: Transform
+ pos: 6.5,31.5
+ parent: 8364
+ - uid: 9518
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,30.5
+ parent: 8364
- uid: 9534
components:
- type: Transform
@@ -76805,12 +76727,6 @@ entities:
rot: 3.141592653589793 rad
pos: 24.5,5.5
parent: 8364
- - uid: 9284
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,30.5
- parent: 8364
- uid: 9499
components:
- type: Transform
@@ -77979,43 +77895,11 @@ entities:
rot: -1.5707963267948966 rad
pos: -5.5,26.5
parent: 8364
- - uid: 8819
- components:
- - type: Transform
- pos: 9.5,33.5
- parent: 8364
- - uid: 8820
- components:
- - type: Transform
- pos: 9.5,34.5
- parent: 8364
- uid: 9105
components:
- type: Transform
pos: -26.5,-17.5
parent: 8364
- - uid: 9270
- components:
- - type: Transform
- pos: 9.5,32.5
- parent: 8364
- - uid: 9283
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,30.5
- parent: 8364
- - uid: 9285
- components:
- - type: Transform
- pos: 9.5,31.5
- parent: 8364
- - uid: 9286
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,30.5
- parent: 8364
- uid: 9401
components:
- type: Transform
@@ -78147,6 +78031,12 @@ entities:
rot: -1.5707963267948966 rad
pos: 10.5,30.5
parent: 8364
+ - uid: 9507
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,30.5
+ parent: 8364
- uid: 9508
components:
- type: Transform
@@ -78164,6 +78054,12 @@ entities:
- type: Transform
pos: 18.5,33.5
parent: 8364
+ - uid: 9516
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,31.5
+ parent: 8364
- uid: 9520
components:
- type: Transform
@@ -80783,6 +80679,18 @@ entities:
- type: Transform
pos: 49.5,-43.5
parent: 8364
+ - uid: 18920
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,-17.5
+ parent: 8364
+ - uid: 18921
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,-18.5
+ parent: 8364
- uid: 18922
components:
- type: Transform
@@ -83786,26 +83694,21 @@ entities:
rot: 3.141592653589793 rad
pos: -24.5,-13.5
parent: 8364
- - uid: 9075
- components:
- - type: Transform
- pos: 9.5,35.5
- parent: 8364
- uid: 9246
components:
- type: Transform
pos: -22.5,-15.5
parent: 8364
- - uid: 9269
+ - uid: 9481
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,30.5
+ pos: 19.5,36.5
parent: 8364
- - uid: 9481
+ - uid: 9483
components:
- type: Transform
- pos: 19.5,36.5
+ rot: 3.141592653589793 rad
+ pos: 4.5,30.5
parent: 8364
- uid: 9559
components:
@@ -83921,12 +83824,6 @@ entities:
- type: Transform
pos: 41.5,-26.5
parent: 8364
- - uid: 18606
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 18.5,-18.5
- parent: 8364
- uid: 18654
components:
- type: Transform
@@ -83961,6 +83858,11 @@ entities:
rot: 3.141592653589793 rad
pos: 43.5,-47.5
parent: 8364
+ - uid: 18895
+ components:
+ - type: Transform
+ pos: 19.5,-16.5
+ parent: 8364
- uid: 19072
components:
- type: Transform
@@ -84084,11 +83986,6 @@ entities:
- type: Transform
pos: 4.5,-9.5
parent: 8364
- - uid: 5920
- components:
- - type: Transform
- pos: 18.5,-18.5
- parent: 8364
- uid: 6117
components:
- type: Transform
@@ -84139,11 +84036,6 @@ entities:
- type: Transform
pos: 4.5,30.5
parent: 8364
- - uid: 9262
- components:
- - type: Transform
- pos: 9.5,35.5
- parent: 8364
- uid: 9400
components:
- type: Transform
@@ -84254,6 +84146,11 @@ entities:
- type: Transform
pos: 43.5,-47.5
parent: 8364
+ - uid: 18781
+ components:
+ - type: Transform
+ pos: 19.5,-16.5
+ parent: 8364
- uid: 19067
components:
- type: Transform
@@ -84341,6 +84238,11 @@ entities:
parent: 8364
- proto: DogBed
entities:
+ - uid: 3280
+ components:
+ - type: Transform
+ pos: 21.5,-18.5
+ parent: 8364
- uid: 3812
components:
- type: Transform
@@ -84360,11 +84262,6 @@ entities:
- type: Transform
pos: 35.5,-38.5
parent: 8364
- - uid: 18772
- components:
- - type: Transform
- pos: 22.5,-22.5
- parent: 8364
- uid: 22265
components:
- type: Transform
@@ -84446,10 +84343,10 @@ entities:
parent: 8364
- proto: DresserHeadOfSecurityFilled
entities:
- - uid: 9377
+ - uid: 9238
components:
- type: Transform
- pos: 15.5,41.5
+ pos: 16.5,40.5
parent: 8364
- proto: DresserQuarterMasterFilled
entities:
@@ -84465,13 +84362,6 @@ entities:
- type: Transform
pos: 71.5,-33.5
parent: 8364
-- proto: DresserWardenFilled
- entities:
- - uid: 9257
- components:
- - type: Transform
- pos: -1.5,33.5
- parent: 8364
- proto: DrinkBeerBottleFull
entities:
- uid: 27600
@@ -84580,11 +84470,6 @@ entities:
parent: 8364
- proto: EmergencyLight
entities:
- - uid: 9135
- components:
- - type: Transform
- pos: 4.5,33.5
- parent: 8364
- uid: 20300
components:
- type: Transform
@@ -84654,6 +84539,15 @@ entities:
- type: PointLight
enabled: True
- type: ActiveEmergencyLight
+ - uid: 21326
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,32.5
+ parent: 8364
+ - type: PointLight
+ enabled: True
+ - type: ActiveEmergencyLight
- uid: 21409
components:
- type: Transform
@@ -85314,22 +85208,6 @@ entities:
- type: Transform
pos: 59.5,-19.5
parent: 8364
-- proto: ExplosivesSignMed
- entities:
- - uid: 18369
- components:
- - type: MetaData
- desc: WARNING! Live minefield!
- - type: Transform
- pos: 5.5,46.5
- parent: 8364
- - uid: 28263
- components:
- - type: MetaData
- desc: WARNING! Live minefield!
- - type: Transform
- pos: 25.5,43.5
- parent: 8364
- proto: ExtendedEmergencyOxygenTankFilled
entities:
- uid: 17647
@@ -85726,7 +85604,7 @@ entities:
pos: 12.5,41.5
parent: 8364
- type: FaxMachine
- name: HoS Office
+ name: HoS
- uid: 21237
components:
- type: Transform
@@ -85748,13 +85626,6 @@ entities:
parent: 8364
- type: FaxMachine
name: Medical
- - uid: 28093
- components:
- - type: Transform
- pos: 4.5,32.5
- parent: 8364
- - type: FaxMachine
- name: Warden's Office
- proto: FaxMachineCaptain
entities:
- uid: 21189
@@ -85967,20 +85838,6 @@ entities:
- 14149
- 22663
- 19972
- - uid: 7797
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,18.5
- parent: 8364
- - type: DeviceList
- devices:
- - 11605
- - 11600
- - 11377
- - 11603
- - 23940
- - 9291
- uid: 10714
components:
- type: Transform
@@ -86632,6 +86489,7 @@ entities:
- 7393
- 7390
- 7146
+ - 9262
- 11605
- 11600
- 23935
@@ -86649,9 +86507,46 @@ entities:
- 7393
- 7390
- 7146
+ - 9262
- 11605
- 11600
- 23935
+ - uid: 23942
+ components:
+ - type: Transform
+ pos: 0.5,22.5
+ parent: 8364
+ - type: DeviceList
+ devices:
+ - 9262
+ - 11605
+ - 11600
+ - 11377
+ - 11603
+ - 23940
+ - uid: 25233
+ components:
+ - type: Transform
+ pos: -2.5,34.5
+ parent: 8364
+ - type: DeviceList
+ devices:
+ - 25040
+ - 9219
+ - 8930
+ - 8934
+ - uid: 25235
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,39.5
+ parent: 8364
+ - type: DeviceList
+ devices:
+ - 8930
+ - 8934
+ - 25236
+ - 19934
- uid: 25807
components:
- type: Transform
@@ -87581,15 +87476,11 @@ entities:
- type: Transform
pos: -0.5,29.5
parent: 8364
- - uid: 9291
+ - uid: 9262
components:
- type: Transform
pos: -1.5,18.5
parent: 8364
- - type: DeviceNetwork
- deviceLists:
- - 23898
- - 7797
- uid: 9811
components:
- type: Transform
@@ -87677,9 +87568,6 @@ entities:
- type: Transform
pos: 1.5,22.5
parent: 8364
- - type: DeviceNetwork
- deviceLists:
- - 7797
- uid: 11553
components:
- type: Transform
@@ -87695,17 +87583,11 @@ entities:
- type: Transform
pos: 0.5,18.5
parent: 8364
- - type: DeviceNetwork
- deviceLists:
- - 7797
- uid: 11603
components:
- type: Transform
pos: 2.5,22.5
parent: 8364
- - type: DeviceNetwork
- deviceLists:
- - 7797
- uid: 11604
components:
- type: Transform
@@ -87716,9 +87598,6 @@ entities:
- type: Transform
pos: -0.5,18.5
parent: 8364
- - type: DeviceNetwork
- deviceLists:
- - 7797
- uid: 11719
components:
- type: Transform
@@ -87870,17 +87749,11 @@ entities:
- type: Transform
pos: 18.5,-13.5
parent: 8364
- - type: Door
- secondsUntilStateChange: -885.5329
- state: Closing
- uid: 13388
components:
- type: Transform
pos: 18.5,-14.5
parent: 8364
- - type: Door
- secondsUntilStateChange: -921.2329
- state: Closing
- uid: 13389
components:
- type: Transform
@@ -88047,7 +87920,7 @@ entities:
pos: -34.5,-14.5
parent: 8364
- type: Door
- secondsUntilStateChange: -87843.06
+ secondsUntilStateChange: -68201.17
state: Closing
- uid: 15010
components:
@@ -89462,6 +89335,11 @@ entities:
- type: Transform
pos: 15.5,27.5
parent: 8364
+ - uid: 9411
+ components:
+ - type: Transform
+ pos: 14.5,39.5
+ parent: 8364
- proto: FoodBreadBaguette
entities:
- uid: 6669
@@ -93643,18 +93521,6 @@ 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
@@ -108095,11 +107961,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25233
- components:
- - type: Transform
- pos: 8.5,24.5
- parent: 8364
- uid: 25247
components:
- type: Transform
@@ -109706,6 +109567,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 25554
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,24.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 25555
components:
- type: Transform
@@ -114658,18 +114527,6 @@ 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
@@ -114813,6 +114670,18 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#947507FF'
+ - 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: 26040
components:
- type: Transform
@@ -114998,6 +114867,22 @@ entities:
open: False
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 25002
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,-41.5
+ parent: 8364
+ - type: GasValve
+ open: False
+ - uid: 25003
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,-39.5
+ parent: 8364
+ - type: GasValve
+ open: False
- proto: GasVentPump
entities:
- uid: 747
@@ -122365,12 +122250,12 @@ entities:
- uid: 4945
components:
- type: Transform
- pos: -1.5,41.5
+ pos: 4.5,42.5
parent: 8364
- uid: 4946
components:
- type: Transform
- pos: 0.5,41.5
+ pos: 3.5,42.5
parent: 8364
- uid: 4947
components:
@@ -122390,7 +122275,12 @@ entities:
- uid: 4951
components:
- type: Transform
- pos: 3.5,41.5
+ pos: -1.5,42.5
+ parent: 8364
+ - uid: 4952
+ components:
+ - type: Transform
+ pos: -2.5,42.5
parent: 8364
- uid: 4957
components:
@@ -122964,11 +122854,6 @@ entities:
- type: Transform
pos: 29.5,-22.5
parent: 8364
- - uid: 5606
- components:
- - type: Transform
- pos: 2.5,41.5
- parent: 8364
- uid: 5709
components:
- type: Transform
@@ -122989,11 +122874,6 @@ entities:
- type: Transform
pos: -0.5,-79.5
parent: 8364
- - uid: 5791
- components:
- - type: Transform
- pos: -0.5,41.5
- parent: 8364
- uid: 5913
components:
- type: Transform
@@ -123009,11 +122889,6 @@ entities:
- type: Transform
pos: -6.5,-93.5
parent: 8364
- - uid: 6253
- components:
- - type: Transform
- pos: 1.5,41.5
- parent: 8364
- uid: 6305
components:
- type: Transform
@@ -123385,6 +123260,11 @@ entities:
- type: Transform
pos: 6.5,34.5
parent: 8364
+ - uid: 7716
+ components:
+ - type: Transform
+ pos: 3.5,34.5
+ parent: 8364
- uid: 7717
components:
- type: Transform
@@ -123405,6 +123285,11 @@ entities:
- type: Transform
pos: -0.5,34.5
parent: 8364
+ - uid: 7721
+ components:
+ - type: Transform
+ pos: 3.5,34.5
+ parent: 8364
- uid: 7722
components:
- type: Transform
@@ -123495,6 +123380,11 @@ entities:
- type: Transform
pos: 8.5,25.5
parent: 8364
+ - uid: 7779
+ components:
+ - type: Transform
+ pos: 10.5,25.5
+ parent: 8364
- uid: 7788
components:
- type: Transform
@@ -123947,11 +123837,6 @@ entities:
- type: Transform
pos: -6.5,-78.5
parent: 8364
- - uid: 8614
- components:
- - type: Transform
- pos: -11.5,54.5
- parent: 8364
- uid: 8755
components:
- type: Transform
@@ -123962,11 +123847,6 @@ entities:
- type: Transform
pos: -6.5,38.5
parent: 8364
- - uid: 8776
- components:
- - type: Transform
- pos: -15.5,54.5
- parent: 8364
- uid: 8786
components:
- type: Transform
@@ -124049,16 +123929,6 @@ entities:
- type: Transform
pos: -13.5,39.5
parent: 8364
- - uid: 9169
- components:
- - type: Transform
- pos: 5.5,45.5
- parent: 8364
- - uid: 9230
- components:
- - type: Transform
- pos: -12.5,54.5
- parent: 8364
- uid: 9332
components:
- type: Transform
@@ -124094,11 +123964,6 @@ entities:
- type: Transform
pos: 25.5,42.5
parent: 8364
- - uid: 9567
- components:
- - type: Transform
- pos: -14.5,54.5
- parent: 8364
- uid: 9569
components:
- type: Transform
@@ -124114,12 +123979,6 @@ entities:
- type: Transform
pos: -18.5,21.5
parent: 8364
- - uid: 10057
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,25.5
- parent: 8364
- uid: 10082
components:
- type: Transform
@@ -124201,6 +124060,16 @@ entities:
- type: Transform
pos: -9.5,2.5
parent: 8364
+ - uid: 11607
+ components:
+ - type: Transform
+ pos: -13.5,3.5
+ parent: 8364
+ - uid: 11608
+ components:
+ - type: Transform
+ pos: -13.5,2.5
+ parent: 8364
- uid: 11648
components:
- type: Transform
@@ -125431,11 +125300,6 @@ entities:
- type: Transform
pos: 0.5,42.5
parent: 8364
- - uid: 25004
- components:
- - type: Transform
- pos: -3.5,33.5
- parent: 8364
- uid: 25230
components:
- type: Transform
@@ -125459,11 +125323,31 @@ entities:
- type: Transform
pos: -6.5,46.5
parent: 8364
+ - uid: 25712
+ components:
+ - type: Transform
+ pos: -14.5,54.5
+ parent: 8364
+ - uid: 25713
+ components:
+ - type: Transform
+ pos: -15.5,54.5
+ parent: 8364
+ - uid: 25714
+ components:
+ - type: Transform
+ pos: -12.5,54.5
+ parent: 8364
- uid: 25721
components:
- type: Transform
pos: -8.5,46.5
parent: 8364
+ - uid: 25726
+ components:
+ - type: Transform
+ pos: -11.5,54.5
+ parent: 8364
- uid: 25860
components:
- type: Transform
@@ -126030,51 +125914,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 3.5,-24.5
parent: 8364
- - uid: 28262
- components:
- - type: Transform
- pos: 30.5,43.5
- parent: 8364
- - uid: 28268
- components:
- - type: Transform
- pos: 30.5,42.5
- parent: 8364
- - uid: 28269
- components:
- - type: Transform
- pos: 30.5,41.5
- parent: 8364
- - uid: 28270
- components:
- - type: Transform
- pos: 30.5,40.5
- parent: 8364
- - uid: 28271
- components:
- - type: Transform
- pos: 30.5,44.5
- parent: 8364
- - uid: 28272
- components:
- - type: Transform
- pos: 30.5,45.5
- parent: 8364
- - uid: 28273
- components:
- - type: Transform
- pos: 30.5,39.5
- parent: 8364
- - uid: 28274
- components:
- - type: Transform
- pos: 27.5,45.5
- parent: 8364
- - uid: 28275
- components:
- - type: Transform
- pos: 28.5,45.5
- parent: 8364
- proto: GrilleBroken
entities:
- uid: 453
@@ -126177,17 +126016,6 @@ entities:
- type: Transform
pos: 88.5,-85.5
parent: 8364
- - uid: 5767
- components:
- - type: Transform
- pos: 5.5,43.5
- parent: 8364
- - uid: 9361
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,44.5
- parent: 8364
- uid: 11161
components:
- type: Transform
@@ -126320,110 +126148,44 @@ entities:
parent: 8364
- proto: GunSafeDisabler
entities:
- - uid: 9207
+ - uid: 6253
components:
- type: Transform
- anchored: True
- pos: 1.5,37.5
+ pos: -0.5,39.5
parent: 8364
- - type: Physics
- bodyType: Static
-- proto: GunSafePistolMk58
+ - uid: 15128
+ components:
+ - type: Transform
+ pos: 3.5,33.5
+ parent: 8364
+- proto: GunSafeLaserCarbine
entities:
- - uid: 7751
+ - uid: 9236
components:
- type: Transform
- anchored: True
- pos: 2.5,37.5
+ pos: 1.5,37.5
parent: 8364
- - type: Physics
- bodyType: Static
- proto: GunSafeRifleLecter
entities:
- - uid: 9373
+ - uid: 9177
+ components:
+ - type: Transform
+ pos: 0.5,37.5
+ parent: 8364
+- proto: GunSafeShotgunKammerer
+ entities:
+ - uid: 9170
components:
- - type: MetaData
- desc: A standard-issue Nanotrasen storage unit, containing 3 Lecter combat rifles.
- type: Transform
- anchored: True
pos: -0.5,37.5
parent: 8364
- - type: Physics
- bodyType: Static
- - 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:
- - 9376
- - 9375
- - 9374
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- proto: GunSafeSubMachineGunDrozd
entities:
- - uid: 9369
+ - uid: 9235
components:
- - type: MetaData
- desc: A standard-issue Nanotrasen storage unit, containing 3 Drozd submachine guns.
- type: Transform
- anchored: True
- pos: 0.5,37.5
+ pos: 2.5,37.5
parent: 8364
- - type: Physics
- bodyType: Static
- - 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:
- - 9370
- - 9371
- - 9372
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- proto: GyroscopeUnanchored
entities:
- uid: 25012
@@ -126434,6 +126196,21 @@ entities:
parent: 8364
- proto: Handcuffs
entities:
+ - uid: 8571
+ components:
+ - type: Transform
+ pos: 10.5,24.5
+ parent: 8364
+ - uid: 8572
+ components:
+ - type: Transform
+ pos: 10.5,24.5
+ parent: 8364
+ - uid: 8573
+ components:
+ - type: Transform
+ pos: 10.5,24.5
+ parent: 8364
- uid: 8591
components:
- type: Transform
@@ -126461,6 +126238,16 @@ entities:
- type: Transform
pos: 38.4924,-28.821447
parent: 8364
+ - uid: 9175
+ components:
+ - type: Transform
+ pos: -14.5,22.5
+ parent: 8364
+ - uid: 9229
+ components:
+ - type: Transform
+ pos: 1.530674,30.52632
+ parent: 8364
- uid: 9705
components:
- type: Transform
@@ -126481,15 +126268,15 @@ entities:
- type: Transform
pos: 42.78838,-16.408396
parent: 8364
- - uid: 18610
+ - uid: 18707
components:
- type: Transform
- pos: 22.524746,-18.472406
+ pos: 11.49096,-33.114952
parent: 8364
- - uid: 18707
+ - uid: 18903
components:
- type: Transform
- pos: 11.49096,-33.114952
+ pos: 22.5,-18.5
parent: 8364
- uid: 21393
components:
@@ -126897,10 +126684,10 @@ entities:
parent: 8364
- proto: HolopadSecurityArmory
entities:
- - uid: 7709
+ - uid: 28138
components:
- type: Transform
- pos: 3.5,37.5
+ pos: 1.5,38.5
parent: 8364
- proto: HolopadSecurityArrivalsCheckpoint
entities:
@@ -126953,10 +126740,10 @@ entities:
parent: 8364
- proto: HolopadSecurityFront
entities:
- - uid: 28247
+ - uid: 28093
components:
- type: Transform
- pos: 5.5,20.5
+ pos: 1.5,23.5
parent: 8364
- proto: HolopadSecurityInterrogation
entities:
@@ -127353,12 +127140,6 @@ entities:
parent: 8364
- proto: IntercomAll
entities:
- - uid: 4481
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,-15.5
- parent: 8364
- uid: 5526
components:
- type: Transform
@@ -127371,22 +127152,6 @@ entities:
rot: 3.141592653589793 rad
pos: 6.5,-19.5
parent: 8364
- - uid: 7752
- components:
- - type: Transform
- pos: 3.5,-13.5
- parent: 8364
- - uid: 9366
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,-15.5
- parent: 8364
- - uid: 9367
- components:
- - type: Transform
- pos: -4.5,-13.5
- parent: 8364
- uid: 27818
components:
- type: Transform
@@ -127532,6 +127297,11 @@ entities:
parent: 8364
- proto: IntercomSecurity
entities:
+ - uid: 9576
+ components:
+ - type: Transform
+ pos: 4.5,29.5
+ parent: 8364
- uid: 21091
components:
- type: Transform
@@ -127542,11 +127312,6 @@ entities:
- type: Transform
pos: -10.5,28.5
parent: 8364
- - uid: 26256
- components:
- - type: Transform
- pos: 0.5,22.5
- parent: 8364
- proto: IntercomSupply
entities:
- uid: 6438
@@ -127602,18 +127367,6 @@ entities:
- type: Transform
pos: -12.493954,3.065948
parent: 8364
-- proto: JetpackSecurityFilled
- entities:
- - uid: 8572
- components:
- - type: Transform
- pos: -0.68612957,39.73207
- parent: 8364
- - uid: 9182
- components:
- - type: Transform
- pos: -0.38925457,39.51332
- parent: 8364
- proto: Jukebox
entities:
- uid: 20632
@@ -128000,22 +127753,14 @@ entities:
parent: 8364
- proto: LandMineExplosive
entities:
- - uid: 9359
- components:
- - type: Transform
- anchored: True
- pos: 4.5,44.5
- parent: 8364
- uid: 27309
components:
- type: Transform
- anchored: True
pos: -0.5,43.5
parent: 8364
- uid: 27313
components:
- type: Transform
- anchored: True
pos: 2.5,43.5
parent: 8364
- proto: LandMineModular
@@ -128098,32 +127843,6 @@ entities:
- type: Transform
pos: -28.5095,-5.350807
parent: 8364
-- proto: LockableButtonArmory
- entities:
- - uid: 23135
- components:
- - type: MetaData
- name: Open Armory
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.477743,38.812943
- parent: 8364
- - type: DeviceLinkSource
- linkedPorts:
- 6419:
- - Pressed: Open
- - uid: 25554
- components:
- - type: MetaData
- name: Close Armory
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.4868402,38.244164
- parent: 8364
- - type: DeviceLinkSource
- linkedPorts:
- 6419:
- - Pressed: Close
- proto: LockableButtonChiefMedicalOfficer
entities:
- uid: 3809
@@ -128278,31 +127997,63 @@ entities:
- 0
- proto: LockerChemistryFilled
entities:
- - uid: 18781
- components:
- - type: Transform
- pos: 22.5,-21.5
- parent: 8364
-- proto: LockerChiefEngineerFilled
- entities:
- - uid: 18402
- components:
- - type: Transform
- pos: -0.5,-62.5
- parent: 8364
-- proto: LockerChiefMedicalOfficerFilledHardsuit
- entities:
- - uid: 9237
- components:
- - type: Transform
- pos: 34.5,-43.5
- parent: 8364
-- proto: LockerDetectiveFilled
- entities:
- - uid: 9704
+ - uid: 18772
components:
- type: Transform
- pos: -8.5,15.5
+ pos: 22.5,-22.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
+- proto: LockerChiefEngineerFilled
+ entities:
+ - uid: 18402
+ components:
+ - type: Transform
+ pos: -0.5,-62.5
+ parent: 8364
+- proto: LockerChiefMedicalOfficerFilledHardsuit
+ entities:
+ - uid: 9237
+ components:
+ - type: Transform
+ pos: 34.5,-43.5
+ parent: 8364
+- proto: LockerDetectiveFilled
+ entities:
+ - uid: 9704
+ components:
+ - type: Transform
+ pos: -8.5,15.5
parent: 8364
- type: EntityStorage
air:
@@ -128438,6 +128189,75 @@ entities:
- type: Transform
pos: -14.5,36.5
parent: 8364
+ - uid: 8553
+ components:
+ - type: Transform
+ pos: -12.5,24.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: 8554
+ components:
+ - type: Transform
+ pos: -12.5,23.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: 8555
+ components:
+ - type: Transform
+ pos: -12.5,22.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: 8961
components:
- type: Transform
@@ -128484,6 +128304,29 @@ entities:
- 0
- 0
- 0
+ - uid: 9118
+ components:
+ - type: Transform
+ pos: 6.5,41.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: 9356
components:
- type: Transform
@@ -128611,26 +128454,6 @@ entities:
- type: Transform
pos: 37.5,-4.5
parent: 8364
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14673
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: Pullable
- prevFixedRotation: True
- uid: 8196
components:
- type: Transform
@@ -128696,8 +128519,8 @@ entities:
immutable: False
temperature: 293.1496
moles:
- - 2.146141
- - 8.073578
+ - 5.001885
+ - 18.816614
- 0
- 0
- 0
@@ -128770,11 +128593,8 @@ entities:
- uid: 9250
components:
- type: Transform
- anchored: True
pos: 16.5,38.5
parent: 8364
- - type: Physics
- bodyType: Static
- type: EntityStorage
air:
volume: 200
@@ -128916,13 +128736,6 @@ entities:
- 0
- 0
- 0
- - uid: 25003
- components:
- - type: Transform
- pos: -9.5,31.5
- parent: 8364
- - type: Lock
- locked: False
- proto: LockerParamedicFilled
entities:
- uid: 27687
@@ -129119,27 +128932,18 @@ entities:
- uid: 8791
components:
- type: Transform
- anchored: True
pos: 8.5,37.5
parent: 8364
- - type: Physics
- bodyType: Static
- uid: 8811
components:
- type: Transform
- anchored: True
pos: 8.5,38.5
parent: 8364
- - type: Physics
- bodyType: Static
- uid: 9256
components:
- type: Transform
- anchored: True
pos: 10.5,37.5
parent: 8364
- - type: Physics
- bodyType: Static
- type: EntityStorage
air:
volume: 200
@@ -129175,11 +128979,8 @@ entities:
- uid: 9258
components:
- type: Transform
- anchored: True
pos: 10.5,38.5
parent: 8364
- - type: Physics
- bodyType: Static
- type: EntityStorage
air:
volume: 200
@@ -129215,11 +129016,8 @@ entities:
- uid: 9259
components:
- type: Transform
- anchored: True
pos: 10.5,39.5
parent: 8364
- - type: Physics
- bodyType: Static
- type: EntityStorage
air:
volume: 200
@@ -129292,11 +129090,8 @@ entities:
- uid: 27287
components:
- type: Transform
- anchored: True
pos: 8.5,40.5
parent: 8364
- - type: Physics
- bodyType: Static
- type: EntityStorage
air:
volume: 200
@@ -129318,11 +129113,8 @@ entities:
- uid: 27288
components:
- type: Transform
- anchored: True
pos: 8.5,39.5
parent: 8364
- - type: Physics
- bodyType: Static
- type: EntityStorage
air:
volume: 200
@@ -129471,13 +129263,6 @@ entities:
- 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
@@ -129551,11 +129336,6 @@ entities:
- 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
@@ -129699,54 +129479,22 @@ entities:
- type: Transform
pos: -43.5,-12.5
parent: 8364
-- proto: MagazinePistolSubMachineGun
- entities:
- - uid: 9371
- components:
- - type: Transform
- parent: 9369
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 9372
- components:
- - type: Transform
- parent: 9369
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- proto: MagazinePistolSubMachineGunTopMounted
entities:
- uid: 534
components:
- type: Transform
- pos: 14.262794,39.806297
+ pos: 16.383898,41.80004
parent: 8364
- type: BallisticAmmoProvider
unspawnedCount: 30
- uid: 535
components:
- type: Transform
- pos: 14.247169,39.821922
+ pos: 16.383898,41.80004
parent: 8364
- type: BallisticAmmoProvider
unspawnedCount: 30
-- proto: MagazineRifle
- entities:
- - uid: 9374
- components:
- - type: Transform
- parent: 9373
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 9376
- components:
- - type: Transform
- parent: 9373
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- proto: MailingUnit
entities:
- uid: 8179
@@ -130177,21 +129925,11 @@ entities:
- type: Transform
pos: 32.5,-36.5
parent: 8364
- - uid: 5594
- components:
- - type: Transform
- pos: -6.5,31.5
- parent: 8364
- uid: 18648
components:
- type: Transform
pos: 30.5,-27.5
parent: 8364
- - uid: 19933
- components:
- - type: Transform
- pos: -6.5,32.5
- parent: 8364
- proto: MedicalTechFab
entities:
- uid: 27390
@@ -130208,11 +129946,6 @@ entities:
parent: 8364
- proto: MedkitBruteFilled
entities:
- - uid: 9118
- components:
- - type: Transform
- pos: -6.4267135,29.876205
- parent: 8364
- uid: 21717
components:
- type: Transform
@@ -130247,6 +129980,11 @@ entities:
parent: 8364
- proto: MedkitFilled
entities:
+ - uid: 5606
+ components:
+ - type: Transform
+ pos: 4.550616,-5.4263577
+ parent: 8364
- uid: 6523
components:
- type: Transform
@@ -130262,6 +130000,11 @@ entities:
- type: Transform
pos: -6.5648327,29.651033
parent: 8364
+ - uid: 9086
+ components:
+ - type: Transform
+ pos: -2.4584026,39.71956
+ parent: 8364
- uid: 12264
components:
- type: Transform
@@ -130287,7 +130030,7 @@ entities:
- uid: 7927
components:
- type: Transform
- pos: -6.3642135,29.51683
+ pos: -6.3929577,29.432283
parent: 8364
- proto: MedkitRadiationFilled
entities:
@@ -131081,6 +130824,11 @@ entities:
- type: Transform
pos: 19.5,-32.5
parent: 8364
+ - uid: 8750
+ components:
+ - type: Transform
+ pos: -9.5,31.5
+ parent: 8364
- uid: 19015
components:
- type: Transform
@@ -131449,6 +131197,106 @@ 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
@@ -131464,7 +131312,12 @@ entities:
- uid: 8806
components:
- type: Transform
- pos: -11.519596,32.598755
+ pos: -11.291204,32.308414
+ parent: 8364
+ - uid: 9233
+ components:
+ - type: Transform
+ pos: -0.5,29.5
parent: 8364
- uid: 9406
components:
@@ -131733,26 +131586,6 @@ entities:
- 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
@@ -131760,55 +131593,11 @@ 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
pos: 6.5,-56.5
parent: 8364
-- proto: PaperOffice
- entities:
- - uid: 9390
- components:
- - type: Transform
- parent: 9384
- - type: Physics
- canCollide: False
- - uid: 9453
- components:
- - type: Transform
- parent: 9384
- - type: Physics
- canCollide: False
- - uid: 9454
- components:
- - type: Transform
- parent: 9384
- - type: Physics
- canCollide: False
- - uid: 9507
- components:
- - type: Transform
- parent: 9384
- - type: Physics
- canCollide: False
- - uid: 9515
- components:
- - type: Transform
- parent: 9384
- - type: Physics
- canCollide: False
- - uid: 9516
- components:
- - type: Transform
- parent: 9384
- - type: Physics
- canCollide: False
- proto: ParchisBoard
entities:
- uid: 11673
@@ -131895,7 +131684,7 @@ entities:
- uid: 15961
components:
- type: Transform
- pos: -28.49712,-53.537666
+ pos: -28.374622,-53.801064
parent: 8364
- uid: 16698
components:
@@ -131988,22 +131777,27 @@ entities:
- uid: 8463
components:
- type: Transform
- pos: 12.507681,19.623228
+ pos: 12.5,19.5
parent: 8364
- uid: 8603
components:
- type: Transform
- pos: 3.370025,24.35413
+ pos: 3.5,24.5
parent: 8364
- uid: 8802
components:
- type: Transform
pos: -11.650579,32.527164
parent: 8364
+ - uid: 9231
+ components:
+ - type: Transform
+ pos: -1.2001991,30.822023
+ parent: 8364
- uid: 9232
components:
- type: Transform
- pos: -1.6906976,30.406588
+ pos: -0.5,29.5
parent: 8364
- uid: 9727
components:
@@ -132313,20 +132107,6 @@ entities:
- type: Transform
pos: 7.5224895,-74.49767
parent: 8364
-- proto: PlasmaWindoorSecureArmoryLocked
- entities:
- - uid: 9517
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,37.5
- parent: 8364
- - type: DeviceLinkSink
- invokeCounter: 1
- - type: DeviceLinkSource
- linkedPorts:
- 26255:
- - DoorStatus: Close
- proto: PlasticFlapsAirtightClear
entities:
- uid: 3067
@@ -132415,56 +132195,21 @@ entities:
parent: 8364
- proto: PortableFlasher
entities:
- - uid: 9267
- components:
- - type: Transform
- anchored: False
- pos: -12.5,25.5
- parent: 8364
- - type: TriggerOnProximity
- enabled: False
- - type: Physics
- bodyType: Dynamic
- - uid: 9380
- components:
- - type: Transform
- anchored: False
- pos: -12.5,23.5
- parent: 8364
- - type: TriggerOnProximity
- enabled: False
- - type: Physics
- bodyType: Dynamic
- - uid: 9518
+ - uid: 9166
components:
- type: Transform
- anchored: False
- pos: -2.5,36.5
+ pos: -1.5,35.5
parent: 8364
- - type: TriggerOnProximity
- enabled: False
- - type: Physics
- bodyType: Dynamic
- - uid: 9566
+ - uid: 9167
components:
- type: Transform
- anchored: False
pos: -2.5,35.5
parent: 8364
- - type: TriggerOnProximity
- enabled: False
- - type: Physics
- bodyType: Dynamic
- - uid: 25713
+ - uid: 9169
components:
- type: Transform
- anchored: False
- pos: -12.5,24.5
+ pos: -2.5,36.5
parent: 8364
- - type: TriggerOnProximity
- enabled: False
- - type: Physics
- bodyType: Dynamic
- proto: PortableGeneratorJrPacman
entities:
- uid: 6258
@@ -133122,6 +132867,11 @@ entities:
- type: Transform
pos: 34.5,-51.5
parent: 8364
+ - uid: 5599
+ components:
+ - type: Transform
+ pos: 12.5,37.5
+ parent: 8364
- uid: 14510
components:
- type: Transform
@@ -133311,11 +133061,6 @@ entities:
- type: ContainerContainer
containers:
stash: !type:ContainerSlot {}
- - uid: 8399
- components:
- - type: Transform
- pos: 58.5,-1.5
- parent: 8364
- uid: 11814
components:
- type: Transform
@@ -133361,16 +133106,6 @@ 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
@@ -133819,6 +133554,14 @@ 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
@@ -136155,12 +135898,6 @@ entities:
parent: 8364
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 9576
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,47.5
- parent: 8364
- uid: 10007
components:
- type: Transform
@@ -136247,18 +135984,6 @@ entities:
powerLoad: 0
- proto: PoweredlightLED
entities:
- - uid: 4952
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,41.5
- parent: 8364
- - uid: 9175
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,41.5
- parent: 8364
- uid: 14468
components:
- type: Transform
@@ -136306,6 +136031,22 @@ entities:
parent: 8364
- type: ApcPowerReceiver
powerLoad: 0
+ - uid: 27281
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,41.5
+ parent: 8364
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 27282
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,41.5
+ parent: 8364
+ - type: ApcPowerReceiver
+ powerLoad: 0
- proto: PoweredlightSodium
entities:
- uid: 21778
@@ -137731,18 +137472,6 @@ entities:
powerLoad: 0
- proto: PoweredWarmSmallLight
entities:
- - uid: 8460
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 18.5,-5.5
- parent: 8364
- - uid: 18368
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 19.5,-10.5
- parent: 8364
- uid: 27930
components:
- type: Transform
@@ -137895,10 +137624,10 @@ entities:
- type: Transform
pos: 66.5,-64.5
parent: 8364
- - uid: 8779
+ - uid: 8570
components:
- type: Transform
- pos: 3.5,39.5
+ pos: 10.5,24.5
parent: 8364
- uid: 9002
components:
@@ -137910,6 +137639,11 @@ entities:
- type: Transform
pos: -8.5,53.5
parent: 8364
+ - uid: 9190
+ components:
+ - type: Transform
+ pos: 0.5,39.5
+ parent: 8364
- uid: 9191
components:
- type: Transform
@@ -137920,10 +137654,15 @@ entities:
- type: Transform
pos: 2.5,39.5
parent: 8364
- - uid: 9231
+ - uid: 9193
components:
- type: Transform
- pos: -0.5,39.5
+ pos: 0.5,35.5
+ parent: 8364
+ - uid: 9194
+ components:
+ - type: Transform
+ pos: -0.5,35.5
parent: 8364
- uid: 9364
components:
@@ -137950,11 +137689,6 @@ entities:
- type: Transform
pos: 25.5,25.5
parent: 8364
- - uid: 10086
- components:
- - type: Transform
- pos: 4.5,39.5
- parent: 8364
- uid: 10274
components:
- type: Transform
@@ -137970,11 +137704,6 @@ entities:
- type: Transform
pos: 66.5,6.5
parent: 8364
- - uid: 11608
- components:
- - type: Transform
- pos: -1.5,35.5
- parent: 8364
- uid: 11680
components:
- type: Transform
@@ -138270,11 +137999,6 @@ entities:
- type: Transform
pos: 72.5,-35.5
parent: 8364
- - uid: 21326
- components:
- - type: Transform
- pos: 0.5,39.5
- parent: 8364
- uid: 21389
components:
- type: Transform
@@ -138458,6 +138182,11 @@ entities:
- type: Transform
pos: 9.443931,-54.34355
parent: 8364
+ - uid: 8597
+ components:
+ - type: Transform
+ pos: 3.5,23.5
+ parent: 8364
- uid: 15394
components:
- type: Transform
@@ -139461,6 +139190,11 @@ entities:
- type: Transform
pos: -12.5,26.5
parent: 8364
+ - uid: 9463
+ components:
+ - type: Transform
+ pos: -1.5,23.5
+ parent: 8364
- uid: 9474
components:
- type: Transform
@@ -140097,11 +139831,6 @@ entities:
- type: Transform
pos: 44.5,-54.5
parent: 8364
- - uid: 5765
- components:
- - type: Transform
- pos: 1.5,42.5
- parent: 8364
- uid: 5799
components:
- type: Transform
@@ -140127,33 +139856,6 @@ entities:
- type: Transform
pos: -0.5,40.5
parent: 8364
- - uid: 8761
- components:
- - type: Transform
- pos: 0.5,42.5
- parent: 8364
- - uid: 8775
- components:
- - type: Transform
- pos: -0.5,42.5
- parent: 8364
- - uid: 10059
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,34.5
- parent: 8364
- - uid: 10060
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,34.5
- parent: 8364
- - uid: 11607
- components:
- - type: Transform
- pos: 2.5,42.5
- parent: 8364
- uid: 15138
components:
- type: Transform
@@ -143086,12 +142788,6 @@ entities:
- type: Transform
pos: 11.5,40.5
parent: 8364
- - uid: 7706
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,33.5
- parent: 8364
- uid: 7724
components:
- type: Transform
@@ -143132,6 +142828,21 @@ entities:
- type: Transform
pos: 5.5,32.5
parent: 8364
+ - uid: 7733
+ components:
+ - type: Transform
+ pos: 3.5,34.5
+ parent: 8364
+ - uid: 7734
+ components:
+ - type: Transform
+ pos: -0.5,34.5
+ parent: 8364
+ - uid: 7735
+ components:
+ - type: Transform
+ pos: 0.5,34.5
+ parent: 8364
- uid: 7736
components:
- type: Transform
@@ -143202,6 +142913,16 @@ entities:
- type: Transform
pos: 5.5,25.5
parent: 8364
+ - uid: 7751
+ components:
+ - type: Transform
+ pos: 8.5,25.5
+ parent: 8364
+ - uid: 7752
+ components:
+ - type: Transform
+ pos: 10.5,25.5
+ parent: 8364
- uid: 7753
components:
- type: Transform
@@ -143664,11 +143385,6 @@ entities:
- type: Transform
pos: -13.5,39.5
parent: 8364
- - uid: 8631
- components:
- - type: Transform
- pos: -15.5,54.5
- parent: 8364
- uid: 8656
components:
- type: Transform
@@ -143724,6 +143440,11 @@ entities:
- type: Transform
pos: -18.5,39.5
parent: 8364
+ - uid: 9046
+ components:
+ - type: Transform
+ pos: -15.5,54.5
+ parent: 8364
- uid: 9047
components:
- type: Transform
@@ -143764,18 +143485,6 @@ entities:
- type: Transform
pos: -14.5,39.5
parent: 8364
- - uid: 9236
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,25.5
- parent: 8364
- - uid: 9238
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,25.5
- parent: 8364
- uid: 9399
components:
- type: Transform
@@ -143881,11 +143590,21 @@ entities:
- type: Transform
pos: 67.5,3.5
parent: 8364
+ - uid: 11379
+ components:
+ - type: Transform
+ pos: -13.5,3.5
+ parent: 8364
- uid: 11590
components:
- type: Transform
pos: -9.5,2.5
parent: 8364
+ - uid: 11592
+ components:
+ - type: Transform
+ pos: -13.5,2.5
+ parent: 8364
- uid: 11646
components:
- type: Transform
@@ -144748,71 +144467,17 @@ entities:
- type: Transform
pos: 51.721848,-23.02736
parent: 8364
-- proto: RiotBulletShield
- entities:
- - uid: 7681
- components:
- - type: Transform
- pos: 0.21283889,39.394394
- parent: 8364
- - uid: 9194
- components:
- - type: Transform
- pos: 0.22672784,39.679115
- parent: 8364
- - uid: 9209
- components:
- - type: Transform
- pos: 0.2197833,39.57495
- parent: 8364
- - uid: 9383
- components:
- - type: Transform
- pos: 0.2197833,39.47773
- parent: 8364
-- proto: RiotLaserShield
- entities:
- - uid: 8627
- components:
- - type: Transform
- pos: 0.7406167,39.408287
- parent: 8364
- - uid: 9290
- components:
- - type: Transform
- pos: 0.73367226,39.581894
- parent: 8364
- - uid: 9335
- components:
- - type: Transform
- pos: 0.73367226,39.69301
- parent: 8364
- - uid: 21786
- components:
- - type: Transform
- pos: 0.73367226,39.498558
- parent: 8364
- proto: RiotShield
entities:
- - uid: 9226
- components:
- - type: Transform
- pos: 0.4975611,39.720787
- parent: 8364
- - uid: 9228
- components:
- - type: Transform
- pos: 0.4975611,39.616615
- parent: 8364
- - uid: 9334
+ - uid: 9119
components:
- type: Transform
- pos: 0.4975611,39.519394
+ pos: 0.2666831,39.43831
parent: 8364
- - uid: 10058
+ - uid: 9135
components:
- type: Transform
- pos: 0.4975611,39.394394
+ pos: 0.2510581,39.68831
parent: 8364
- proto: RobocopCircuitBoard
entities:
@@ -145047,7 +144712,7 @@ entities:
parent: 8364
- proto: SecurityTechFab
entities:
- - uid: 9235
+ - uid: 9359
components:
- type: Transform
pos: -1.5,39.5
@@ -145156,6 +144821,11 @@ entities:
- 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
@@ -145215,11 +144885,6 @@ entities:
- type: Transform
pos: 57.348213,-49.249336
parent: 8364
- - uid: 17152
- components:
- - type: Transform
- pos: 22.10642,-18.301016
- parent: 8364
- proto: SheetPlasteel
entities:
- uid: 4582
@@ -145254,6 +144919,11 @@ entities:
- type: Transform
pos: 69.50902,-26.620325
parent: 8364
+ - uid: 8761
+ components:
+ - type: Transform
+ pos: -2.4544196,39.606735
+ parent: 8364
- uid: 19207
components:
- type: Transform
@@ -145266,6 +144936,11 @@ entities:
- type: Transform
pos: -65.35544,13.342238
parent: 8364
+ - uid: 15959
+ components:
+ - type: Transform
+ pos: -28.390247,-52.707314
+ parent: 8364
- uid: 21445
components:
- type: Transform
@@ -145296,7 +144971,7 @@ entities:
- uid: 9316
components:
- type: Transform
- pos: -2.430175,38.67102
+ pos: -2.4700446,39.637985
parent: 8364
- uid: 11753
components:
@@ -145339,6 +145014,11 @@ 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
@@ -145565,51 +145245,50 @@ entities:
- type: Transform
pos: 6.5,-23.5
parent: 8364
- - uid: 9639
+ - uid: 8606
components:
- type: Transform
- pos: -2.5,16.5
+ pos: 3.5,23.5
parent: 8364
- - uid: 9640
+ - uid: 8607
components:
- type: Transform
- pos: -2.5,15.5
+ pos: 3.5,24.5
parent: 8364
- - uid: 9641
+ - uid: 8614
components:
- type: Transform
- pos: -2.5,14.5
+ pos: 2.5,22.5
parent: 8364
- - uid: 9642
+ - uid: 8615
components:
- type: Transform
- pos: -5.5,18.5
+ pos: 1.5,22.5
parent: 8364
- - uid: 9923
+ - uid: 9639
components:
- type: Transform
- pos: 10.5,-32.5
+ pos: -2.5,16.5
parent: 8364
- - uid: 11980
+ - uid: 9640
components:
- type: Transform
- pos: -9.5,22.5
+ pos: -2.5,15.5
parent: 8364
- - uid: 12024
+ - uid: 9641
components:
- type: Transform
- pos: -10.5,22.5
+ pos: -2.5,14.5
parent: 8364
- - uid: 12030
+ - uid: 9642
components:
- type: Transform
- pos: 3.5,24.5
+ pos: -5.5,18.5
parent: 8364
- - uid: 12033
+ - uid: 9923
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,23.5
+ pos: 10.5,-32.5
parent: 8364
- uid: 14148
components:
@@ -145650,12 +145329,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -29.5,-25.5
parent: 8364
- - uid: 17151
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,22.5
- parent: 8364
- uid: 17669
components:
- type: Transform
@@ -145672,12 +145345,6 @@ entities:
- type: Transform
pos: -0.5,-65.5
parent: 8364
- - uid: 18370
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,22.5
- parent: 8364
- uid: 18406
components:
- type: Transform
@@ -145698,47 +145365,12 @@ entities:
- type: Transform
pos: 23.5,-19.5
parent: 8364
- - uid: 19886
- components:
- - type: Transform
- pos: -0.5,22.5
- parent: 8364
- - uid: 19890
- components:
- - type: Transform
- pos: -1.5,22.5
- parent: 8364
- - uid: 19931
- components:
- - type: Transform
- pos: -2.5,22.5
- parent: 8364
- - uid: 19959
- components:
- - type: Transform
- pos: -4.5,22.5
- parent: 8364
- - uid: 19968
- components:
- - type: Transform
- pos: -5.5,22.5
- parent: 8364
- - uid: 20152
- components:
- - type: Transform
- pos: -6.5,22.5
- parent: 8364
- uid: 22014
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -14.5,-15.5
parent: 8364
- - uid: 22451
- components:
- - type: Transform
- pos: -8.5,22.5
- parent: 8364
- uid: 22990
components:
- type: Transform
@@ -145858,34 +145490,71 @@ entities:
- type: Transform
pos: 12.5,23.5
parent: 8364
+ - uid: 8775
+ components:
+ - type: Transform
+ pos: -10.5,22.5
+ parent: 8364
+ - uid: 8776
+ components:
+ - type: Transform
+ pos: -9.5,22.5
+ parent: 8364
+ - uid: 8777
+ components:
+ - type: Transform
+ pos: -8.5,22.5
+ parent: 8364
+ - uid: 8778
+ components:
+ - type: Transform
+ pos: -6.5,22.5
+ parent: 8364
+ - uid: 8779
+ components:
+ - type: Transform
+ pos: -5.5,22.5
+ parent: 8364
+ - uid: 8780
+ components:
+ - type: Transform
+ pos: -4.5,22.5
+ parent: 8364
+ - uid: 8781
+ components:
+ - type: Transform
+ pos: -2.5,22.5
+ parent: 8364
+ - uid: 8782
+ components:
+ - type: Transform
+ pos: -1.5,22.5
+ parent: 8364
+ - uid: 8783
+ components:
+ - type: Transform
+ pos: -0.5,22.5
+ parent: 8364
- uid: 10454
components:
- type: Transform
pos: 35.5,-10.5
parent: 8364
- - type: DeviceLinkSink
- invokeCounter: 2
- uid: 10455
components:
- type: Transform
pos: 36.5,-10.5
parent: 8364
- - type: DeviceLinkSink
- invokeCounter: 2
- uid: 10456
components:
- type: Transform
pos: 37.5,-10.5
parent: 8364
- - type: DeviceLinkSink
- invokeCounter: 2
- uid: 10457
components:
- type: Transform
pos: 38.5,-10.5
parent: 8364
- - type: DeviceLinkSink
- invokeCounter: 2
- uid: 20837
components:
- type: Transform
@@ -146206,6 +145875,27 @@ entities:
- Pressed: Toggle
10457:
- Pressed: Toggle
+ - uid: 9936
+ components:
+ - type: Transform
+ pos: 14.5,29.5
+ parent: 8364
+ - type: DeviceLinkSource
+ linkedPorts:
+ 8650:
+ - Pressed: Toggle
+ 8649:
+ - Pressed: Toggle
+ 8648:
+ - Pressed: Toggle
+ 8647:
+ - Pressed: Toggle
+ 8646:
+ - Pressed: Toggle
+ 8645:
+ - Pressed: Toggle
+ 8644:
+ - Pressed: Toggle
- uid: 11625
components:
- type: Transform
@@ -146313,6 +146003,50 @@ entities:
- Pressed: Toggle
20180:
- Pressed: Toggle
+ - uid: 19931
+ components:
+ - type: Transform
+ pos: 0.5,25.5
+ parent: 8364
+ - type: DeviceLinkSource
+ linkedPorts:
+ 8783:
+ - Pressed: Toggle
+ 8782:
+ - Pressed: Toggle
+ 8781:
+ - Pressed: Toggle
+ 8780:
+ - Pressed: Toggle
+ 8779:
+ - Pressed: Toggle
+ 8778:
+ - Pressed: Toggle
+ 8777:
+ - Pressed: Toggle
+ 8776:
+ - Pressed: Toggle
+ 8775:
+ - Pressed: Toggle
+ 8615:
+ - Pressed: Toggle
+ 8614:
+ - Pressed: Toggle
+ 8606:
+ - Pressed: Toggle
+ 8607:
+ - Pressed: Toggle
+ - uid: 19933
+ components:
+ - type: Transform
+ pos: -3.5,33.5
+ parent: 8364
+ - type: DeviceLinkSource
+ linkedPorts:
+ 19930:
+ - Pressed: Toggle
+ 19932:
+ - Pressed: Toggle
- uid: 20896
components:
- type: Transform
@@ -146463,6 +146197,32 @@ entities:
- Pressed: Toggle
- proto: SignalButtonDirectional
entities:
+ - uid: 4213
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,36.5
+ parent: 8364
+ - type: DeviceLinkSource
+ linkedPorts:
+ 4494:
+ - Pressed: Toggle
+ 4495:
+ - Pressed: Toggle
+ - uid: 4214
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.5,36.5
+ parent: 8364
+ - type: DeviceLinkSource
+ linkedPorts:
+ 3134:
+ - Pressed: Toggle
+ 4212:
+ - Pressed: Toggle
+ 6970:
+ - Pressed: Toggle
- uid: 10732
components:
- type: MetaData
@@ -146549,24 +146309,13 @@ entities:
- Pressed: DoorBolt
- proto: SignalSwitch
entities:
- - uid: 9411
+ - uid: 8784
components:
- type: MetaData
- name: Perma Blast Doors
+ name: brig shutters switch
- type: Transform
- rot: 3.141592653589793 rad
pos: -1.5,30.5
parent: 8364
- - type: SignalSwitch
- state: True
- - type: DeviceLinkSource
- linkedPorts:
- 19930:
- - On: Open
- - Off: Close
- 19932:
- - On: Open
- - Off: Close
- uid: 13247
components:
- type: MetaData
@@ -146574,127 +146323,6 @@ entities:
- type: Transform
pos: 10.8,3.5
parent: 8364
-- proto: SignalSwitchDirectional
- entities:
- - uid: 9142
- components:
- - type: MetaData
- name: Shutters
- - type: Transform
- pos: 13.5,29.5
- parent: 8364
- - type: DeviceLinkSource
- linkedPorts:
- 8650:
- - On: Open
- - Off: Close
- 8649:
- - On: Open
- - Off: Close
- 8648:
- - On: Open
- - Off: Close
- 8647:
- - On: Open
- - Off: Close
- 8646:
- - On: Open
- - Off: Close
- 8645:
- - On: Open
- - Off: Close
- 8644:
- - On: Open
- - Off: Close
- - uid: 9368
- components:
- - type: MetaData
- name: Window Blast Doors
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,40.5
- parent: 8364
- - type: SignalSwitch
- state: True
- - type: DeviceLinkSource
- linkedPorts:
- 6970:
- - On: Open
- - Off: Close
- 4212:
- - On: Open
- - Off: Close
- 3134:
- - On: Open
- - Off: Close
- - uid: 11568
- components:
- - type: MetaData
- name: Brig Shutters
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,23.5
- parent: 8364
- - type: SignalSwitch
- state: True
- - type: DeviceLinkSource
- linkedPorts:
- 12030:
- - On: Open
- - Off: Close
- 12033:
- - On: Open
- - Off: Close
- 17151:
- - Off: Close
- - On: Open
- 18370:
- - On: Open
- - Off: Close
- 19886:
- - On: Open
- - Off: Close
- 19890:
- - On: Open
- - Off: Close
- 19931:
- - On: Open
- - Off: Close
- 19959:
- - On: Open
- - Off: Close
- 19968:
- - Off: Close
- - On: Open
- 20152:
- - On: Open
- - Off: Close
- 22451:
- - On: Open
- - Off: Close
- 11980:
- - On: Open
- - Off: Close
- 12024:
- - On: Open
- - Off: Close
- - uid: 15129
- components:
- - type: MetaData
- name: Window Blast Doors
- - type: Transform
- pos: 8.5,42.5
- parent: 8364
- - type: SignalSwitch
- state: True
- - type: DeviceLinkSource
- linkedPorts:
- 4495:
- - On: Open
- - Off: Close
- 4494:
- - On: Open
- - Off: Close
- proto: SignAnomaly
entities:
- uid: 25994
@@ -147182,11 +146810,21 @@ entities:
- type: Transform
pos: -2.5,-60.5
parent: 8364
+ - uid: 26456
+ components:
+ - type: Transform
+ pos: 5.5,46.5
+ parent: 8364
- uid: 26457
components:
- type: Transform
pos: -3.5,46.5
parent: 8364
+ - uid: 26458
+ components:
+ - type: Transform
+ pos: -25.5,46.5
+ parent: 8364
- uid: 26459
components:
- type: Transform
@@ -147575,6 +147213,21 @@ entities:
rot: 3.141592653589793 rad
pos: 13.5,-53.5
parent: 8364
+ - uid: 8470
+ components:
+ - type: Transform
+ pos: 11.5,28.5
+ parent: 8364
+ - uid: 8592
+ components:
+ - type: Transform
+ pos: 7.5,22.5
+ parent: 8364
+ - uid: 9004
+ components:
+ - type: Transform
+ pos: -3.5,43.5
+ parent: 8364
- proto: SignSecureMed
entities:
- uid: 3806
@@ -147603,12 +147256,6 @@ entities:
- type: Transform
pos: 4.5,-64.5
parent: 8364
- - uid: 19928
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,22.5
- parent: 8364
- uid: 20149
components:
- type: Transform
@@ -147909,6 +147556,11 @@ entities:
- type: Transform
pos: 31.5,1.5
parent: 8364
+ - uid: 7340
+ components:
+ - type: Transform
+ pos: -6.5,32.5
+ parent: 8364
- uid: 13245
components:
- type: Transform
@@ -148027,12 +147679,6 @@ entities:
- type: Transform
pos: -36.5,-54.5
parent: 8364
- - uid: 16331
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 18.5,-17.5
- parent: 8364
- uid: 20883
components:
- type: Transform
@@ -149817,10 +149463,10 @@ entities:
parent: 8364
- proto: SpawnMobWalter
entities:
- - uid: 18775
+ - uid: 3480
components:
- type: Transform
- pos: 22.5,-22.5
+ pos: 21.5,-18.5
parent: 8364
- proto: SpawnPointAtmos
entities:
@@ -149935,20 +149581,20 @@ entities:
parent: 8364
- proto: SpawnPointChemist
entities:
- - uid: 1921
+ - uid: 18603
components:
- type: Transform
- pos: 19.5,-17.5
+ pos: 20.5,-19.5
parent: 8364
- - uid: 18383
+ - uid: 18606
components:
- type: Transform
- pos: 21.5,-19.5
+ pos: 20.5,-18.5
parent: 8364
- - uid: 18603
+ - uid: 18608
components:
- type: Transform
- pos: 21.5,-17.5
+ pos: 20.5,-17.5
parent: 8364
- proto: SpawnPointChiefEngineer
entities:
@@ -150255,28 +149901,33 @@ entities:
parent: 8364
- proto: SpawnPointSecurityCadet
entities:
- - uid: 5599
+ - uid: 9453
components:
- type: Transform
- pos: 8.5,36.5
+ pos: 7.5,39.5
parent: 8364
- - uid: 9177
+ - uid: 9454
components:
- type: Transform
- pos: 7.5,36.5
+ pos: 7.5,38.5
parent: 8364
- - uid: 9295
+ - uid: 11568
components:
- type: Transform
- pos: 9.5,36.5
+ pos: 7.5,37.5
parent: 8364
- - uid: 20856
+ - uid: 26603
components:
- type: Transform
- pos: 9.5,40.5
+ pos: 7.5,40.5
parent: 8364
- proto: SpawnPointSecurityOfficer
entities:
+ - uid: 8590
+ components:
+ - type: Transform
+ pos: 9.5,40.5
+ parent: 8364
- uid: 8633
components:
- type: Transform
@@ -150292,26 +149943,6 @@ entities:
- type: Transform
pos: 9.5,37.5
parent: 8364
- - uid: 19935
- components:
- - type: Transform
- pos: 7.5,37.5
- parent: 8364
- - uid: 20159
- components:
- - type: Transform
- pos: 7.5,38.5
- parent: 8364
- - uid: 20174
- components:
- - type: Transform
- pos: 7.5,39.5
- parent: 8364
- - uid: 20857
- components:
- - type: Transform
- pos: 7.5,40.5
- parent: 8364
- proto: SpawnPointServiceWorker
entities:
- uid: 6948
@@ -150561,47 +150192,41 @@ entities:
parent: 8364
- proto: SteelBench
entities:
- - uid: 7912
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 22.5,32.5
- parent: 8364
- - uid: 7913
+ - uid: 5765
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 23.5,32.5
+ rot: -1.5707963267948966 rad
+ pos: 10.5,23.5
parent: 8364
- - uid: 7915
+ - uid: 5767
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 24.5,32.5
+ rot: 1.5707963267948966 rad
+ pos: 8.5,23.5
parent: 8364
- - uid: 9174
+ - uid: 5791
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,24.5
+ rot: 1.5707963267948966 rad
+ pos: 8.5,24.5
parent: 8364
- - uid: 9936
+ - uid: 7912
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,23.5
+ rot: 3.141592653589793 rad
+ pos: 22.5,32.5
parent: 8364
- - uid: 10056
+ - uid: 7913
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,23.5
+ rot: 3.141592653589793 rad
+ pos: 23.5,32.5
parent: 8364
- - uid: 23942
+ - uid: 7915
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,24.5
+ rot: 3.141592653589793 rad
+ pos: 24.5,32.5
parent: 8364
- proto: Stool
entities:
@@ -151259,53 +150884,78 @@ entities:
- type: Transform
pos: 72.5,-34.5
parent: 8364
-- proto: SuitStorageHOS
+- proto: SuitStorageEVAAlternate
entities:
- - uid: 25002
+ - uid: 19959
components:
- type: Transform
- pos: 16.5,39.5
+ pos: -14.5,2.5
parent: 8364
-- proto: SuitStorageSalv
- entities:
- - uid: 16536
+ - uid: 19968
components:
- type: Transform
- pos: -8.5,2.5
+ pos: -14.5,3.5
parent: 8364
-- proto: SuitStorageSec
+- proto: SuitStorageHOS
entities:
- - uid: 4163
+ - uid: 5288
components:
- type: Transform
- pos: 0.5,35.5
+ pos: 13.5,37.5
parent: 8364
- - uid: 4213
+- proto: SuitStorageSalv
+ entities:
+ - uid: 16536
components:
- type: Transform
- pos: -0.5,35.5
+ pos: -8.5,2.5
parent: 8364
- - uid: 8783
+- proto: SuitStorageSec
+ entities:
+ - uid: 3813
components:
- type: Transform
- pos: 3.5,35.5
+ pos: 0.5,33.5
parent: 8364
- - uid: 8825
+ - uid: 11965
components:
- type: Transform
- pos: 4.5,35.5
+ pos: 3.5,39.5
parent: 8364
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.14673
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 20856
- uid: 16531
components:
- type: Transform
pos: -8.5,3.5
parent: 8364
-- proto: SuitStorageWarden
- entities:
- - uid: 11999
+ - uid: 17151
components:
- type: Transform
- pos: -2.5,33.5
+ pos: 4.5,39.5
parent: 8364
- type: EntityStorage
air:
@@ -151325,6 +150975,20 @@ entities:
- 0
- 0
- 0
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 20857
+- proto: SuitStorageWarden
+ entities:
+ - uid: 11999
+ components:
+ - type: Transform
+ pos: -2.5,33.5
+ parent: 8364
- proto: SurveillanceCameraCommand
entities:
- uid: 296
@@ -151524,14 +151188,6 @@ entities:
- SurveillanceCameraEngineering
nameSet: True
id: Atmos Canister Storage
- - uid: 7004
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,-75.5
- parent: 8364
- - type: SurveillanceCamera
- id: TEG Cool Loop
- uid: 7216
components:
- type: Transform
@@ -151540,22 +151196,6 @@ entities:
parent: 8364
- type: SurveillanceCamera
id: Station Anchor
- - uid: 8599
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 20.5,-71.5
- parent: 8364
- - type: SurveillanceCamera
- id: TEG North
- - uid: 8602
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,-78.5
- parent: 8364
- - type: SurveillanceCamera
- id: TEG West
- uid: 14221
components:
- type: Transform
@@ -151588,22 +151228,6 @@ 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
@@ -153154,6 +152778,17 @@ entities:
- SurveillanceCameraSecurity
nameSet: True
id: Locker Room
+ - uid: 389
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,39.5
+ parent: 8364
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Armory
- uid: 394
components:
- type: Transform
@@ -153253,17 +152888,6 @@ entities:
- SurveillanceCameraSecurity
nameSet: True
id: Security
- - uid: 7659
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,24.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: Storage
- uid: 17694
components:
- type: Transform
@@ -153297,6 +152921,17 @@ entities:
- SurveillanceCameraSecurity
nameSet: True
id: Security External West
+ - uid: 20152
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -14.5,24.5
+ parent: 8364
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Evidence Room
- uid: 20860
components:
- type: Transform
@@ -153404,17 +153039,6 @@ entities:
- SurveillanceCameraSecurity
nameSet: True
id: Perma Entryway
- - uid: 28138
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,39.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: Armory
- proto: SurveillanceCameraService
entities:
- uid: 20939
@@ -153689,6 +153313,11 @@ entities:
- type: Transform
pos: -23.5,-38.5
parent: 8364
+ - uid: 3272
+ components:
+ - type: Transform
+ pos: 18.5,-17.5
+ parent: 8364
- uid: 3687
components:
- type: Transform
@@ -153880,6 +153509,11 @@ entities:
- type: Transform
pos: 12.5,19.5
parent: 8364
+ - uid: 8641
+ components:
+ - type: Transform
+ pos: -14.5,22.5
+ parent: 8364
- uid: 8785
components:
- type: Transform
@@ -155075,12 +154709,6 @@ entities:
- type: Transform
pos: -33.5,-18.5
parent: 8364
- - uid: 25743
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,41.5
- parent: 8364
- uid: 25826
components:
- type: Transform
@@ -155283,6 +154911,11 @@ entities:
- type: Transform
pos: 20.5,-33.5
parent: 8364
+ - uid: 2562
+ components:
+ - type: Transform
+ pos: 22.5,-18.5
+ parent: 8364
- uid: 3057
components:
- type: Transform
@@ -155393,21 +155026,11 @@ entities:
- type: Transform
pos: 18.5,-22.5
parent: 8364
- - uid: 18608
- components:
- - type: Transform
- pos: 21.5,-18.5
- parent: 8364
- uid: 18699
components:
- type: Transform
pos: 41.5,-57.5
parent: 8364
- - uid: 18895
- components:
- - type: Transform
- pos: 22.5,-18.5
- parent: 8364
- uid: 19076
components:
- type: Transform
@@ -156256,6 +155879,11 @@ 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
@@ -156266,12 +155894,6 @@ 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
@@ -156302,6 +155924,11 @@ entities:
- type: Transform
pos: 14.5,39.5
parent: 8364
+ - uid: 9216
+ components:
+ - type: Transform
+ pos: 16.5,41.5
+ parent: 8364
- uid: 9624
components:
- type: Transform
@@ -157617,6 +157244,17 @@ entities:
- Left: Forward
- Right: Reverse
- Middle: Off
+ - uid: 19935
+ components:
+ - type: Transform
+ pos: 4.5,36.5
+ parent: 8364
+ - type: DeviceLinkSource
+ linkedPorts:
+ 9182:
+ - Left: Open
+ - Right: Open
+ - Middle: Close
- uid: 20027
components:
- type: Transform
@@ -157787,17 +157425,17 @@ entities:
parent: 8364
- proto: VendingMachineChemDrobe
entities:
- - uid: 18614
+ - uid: 16331
components:
- type: Transform
pos: 21.5,-27.5
parent: 8364
- proto: VendingMachineChemicals
entities:
- - uid: 18921
+ - uid: 17152
components:
- type: Transform
- pos: 21.5,-21.5
+ pos: 22.5,-21.5
parent: 8364
- proto: VendingMachineCigs
entities:
@@ -157811,15 +157449,15 @@ entities:
- type: Transform
pos: 68.5,-47.5
parent: 8364
- - uid: 5690
+ - uid: 5594
components:
- type: Transform
- pos: 5.5,-12.5
+ pos: 16.5,39.5
parent: 8364
- - uid: 9463
+ - uid: 5690
components:
- type: Transform
- pos: 12.5,37.5
+ pos: 5.5,-12.5
parent: 8364
- uid: 12244
components:
@@ -158017,11 +157655,6 @@ entities:
- type: Transform
pos: 41.5,-31.5
parent: 8364
- - uid: 9391
- components:
- - type: Transform
- pos: -9.5,32.5
- parent: 8364
- uid: 16753
components:
- type: Transform
@@ -158081,11 +157714,6 @@ entities:
parent: 8364
- proto: VendingMachineSec
entities:
- - uid: 8777
- components:
- - type: Transform
- pos: 6.5,40.5
- parent: 8364
- uid: 9074
components:
- type: Transform
@@ -158098,15 +157726,15 @@ entities:
- type: Transform
pos: -60.5,5.5
parent: 8364
- - uid: 17677
+ - uid: 9142
components:
- type: Transform
- pos: -21.5,-31.5
+ pos: 6.5,39.5
parent: 8364
- - uid: 25726
+ - uid: 17677
components:
- type: Transform
- pos: 6.5,39.5
+ pos: -21.5,-31.5
parent: 8364
- proto: VendingMachineSeeds
entities:
@@ -164708,11 +164336,21 @@ entities:
- type: Transform
pos: -3.5,31.5
parent: 8364
+ - uid: 7659
+ components:
+ - type: Transform
+ pos: -1.5,34.5
+ parent: 8364
- uid: 7660
components:
- type: Transform
pos: -2.5,34.5
parent: 8364
+ - uid: 7661
+ components:
+ - type: Transform
+ pos: -3.5,33.5
+ parent: 8364
- uid: 7662
components:
- type: Transform
@@ -164768,11 +164406,31 @@ entities:
- type: Transform
pos: 4.5,40.5
parent: 8364
+ - uid: 7677
+ components:
+ - type: Transform
+ pos: 5.5,38.5
+ parent: 8364
+ - uid: 7678
+ components:
+ - type: Transform
+ pos: 5.5,39.5
+ parent: 8364
- uid: 7679
components:
- type: Transform
pos: 5.5,40.5
parent: 8364
+ - uid: 7680
+ components:
+ - type: Transform
+ pos: 5.5,41.5
+ parent: 8364
+ - uid: 7681
+ components:
+ - type: Transform
+ pos: 5.5,42.5
+ parent: 8364
- uid: 7682
components:
- type: Transform
@@ -164838,21 +164496,25 @@ entities:
- type: Transform
pos: 11.5,39.5
parent: 8364
+ - uid: 7706
+ components:
+ - type: Transform
+ pos: 6.5,42.5
+ parent: 8364
- uid: 7707
components:
- type: Transform
pos: 11.5,42.5
parent: 8364
- - uid: 7726
+ - uid: 7709
components:
- type: Transform
- pos: 10.5,42.5
+ pos: 8.5,42.5
parent: 8364
- - uid: 7734
+ - uid: 7726
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,38.5
+ pos: 10.5,42.5
parent: 8364
- uid: 7755
components:
@@ -165755,11 +165417,6 @@ entities:
- type: Transform
pos: -12.5,-6.5
parent: 8364
- - uid: 8573
- components:
- - type: Transform
- pos: 4.5,42.5
- parent: 8364
- uid: 8574
components:
- type: Transform
@@ -165778,11 +165435,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -5.5,12.5
parent: 8364
- - uid: 8628
- components:
- - type: Transform
- pos: -1.5,34.5
- parent: 8364
- uid: 8747
components:
- type: Transform
@@ -165793,29 +165445,11 @@ entities:
- type: Transform
pos: -20.5,52.5
parent: 8364
- - uid: 8784
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,34.5
- parent: 8364
- uid: 8817
components:
- type: Transform
pos: -18.5,25.5
parent: 8364
- - uid: 8853
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,42.5
- parent: 8364
- - uid: 8858
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,42.5
- parent: 8364
- uid: 8860
components:
- type: Transform
@@ -166016,12 +165650,6 @@ entities:
- type: Transform
pos: -2.5,52.5
parent: 8364
- - uid: 9086
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,42.5
- parent: 8364
- uid: 9114
components:
- type: Transform
@@ -166062,11 +165690,6 @@ entities:
- type: Transform
pos: 17.5,38.5
parent: 8364
- - uid: 9173
- components:
- - type: Transform
- pos: 3.5,42.5
- parent: 8364
- uid: 9206
components:
- type: Transform
@@ -166270,21 +165893,11 @@ entities:
- type: Transform
pos: 21.5,-70.5
parent: 8364
- - uid: 11379
- components:
- - type: Transform
- pos: -2.5,42.5
- parent: 8364
- uid: 11571
components:
- type: Transform
pos: 24.5,-70.5
parent: 8364
- - uid: 11592
- components:
- - type: Transform
- pos: -1.5,42.5
- parent: 8364
- uid: 11593
components:
- type: Transform
@@ -167356,12 +166969,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 26.5,-93.5
parent: 8364
- - uid: 25235
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,39.5
- parent: 8364
- uid: 25248
components:
- type: Transform
@@ -167513,11 +167120,6 @@ entities:
- type: Transform
pos: 38.5,-85.5
parent: 8364
- - uid: 26458
- components:
- - type: Transform
- pos: -3.5,29.5
- parent: 8364
- uid: 26583
components:
- type: Transform
@@ -173915,6 +173517,16 @@ entities:
- type: Transform
pos: -14.5,28.5
parent: 8364
+ - uid: 7797
+ components:
+ - type: Transform
+ pos: -12.5,25.5
+ parent: 8364
+ - uid: 7798
+ components:
+ - type: Transform
+ pos: -14.5,25.5
+ parent: 8364
- uid: 7803
components:
- type: Transform
@@ -174575,6 +174187,11 @@ entities:
- type: Transform
pos: 16.5,29.5
parent: 8364
+ - uid: 8853
+ components:
+ - type: Transform
+ pos: -3.5,29.5
+ parent: 8364
- uid: 8904
components:
- type: Transform
@@ -176529,31 +176146,85 @@ entities:
- 0
- proto: WardrobePrisonFilled
entities:
- - uid: 8760
+ - uid: 8546
components:
- type: Transform
- pos: -12.5,36.5
+ pos: -0.5,23.5
parent: 8364
- - uid: 8781
+ - 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: 8547
components:
- type: Transform
- pos: -4.5,24.5
+ pos: -4.5,23.5
parent: 8364
- - uid: 8782
+ - 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: 8760
components:
- type: Transform
- pos: -8.5,24.5
+ pos: -12.5,36.5
parent: 8364
- uid: 9168
components:
- type: Transform
pos: -11.5,36.5
parent: 8364
- - uid: 26136
+ - uid: 9257
components:
- type: Transform
- pos: -0.5,24.5
+ pos: -8.5,23.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: 26345
components:
- type: Transform
@@ -177131,6 +176802,11 @@ entities:
- type: Transform
pos: 4.5,33.5
parent: 8364
+ - uid: 9226
+ components:
+ - type: Transform
+ pos: 4.5,32.5
+ parent: 8364
- uid: 9343
components:
- type: Transform
@@ -177180,39 +176856,39 @@ entities:
- type: Transform
pos: -2.5,38.5
parent: 8364
-- proto: WeaponDisablerPractice
+- proto: WeaponDisabler
entities:
- - uid: 6611
+ - uid: 8819
components:
- type: Transform
- pos: 25.415077,32.67617
+ pos: 1.4993298,39.638985
parent: 8364
- - uid: 8385
+ - uid: 8820
components:
- type: Transform
- pos: 25.540077,32.58242
+ pos: 1.4993298,39.52961
parent: 8364
-- proto: WeaponLaserCarbine
- entities:
- - uid: 8570
+ - uid: 21784
components:
- type: Transform
- pos: 4.4934177,39.504333
+ pos: 16.460697,34.505676
parent: 8364
- - uid: 8571
+ - uid: 21786
components:
- type: Transform
- pos: 4.4934177,39.39322
+ pos: 4.4614744,33.066376
parent: 8364
- - uid: 9172
+- proto: WeaponDisablerPractice
+ entities:
+ - uid: 6611
components:
- type: Transform
- pos: 4.4934177,39.629333
+ pos: 25.415077,32.67617
parent: 8364
- - uid: 23537
+ - uid: 8385
components:
- type: Transform
- pos: 4.4934177,39.747383
+ pos: 25.540077,32.58242
parent: 8364
- proto: WeaponLaserCarbinePractice
entities:
@@ -177221,52 +176897,12 @@ entities:
- type: Transform
pos: 21.462696,34.988297
parent: 8364
-- proto: WeaponRifleLecter
- entities:
- - uid: 9375
- components:
- - type: Transform
- parent: 9373
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: WeaponShotgunKammerer
- entities:
- - uid: 8642
- components:
- - type: Transform
- pos: 3.5233402,39.390335
- parent: 8364
- - uid: 9208
- components:
- - type: Transform
- pos: 3.5233402,39.53617
- parent: 8364
- - uid: 10087
- components:
- - type: Transform
- pos: 3.5233402,39.668114
- parent: 8364
- - uid: 26258
- components:
- - type: Transform
- pos: 3.5474372,39.816833
- parent: 8364
-- proto: WeaponSubMachineGunDrozd
- entities:
- - uid: 9370
- components:
- - type: Transform
- parent: 9369
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- proto: WeaponSubMachineGunWt550
entities:
- uid: 536
components:
- type: Transform
- pos: 14.512794,39.540672
+ pos: 16.540148,41.51879
parent: 8364
- proto: WeedSpray
entities:
@@ -177490,14 +177126,6 @@ entities:
- type: Transform
pos: 2.5,22.5
parent: 8364
- - type: DeviceLinkSink
- invokeCounter: 2
- - type: DeviceLinkSource
- linkedPorts:
- 8605:
- - DoorStatus: Close
- 8604:
- - DoorStatus: Close
- uid: 8609
components:
- type: MetaData
@@ -177505,14 +177133,20 @@ entities:
- type: Transform
pos: 1.5,22.5
parent: 8364
- - type: DeviceLinkSink
- invokeCounter: 2
- - type: DeviceLinkSource
- linkedPorts:
- 8604:
- - DoorStatus: Close
- 8605:
- - DoorStatus: Close
+ - uid: 8610
+ components:
+ - type: MetaData
+ name: Brig Desk
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,23.5
+ parent: 8364
+ - uid: 8611
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,24.5
+ parent: 8364
- uid: 9242
components:
- type: MetaData
@@ -177520,12 +177154,6 @@ entities:
- type: Transform
pos: -0.5,29.5
parent: 8364
- - type: DeviceLinkSink
- invokeCounter: 1
- - type: DeviceLinkSource
- linkedPorts:
- 12663:
- - DoorStatus: Close
- uid: 9805
components:
- type: MetaData
@@ -177729,27 +177357,27 @@ entities:
parent: 8364
- proto: WindoorSecureArmoryLocked
entities:
+ - uid: 3898
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,37.5
+ parent: 8364
- uid: 12663
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -0.5,29.5
parent: 8364
- - type: DeviceLinkSink
- invokeCounter: 1
- - type: DeviceLinkSource
- linkedPorts:
- 9242:
- - DoorStatus: Close
- - uid: 25744
+ - uid: 20159
components:
- type: Transform
- pos: 4.5,39.5
+ pos: 2.5,34.5
parent: 8364
- - uid: 25747
+ - uid: 20174
components:
- type: Transform
- pos: 3.5,39.5
+ pos: 1.5,34.5
parent: 8364
- proto: WindoorSecureBrigLocked
entities:
@@ -177873,20 +177501,6 @@ entities:
rot: 3.141592653589793 rad
pos: 32.5,-19.5
parent: 8364
-- proto: WindoorSecurePlasma
- entities:
- - uid: 26255
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,37.5
- parent: 8364
- - type: DeviceLinkSink
- invokeCounter: 1
- - type: DeviceLinkSource
- linkedPorts:
- 9517:
- - DoorStatus: Close
- proto: WindoorSecureScienceLocked
entities:
- uid: 2317
@@ -177958,6 +177572,12 @@ entities:
- type: Transform
pos: 16.5,23.5
parent: 8364
+ - uid: 8436
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,26.5
+ parent: 8364
- uid: 8483
components:
- type: MetaData
@@ -177974,6 +177594,13 @@ entities:
rot: 3.141592653589793 rad
pos: 16.5,23.5
parent: 8364
+ - uid: 8569
+ components:
+ - type: MetaData
+ name: Holding Cell
+ - type: Transform
+ pos: 9.5,25.5
+ parent: 8364
- uid: 8604
components:
- type: MetaData
@@ -177982,14 +177609,6 @@ entities:
rot: 3.141592653589793 rad
pos: 1.5,22.5
parent: 8364
- - type: DeviceLinkSink
- invokeCounter: 2
- - type: DeviceLinkSource
- linkedPorts:
- 8609:
- - DoorStatus: Close
- 8608:
- - DoorStatus: Close
- uid: 8605
components:
- type: MetaData
@@ -177998,14 +177617,6 @@ entities:
rot: 3.141592653589793 rad
pos: 2.5,22.5
parent: 8364
- - type: DeviceLinkSink
- invokeCounter: 2
- - type: DeviceLinkSource
- linkedPorts:
- 8608:
- - DoorStatus: Close
- 8609:
- - DoorStatus: Close
- uid: 8624
components:
- type: MetaData
@@ -178032,6 +177643,19 @@ entities:
- type: Transform
pos: -4.5,40.5
parent: 8364
+ - uid: 9245
+ components:
+ - type: MetaData
+ name: Armory Desk
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,37.5
+ parent: 8364
+ - uid: 9391
+ components:
+ - type: Transform
+ pos: 23.5,37.5
+ parent: 8364
- uid: 12330
components:
- type: MetaData
@@ -178046,11 +177670,6 @@ entities:
rot: 3.141592653589793 rad
pos: -6.5,40.5
parent: 8364
- - uid: 22453
- components:
- - type: Transform
- pos: 18.5,27.5
- parent: 8364
- uid: 25738
components:
- type: Transform
@@ -178062,18 +177681,6 @@ entities:
- type: Transform
pos: 79.5,-4.5
parent: 8364
- - uid: 26253
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,24.5
- parent: 8364
- - uid: 26254
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,23.5
- parent: 8364
- proto: Window
entities:
- uid: 526
@@ -178874,6 +178481,12 @@ entities:
rot: 3.141592653589793 rad
pos: -54.5,16.5
parent: 8364
+ - uid: 1921
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,-21.5
+ parent: 8364
- uid: 2171
components:
- type: Transform
@@ -179045,11 +178658,15 @@ entities:
rot: -1.5707963267948966 rad
pos: -5.5,32.5
parent: 8364
- - uid: 8778
+ - uid: 9383
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,39.5
+ pos: 22.5,37.5
+ parent: 8364
+ - uid: 9390
+ components:
+ - type: Transform
+ pos: 24.5,37.5
parent: 8364
- uid: 9824
components:
@@ -179066,6 +178683,11 @@ entities:
- type: Transform
pos: 50.5,17.5
parent: 8364
+ - uid: 12030
+ components:
+ - type: Transform
+ pos: -14.5,3.5
+ parent: 8364
- uid: 12223
components:
- type: Transform
@@ -179212,10 +178834,11 @@ entities:
rot: 3.141592653589793 rad
pos: -18.5,-62.5
parent: 8364
- - uid: 18920
+ - uid: 18383
components:
- type: Transform
- pos: 22.5,-20.5
+ rot: 3.141592653589793 rad
+ pos: 22.5,-21.5
parent: 8364
- uid: 21305
components:
@@ -179345,11 +178968,6 @@ entities:
- type: Transform
pos: -2.5,38.5
parent: 8364
- - uid: 26260
- components:
- - type: Transform
- pos: 21.5,-20.5
- parent: 8364
- uid: 26856
components:
- type: Transform
diff --git a/Resources/Maps/convex.yml b/Resources/Maps/convex.yml
deleted file mode 100644
index 88c29d31cd5..00000000000
--- a/Resources/Maps/convex.yml
+++ /dev/null
@@ -1,241696 +0,0 @@
-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/fland.yml b/Resources/Maps/fland.yml
index b46b44b7040..3e413f0a2d7 100644
--- a/Resources/Maps/fland.yml
+++ b/Resources/Maps/fland.yml
@@ -128,7 +128,7 @@ entities:
version: 6
1,-1:
ind: 1,-1
- tiles: HwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAbAAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAADHwAAAAADHwAAAAACHwAAAAACHwAAAAACHwAAAAABHwAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAHwAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAABXQAAAAACXQAAAAADfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAABfgAAAAAAXQAAAAADXQAAAAABXQAAAAACfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAABHwAAAAABHwAAAAADfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAABXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAADfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAABHwAAAAADHwAAAAAAHwAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAADHwAAAAACHwAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAADHwAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAACHwAAAAABHwAAAAAANAAAAAACHwAAAAAAHwAAAAACHwAAAAADHwAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAA
+ tiles: HwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAbAAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAADHwAAAAADHwAAAAACHwAAAAACHwAAAAACHwAAAAABHwAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAHwAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAABXQAAAAACXQAAAAADfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAABfgAAAAAAXQAAAAADXQAAAAABXQAAAAACfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAABHwAAAAABHwAAAAADfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAABXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAADfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAABHwAAAAADHwAAAAAAHwAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAADHwAAAAACHwAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAADHwAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAACHwAAAAABHwAAAAAANAAAAAACHwAAAAAAHwAAAAACHwAAAAADHwAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAA
version: 6
-1,-2:
ind: -1,-2
@@ -17582,11 +17582,6 @@ entities:
- type: Transform
pos: -37.5,24.5
parent: 13329
- - uid: 9569
- components:
- - type: Transform
- pos: 28.5,-3.5
- parent: 13329
- uid: 10193
components:
- type: Transform
@@ -17617,6 +17612,11 @@ entities:
- type: Transform
pos: 29.5,-38.5
parent: 13329
+ - uid: 26338
+ components:
+ - type: Transform
+ pos: 28.5,-3.5
+ parent: 13329
- uid: 26339
components:
- type: Transform
@@ -19486,7 +19486,7 @@ entities:
pos: -15.5,-4.5
parent: 13329
- type: Door
- secondsUntilStateChange: -4273.221
+ secondsUntilStateChange: -3804.5127
state: Opening
- type: DeviceLinkSource
lastSignals:
@@ -155048,6 +155048,11 @@ entities:
- type: Transform
pos: 13.5,28.5
parent: 13329
+ - uid: 31762
+ components:
+ - type: Transform
+ pos: 31.5,-12.5
+ parent: 13329
- uid: 31819
components:
- type: Transform
@@ -157462,6 +157467,24 @@ entities:
rot: 1.5707963267948966 rad
pos: 36.5,-25.5
parent: 13329
+ - uid: 14373
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 26.5,-9.5
+ parent: 13329
+ - uid: 14374
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 26.5,-5.5
+ parent: 13329
+ - uid: 14375
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,-14.5
+ parent: 13329
- uid: 14377
components:
- type: Transform
@@ -183018,6 +183041,21 @@ entities:
- type: Transform
pos: 109.5,44.5
parent: 13329
+ - uid: 32363
+ components:
+ - type: Transform
+ pos: 27.5,-14.5
+ parent: 13329
+ - uid: 32364
+ components:
+ - type: Transform
+ pos: 26.5,-5.5
+ parent: 13329
+ - uid: 32366
+ components:
+ - type: Transform
+ pos: 26.5,-9.5
+ parent: 13329
- uid: 33241
components:
- type: Transform
@@ -204799,6 +204837,141 @@ entities:
- type: Transform
pos: 7.5,19.5
parent: 13329
+ - uid: 9565
+ components:
+ - type: Transform
+ pos: 26.5,-3.5
+ parent: 13329
+ - uid: 9566
+ components:
+ - type: Transform
+ pos: 26.5,-4.5
+ parent: 13329
+ - uid: 9567
+ components:
+ - type: Transform
+ pos: 27.5,-3.5
+ parent: 13329
+ - uid: 9568
+ components:
+ - type: Transform
+ pos: 29.5,-3.5
+ parent: 13329
+ - uid: 9569
+ components:
+ - type: Transform
+ pos: 30.5,-3.5
+ parent: 13329
+ - uid: 9570
+ components:
+ - type: Transform
+ pos: 31.5,-3.5
+ parent: 13329
+ - uid: 9571
+ components:
+ - type: Transform
+ pos: 31.5,-4.5
+ parent: 13329
+ - uid: 9572
+ components:
+ - type: Transform
+ pos: 26.5,-6.5
+ parent: 13329
+ - uid: 9573
+ components:
+ - type: Transform
+ pos: 26.5,-7.5
+ parent: 13329
+ - uid: 9574
+ components:
+ - type: Transform
+ pos: 26.5,-8.5
+ parent: 13329
+ - uid: 9575
+ components:
+ - type: Transform
+ pos: 26.5,-10.5
+ parent: 13329
+ - uid: 9576
+ components:
+ - type: Transform
+ pos: 26.5,-11.5
+ parent: 13329
+ - uid: 9577
+ components:
+ - type: Transform
+ pos: 26.5,-12.5
+ parent: 13329
+ - uid: 9578
+ components:
+ - type: Transform
+ pos: 26.5,-13.5
+ parent: 13329
+ - uid: 9579
+ components:
+ - type: Transform
+ pos: 26.5,-14.5
+ parent: 13329
+ - uid: 9580
+ components:
+ - type: Transform
+ pos: 28.5,-14.5
+ parent: 13329
+ - uid: 9581
+ components:
+ - type: Transform
+ pos: 30.5,-14.5
+ parent: 13329
+ - uid: 9582
+ components:
+ - type: Transform
+ pos: 30.5,-13.5
+ parent: 13329
+ - uid: 9583
+ components:
+ - type: Transform
+ pos: 30.5,-12.5
+ parent: 13329
+ - uid: 9584
+ components:
+ - type: Transform
+ pos: 30.5,-11.5
+ parent: 13329
+ - uid: 9585
+ components:
+ - type: Transform
+ pos: 31.5,-11.5
+ parent: 13329
+ - uid: 9586
+ components:
+ - type: Transform
+ pos: 31.5,-10.5
+ parent: 13329
+ - uid: 9587
+ components:
+ - type: Transform
+ pos: 31.5,-9.5
+ parent: 13329
+ - uid: 9588
+ components:
+ - type: Transform
+ pos: 31.5,-8.5
+ parent: 13329
+ - uid: 9589
+ components:
+ - type: Transform
+ pos: 31.5,-7.5
+ parent: 13329
+ - uid: 9590
+ components:
+ - type: Transform
+ pos: 31.5,-6.5
+ parent: 13329
+ - uid: 9591
+ components:
+ - type: Transform
+ pos: 31.5,-5.5
+ parent: 13329
- uid: 9614
components:
- type: Transform
@@ -218613,136 +218786,6 @@ entities:
- type: Transform
pos: 22.5,-3.5
parent: 13329
- - uid: 9565
- components:
- - type: Transform
- pos: 26.5,-4.5
- parent: 13329
- - uid: 9566
- components:
- - type: Transform
- pos: 31.5,-11.5
- parent: 13329
- - uid: 9567
- components:
- - type: Transform
- pos: 26.5,-6.5
- parent: 13329
- - uid: 9568
- components:
- - type: Transform
- pos: 27.5,-3.5
- parent: 13329
- - uid: 9570
- components:
- - type: Transform
- pos: 27.5,-14.5
- parent: 13329
- - uid: 9571
- components:
- - type: Transform
- pos: 26.5,-7.5
- parent: 13329
- - uid: 9572
- components:
- - type: Transform
- pos: 26.5,-5.5
- parent: 13329
- - uid: 9573
- components:
- - type: Transform
- pos: 26.5,-8.5
- parent: 13329
- - uid: 9574
- components:
- - type: Transform
- pos: 31.5,-14.5
- parent: 13329
- - uid: 9575
- components:
- - type: Transform
- pos: 26.5,-9.5
- parent: 13329
- - uid: 9576
- components:
- - type: Transform
- pos: 26.5,-3.5
- parent: 13329
- - uid: 9577
- components:
- - type: Transform
- pos: 26.5,-10.5
- parent: 13329
- - uid: 9578
- components:
- - type: Transform
- pos: 26.5,-11.5
- parent: 13329
- - uid: 9579
- components:
- - type: Transform
- pos: 26.5,-12.5
- parent: 13329
- - uid: 9580
- components:
- - type: Transform
- pos: 26.5,-13.5
- parent: 13329
- - uid: 9581
- components:
- - type: Transform
- pos: 26.5,-14.5
- parent: 13329
- - uid: 9582
- components:
- - type: Transform
- pos: 28.5,-14.5
- parent: 13329
- - uid: 9583
- components:
- - type: Transform
- pos: 30.5,-14.5
- parent: 13329
- - uid: 9584
- components:
- - type: Transform
- pos: 31.5,-12.5
- parent: 13329
- - uid: 9585
- components:
- - type: Transform
- pos: 31.5,-10.5
- parent: 13329
- - uid: 9586
- components:
- - type: Transform
- pos: 31.5,-9.5
- parent: 13329
- - uid: 9587
- components:
- - type: Transform
- pos: 31.5,-8.5
- parent: 13329
- - uid: 9588
- components:
- - type: Transform
- pos: 31.5,-6.5
- parent: 13329
- - uid: 9589
- components:
- - type: Transform
- pos: 31.5,-5.5
- parent: 13329
- - uid: 9590
- components:
- - type: Transform
- pos: 31.5,-7.5
- parent: 13329
- - uid: 9591
- components:
- - type: Transform
- pos: 31.5,-4.5
- parent: 13329
- uid: 9592
components:
- type: Transform
@@ -219288,21 +219331,6 @@ entities:
- type: Transform
pos: 41.5,-36.5
parent: 13329
- - uid: 14373
- components:
- - type: Transform
- pos: 31.5,-3.5
- parent: 13329
- - uid: 14374
- components:
- - type: Transform
- pos: 30.5,-3.5
- parent: 13329
- - uid: 14375
- components:
- - type: Transform
- pos: 29.5,-3.5
- parent: 13329
- uid: 14454
components:
- type: Transform
diff --git a/Resources/Maps/loop.yml b/Resources/Maps/loop.yml
index 493a5dfc672..39ee85fc583 100644
--- a/Resources/Maps/loop.yml
+++ b/Resources/Maps/loop.yml
@@ -105,11 +105,11 @@ entities:
version: 6
-2,1:
ind: -2,1
- tiles: HgAAAAAAHgAAAAADHgAAAAADHgAAAAABHgAAAAACHQAAAAAAHgAAAAABHgAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAABHgAAAAADHgAAAAACHQAAAAAAHgAAAAAAHgAAAAADHgAAAAADHgAAAAADHgAAAAABHgAAAAACHQAAAAAAHgAAAAAAHgAAAAACHgAAAAACHgAAAAAAHgAAAAABHgAAAAABHgAAAAACHgAAAAABHQAAAAAAHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAADHgAAAAACHgAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAACHgAAAAACHgAAAAADHgAAAAADHgAAAAABHgAAAAAAHgAAAAACHgAAAAACHgAAAAACHgAAAAAAHgAAAAABHgAAAAACHgAAAAABHgAAAAACHgAAAAADHgAAAAAAHgAAAAADBQAAAAAABQAAAAAABQAAAAAAHgAAAAACHgAAAAACHgAAAAADHgAAAAADHgAAAAADHgAAAAADHgAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAAAHgAAAAADHgAAAAADHgAAAAAAHgAAAAAAHgAAAAADHgAAAAAAHgAAAAABHgAAAAAAHgAAAAADHgAAAAAAHQAAAAAAHQAAAAAAAgAAAAACAgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAADAgAAAAADAgAAAAADAgAAAAABAgAAAAAAAgAAAAABAgAAAAABAgAAAAADAgAAAAACAgAAAAADAgAAAAAAAgAAAAADHQAAAAAAAgAAAAADAgAAAAAAAgAAAAADAgAAAAABAgAAAAADAgAAAAACAgAAAAABAgAAAAABAgAAAAADAgAAAAABAgAAAAACAgAAAAABAgAAAAAAAgAAAAACAgAAAAABHQAAAAAAAgAAAAADAgAAAAACAgAAAAAAAgAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAACAgAAAAADAgAAAAADAgAAAAADAgAAAAACAgAAAAADAgAAAAACAgAAAAADHQAAAAAAAgAAAAACAgAAAAADHQAAAAAAHQAAAAAAAgAAAAAAAgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAACAgAAAAACAgAAAAAAAgAAAAAAAgAAAAACAgAAAAACAgAAAAADAgAAAAAAAgAAAAAAAgAAAAADAgAAAAABAgAAAAAAAgAAAAABAgAAAAACAgAAAAADHQAAAAAAAgAAAAACAgAAAAACAgAAAAABAgAAAAAAAgAAAAABAgAAAAACAgAAAAAAAgAAAAACAgAAAAAAAgAAAAABAgAAAAADAgAAAAACAgAAAAACAgAAAAACAgAAAAAAHQAAAAAAAgAAAAABAgAAAAADAgAAAAADAgAAAAABAgAAAAADAgAAAAAAAgAAAAABAgAAAAACAgAAAAABAgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAAgAAAAABAgAAAAAAAgAAAAACAgAAAAAAAgAAAAABAgAAAAADAgAAAAADAgAAAAADAgAAAAABAgAAAAAAAgAAAAABAgAAAAAAAgAAAAACAgAAAAABAgAAAAAAAgAAAAADAgAAAAACAgAAAAAAAgAAAAABAgAAAAADAgAAAAADAgAAAAABAgAAAAAAAgAAAAADAgAAAAACAgAAAAADAgAAAAADAgAAAAABAgAAAAADHQAAAAAA
+ tiles: HgAAAAAAHgAAAAADHgAAAAADHgAAAAABHgAAAAACHQAAAAAAHgAAAAABHgAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAABHgAAAAADHgAAAAACHQAAAAAAHgAAAAAAHgAAAAADHgAAAAADHgAAAAADHgAAAAABHgAAAAACHQAAAAAAHgAAAAAAHgAAAAACHgAAAAACHgAAAAAAHgAAAAABHgAAAAABHgAAAAACHgAAAAABHQAAAAAAHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAADHgAAAAACHgAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAACHgAAAAACHgAAAAADHgAAAAADHgAAAAABHgAAAAAAHgAAAAACHgAAAAACHgAAAAACHgAAAAAAHgAAAAABHgAAAAACHgAAAAABHgAAAAACHgAAAAADHgAAAAAAHgAAAAADBQAAAAAABQAAAAAABQAAAAAAHgAAAAACHgAAAAACHgAAAAADHgAAAAADHgAAAAADHgAAAAADHgAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAAAHgAAAAADHgAAAAADHgAAAAAAHgAAAAAAHgAAAAADHgAAAAAAHgAAAAABHgAAAAAAHgAAAAADHgAAAAAAHQAAAAAAHQAAAAAAAgAAAAACAgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAADAgAAAAADAgAAAAADAgAAAAABAgAAAAAAAgAAAAABAgAAAAABAgAAAAADAgAAAAACAgAAAAADAgAAAAAAAgAAAAADHQAAAAAAAgAAAAADAgAAAAAAAgAAAAADAgAAAAABAgAAAAADAgAAAAACAgAAAAABAgAAAAABAgAAAAADAgAAAAABAgAAAAACAgAAAAABAgAAAAAAAgAAAAACAgAAAAABHQAAAAAAAgAAAAADAgAAAAACAgAAAAAAAgAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAACAgAAAAADAgAAAAADAgAAAAADAgAAAAACAgAAAAADAgAAAAACAgAAAAADHQAAAAAAAgAAAAACAgAAAAADHQAAAAAAHQAAAAAAAgAAAAAAAgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAACAgAAAAACAgAAAAAAAgAAAAAAAgAAAAACAgAAAAACAgAAAAADAgAAAAAAAgAAAAAAAgAAAAADAgAAAAABAgAAAAAAAgAAAAABAgAAAAACAgAAAAADHQAAAAAAAgAAAAACAgAAAAACAgAAAAABAgAAAAAAAgAAAAABAgAAAAACAgAAAAAAAgAAAAACAgAAAAAAAgAAAAABAgAAAAADAgAAAAACAgAAAAACAgAAAAACAgAAAAAAJwAAAAABAgAAAAABAgAAAAADAgAAAAADAgAAAAABAgAAAAADAgAAAAAAAgAAAAABAgAAAAACAgAAAAABAgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAAgAAAAABAgAAAAAAAgAAAAACAgAAAAAAAgAAAAABAgAAAAADAgAAAAADAgAAAAADAgAAAAABAgAAAAAAAgAAAAABAgAAAAAAAgAAAAACAgAAAAABAgAAAAAAAgAAAAADAgAAAAACAgAAAAAAAgAAAAABAgAAAAADAgAAAAADAgAAAAABAgAAAAAAAgAAAAADAgAAAAACAgAAAAADAgAAAAADAgAAAAABAgAAAAADHQAAAAAA
version: 6
-3,1:
ind: -3,1
- tiles: HQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHgAAAAABHgAAAAACHgAAAAAAHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAADHgAAAAACHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHgAAAAADHgAAAAAAHgAAAAACHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHgAAAAAAHgAAAAACHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHQAAAAAAHQAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAACHgAAAAADHgAAAAACHgAAAAAAHgAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAAAHgAAAAABHgAAAAADHgAAAAAAHgAAAAABHgAAAAADHgAAAAAAHgAAAAABHgAAAAACHgAAAAACHgAAAAACHgAAAAADHgAAAAADHgAAAAACHgAAAAADHgAAAAADBQAAAAAABQAAAAAABQAAAAAAHgAAAAAAHgAAAAADHQAAAAAAHQAAAAAAHgAAAAACHgAAAAAAHgAAAAABHgAAAAACHgAAAAADHgAAAAADHgAAAAAAHgAAAAACHgAAAAACHgAAAAACHgAAAAACHgAAAAABHgAAAAAAHgAAAAACJQAAAAADHQAAAAAAHgAAAAAAHgAAAAABHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAADHQAAAAAAHgAAAAACHgAAAAADHgAAAAADHQAAAAAAAgAAAAAAAgAAAAABAgAAAAACAgAAAAADAgAAAAABAgAAAAACAgAAAAACAgAAAAAAAgAAAAAAAgAAAAAAJQAAAAABHQAAAAAAHgAAAAABBQAAAAAAHgAAAAADAgAAAAADAgAAAAADAgAAAAAAAgAAAAACAgAAAAADAgAAAAADAgAAAAABAgAAAAAAAgAAAAACAgAAAAADAgAAAAAAHQAAAAAAHQAAAAAAHgAAAAABBQAAAAAAHgAAAAADAgAAAAABAgAAAAAAAgAAAAABAgAAAAABAgAAAAAAAgAAAAADAgAAAAADAgAAAAAAAgAAAAABAgAAAAABAgAAAAADJQAAAAABHQAAAAAAHgAAAAAABQAAAAAAHgAAAAAAHQAAAAAAAgAAAAABAgAAAAABAgAAAAAAAgAAAAABAgAAAAADAgAAAAADAgAAAAADAgAAAAADAgAAAAABAgAAAAAAJQAAAAADHQAAAAAAHgAAAAACHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJwAAAAADJwAAAAACHQAAAAAAAgAAAAACAgAAAAAAJwAAAAADJQAAAAAAHQAAAAAAJQAAAAADHQAAAAAAHgAAAAACHgAAAAAAHgAAAAADHQAAAAAAAgAAAAADAgAAAAADAgAAAAAAAgAAAAADAgAAAAADAgAAAAAAAgAAAAADJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAAgAAAAADAgAAAAABAgAAAAAAAgAAAAAAAgAAAAABAgAAAAABAgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAKQAAAAAAHgAAAAAAHgAAAAABBQAAAAAAHgAAAAACHQAAAAAAAgAAAAAAAgAAAAADAgAAAAAAAgAAAAACAgAAAAACAgAAAAACAgAAAAABJQAAAAAAJQAAAAAAJQAAAAAAKQAAAAAAHQAAAAAAHgAAAAADBQAAAAAAHgAAAAADHQAAAAAAAgAAAAAAAgAAAAADAgAAAAAAAgAAAAAAAgAAAAABAgAAAAABAgAAAAADJQAAAAAAJQAAAAAAJQAAAAAA
+ tiles: HQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHgAAAAABHgAAAAACHgAAAAAAHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAADHgAAAAACHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHgAAAAADHgAAAAAAHgAAAAACHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHgAAAAAAHgAAAAACHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHQAAAAAAHQAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAACHgAAAAADHgAAAAACHgAAAAAAHgAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAAAHgAAAAABHgAAAAADHgAAAAAAHgAAAAABHgAAAAADHgAAAAAAHgAAAAABHgAAAAACHgAAAAACHgAAAAACHgAAAAADHgAAAAADHgAAAAACHgAAAAADHgAAAAADBQAAAAAABQAAAAAABQAAAAAAHgAAAAAAHgAAAAADHQAAAAAAHQAAAAAAHgAAAAACHgAAAAAAHgAAAAABHgAAAAACHgAAAAADHgAAAAADHgAAAAAAHgAAAAACHgAAAAACHgAAAAACHgAAAAACHgAAAAABHgAAAAAAHgAAAAACJQAAAAADHQAAAAAAHgAAAAAAHgAAAAABHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAADHQAAAAAAHgAAAAACHgAAAAADHgAAAAADHQAAAAAAAgAAAAAAAgAAAAABAgAAAAACAgAAAAADAgAAAAABAgAAAAACAgAAAAACAgAAAAAAAgAAAAAAAgAAAAAAJQAAAAABHQAAAAAAHgAAAAABBQAAAAAAHgAAAAADAgAAAAADAgAAAAADAgAAAAAAAgAAAAACAgAAAAADAgAAAAADAgAAAAABAgAAAAAAAgAAAAACAgAAAAADAgAAAAAAHQAAAAAAHQAAAAAAHgAAAAABBQAAAAAAHgAAAAADAgAAAAABAgAAAAAAAgAAAAABAgAAAAABAgAAAAAAAgAAAAADAgAAAAADAgAAAAAAAgAAAAABAgAAAAABAgAAAAADJQAAAAABHQAAAAAAHgAAAAAABQAAAAAAHgAAAAAAHQAAAAAAAgAAAAABAgAAAAABAgAAAAAAAgAAAAABAgAAAAADAgAAAAADAgAAAAADAgAAAAADAgAAAAABAgAAAAAAJQAAAAADHQAAAAAAHgAAAAACHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJwAAAAADJwAAAAACHQAAAAAAAgAAAAACHQAAAAAAJwAAAAADJwAAAAACHQAAAAAAJQAAAAADHQAAAAAAHgAAAAACHgAAAAAAHgAAAAADHQAAAAAAAgAAAAADAgAAAAADAgAAAAAAAgAAAAADAgAAAAADAgAAAAAAAgAAAAADAgAAAAABAgAAAAACAgAAAAADHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAAgAAAAADAgAAAAABAgAAAAAAAgAAAAAAAgAAAAABAgAAAAABAgAAAAAAAgAAAAAAAgAAAAACAgAAAAADKQAAAAAAHgAAAAAAHgAAAAABBQAAAAAAHgAAAAACHQAAAAAAAgAAAAAAAgAAAAADAgAAAAAAAgAAAAACAgAAAAACAgAAAAACAgAAAAABAgAAAAAAAgAAAAACAgAAAAAAKQAAAAAAHQAAAAAAHgAAAAADBQAAAAAAHgAAAAADHQAAAAAAAgAAAAAAAgAAAAADAgAAAAAAAgAAAAAAAgAAAAABAgAAAAABAgAAAAADAgAAAAACAgAAAAADAgAAAAAB
version: 6
-3,0:
ind: -3,0
@@ -153,7 +153,7 @@ entities:
version: 6
-3,2:
ind: -3,2
- tiles: KQAAAAAAHQAAAAAAHgAAAAABBQAAAAAAHgAAAAABHQAAAAAAAgAAAAAAAgAAAAADAgAAAAAAAgAAAAAAAgAAAAACAgAAAAACAgAAAAADJQAAAAAAJQAAAAAAJQAAAAAAKQAAAAAAHQAAAAAAHgAAAAACHgAAAAADHgAAAAABHQAAAAAAAgAAAAACAgAAAAADAgAAAAACAgAAAAADAgAAAAABAgAAAAABAgAAAAADJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAABHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAABHgAAAAABHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAABHgAAAAACHgAAAAABHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHgAAAAABHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHQAAAAAAHgAAAAADHgAAAAAAHgAAAAACHQAAAAAAJQAAAAABJQAAAAACHQAAAAAAJQAAAAACJQAAAAAAJQAAAAADJQAAAAACJQAAAAABHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHgAAAAACBQAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAABJQAAAAACJQAAAAAAJQAAAAAAJQAAAAACJQAAAAADJQAAAAABHQAAAAAAHQAAAAAAHgAAAAADHgAAAAAAHgAAAAACBQAAAAAAHgAAAAABHQAAAAAAJQAAAAACJQAAAAAAHQAAAAAAJQAAAAABJQAAAAAAJQAAAAABJQAAAAACJQAAAAADHQAAAAAAHQAAAAAAHgAAAAACHQAAAAAAHgAAAAADBQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAADHQAAAAAAHQAAAAAALAAAAAABHgAAAAADHQAAAAAAHgAAAAACHgAAAAAAHgAAAAACHQAAAAAALAAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAACHgAAAAAAHQAAAAAAHgAAAAABHgAAAAABHgAAAAACHQAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAADLAAAAAABLAAAAAABLAAAAAAALAAAAAACLAAAAAACLAAAAAABHQAAAAAAHQAAAAAAHgAAAAADHgAAAAAAHgAAAAACHQAAAAAALAAAAAABLAAAAAABLAAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAACLAAAAAADLAAAAAACLAAAAAAAMAAAAAACHQAAAAAAHgAAAAABHgAAAAAAHgAAAAABHQAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAADLAAAAAAALAAAAAADMAAAAAADMAAAAAABHgAAAAADBQAAAAAAHgAAAAABHQAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAACLAAAAAADLAAAAAABLAAAAAAAHQAAAAAALAAAAAACLAAAAAACMAAAAAABMAAAAAAAHgAAAAADBQAAAAAAHgAAAAACHQAAAAAAHQAAAAAALAAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAABLAAAAAAC
+ tiles: KQAAAAAAHQAAAAAAHgAAAAABBQAAAAAAHgAAAAABHQAAAAAAAgAAAAAAAgAAAAADAgAAAAAAAgAAAAAAAgAAAAACAgAAAAACAgAAAAADAgAAAAABAgAAAAAAAgAAAAADKQAAAAAAHQAAAAAAHgAAAAACHgAAAAADHgAAAAABHQAAAAAAAgAAAAACAgAAAAADAgAAAAACAgAAAAADAgAAAAABAgAAAAABAgAAAAADAgAAAAACAgAAAAABAgAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAABHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAABHgAAAAABHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAABHgAAAAACHgAAAAABHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHgAAAAABHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHQAAAAAAHgAAAAADHgAAAAAAHgAAAAACHQAAAAAAJQAAAAABJQAAAAACHQAAAAAAJQAAAAACJQAAAAAAJQAAAAADJQAAAAACJQAAAAABHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHgAAAAACBQAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAABJQAAAAACJQAAAAAAJQAAAAAAJQAAAAACJQAAAAADJQAAAAABHQAAAAAAHQAAAAAAHgAAAAADHgAAAAAAHgAAAAACBQAAAAAAHgAAAAABHQAAAAAAJQAAAAACJQAAAAAAHQAAAAAAJQAAAAABJQAAAAAAJQAAAAABJQAAAAACJQAAAAADHQAAAAAAHQAAAAAAHgAAAAACHQAAAAAAHgAAAAADBQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAADHQAAAAAAHQAAAAAALAAAAAABHgAAAAADHQAAAAAAHgAAAAACHgAAAAAAHgAAAAACHQAAAAAALAAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAACHgAAAAAAHQAAAAAAHgAAAAABHgAAAAABHgAAAAACHQAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAADLAAAAAABLAAAAAABLAAAAAAALAAAAAACLAAAAAACLAAAAAABHQAAAAAAHQAAAAAAHgAAAAADHgAAAAAAHgAAAAACHQAAAAAALAAAAAABLAAAAAABLAAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAACLAAAAAADLAAAAAACLAAAAAAAMAAAAAACHQAAAAAAHgAAAAABHgAAAAAAHgAAAAABHQAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAADLAAAAAAALAAAAAADMAAAAAADMAAAAAABHgAAAAADBQAAAAAAHgAAAAABHQAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAACLAAAAAADLAAAAAABLAAAAAAAHQAAAAAALAAAAAACLAAAAAACMAAAAAABMAAAAAAAHgAAAAADBQAAAAAAHgAAAAACHQAAAAAAHQAAAAAALAAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAABLAAAAAAC
version: 6
-5,1:
ind: -5,1
@@ -476,6 +476,7 @@ entities:
2049: -45,55
2050: -44,55
2051: -46,71
+ 2089: -44,31
2098: -46,46
2207: -3,65
2208: -3,64
@@ -777,6 +778,7 @@ entities:
id: BrickLineOverlayE
decals:
989: -44,25
+ 991: -44,27
- node:
color: '#D381C996'
id: BrickLineOverlayE
@@ -820,6 +822,12 @@ entities:
1664: -19,9
1665: -19,10
1666: -19,11
+ - node:
+ color: '#FA750096'
+ id: BrickLineOverlayE
+ decals:
+ 1012: -44,29
+ 1016: -44,33
- node:
color: '#334E6DC8'
id: BrickLineOverlayN
@@ -1134,12 +1142,6 @@ entities:
1676: -17,10
1677: -17,11
1678: -17,12
- - node:
- color: '#FA750096'
- id: BrickTileWhiteBox
- decals:
- 2333: -40,30
- 2334: -40,31
- node:
color: '#43990996'
id: BrickTileWhiteCornerNe
@@ -1155,7 +1157,6 @@ entities:
785: -13,25
806: -11,33
1622: -23,34
- 2296: -33,26
- node:
color: '#9FED5896'
id: BrickTileWhiteCornerNe
@@ -1191,7 +1192,8 @@ entities:
color: '#FA750096'
id: BrickTileWhiteCornerNe
decals:
- 2313: -37,33
+ 627: -33,26
+ 638: -33,33
- node:
color: '#43990996'
id: BrickTileWhiteCornerNw
@@ -1239,8 +1241,8 @@ entities:
color: '#FA750096'
id: BrickTileWhiteCornerNw
decals:
- 2311: -42,26
- 2312: -42,33
+ 628: -42,26
+ 637: -42,33
- node:
color: '#43990996'
id: BrickTileWhiteCornerSe
@@ -1287,7 +1289,7 @@ entities:
color: '#FA750096'
id: BrickTileWhiteCornerSe
decals:
- 2316: -37,28
+ 640: -33,28
- node:
color: '#43990996'
id: BrickTileWhiteCornerSw
@@ -1330,7 +1332,7 @@ entities:
color: '#FA750096'
id: BrickTileWhiteCornerSw
decals:
- 2315: -42,28
+ 639: -42,28
- node:
color: '#DE3A3A96'
id: BrickTileWhiteEndE
@@ -1379,6 +1381,7 @@ entities:
518: -13,41
519: -13,42
618: -33,24
+ 619: -33,25
686: -29,24
735: -22,29
741: -18,31
@@ -1388,7 +1391,6 @@ entities:
803: -11,32
2074: -44,23
2075: -44,24
- 2297: -33,25
- node:
color: '#9FED5896'
id: BrickTileWhiteLineE
@@ -1468,14 +1470,11 @@ entities:
color: '#FA750096'
id: BrickTileWhiteLineE
decals:
- 2325: -37,32
- 2326: -37,31
- 2327: -37,30
- 2328: -37,29
- 2335: -44,26
- 2337: -44,28
- 2339: -44,30
- 2341: -44,32
+ 666: -33,29
+ 667: -33,30
+ 668: -33,31
+ 669: -33,32
+ 2088: -44,31
- node:
color: '#43990996'
id: BrickTileWhiteLineN
@@ -1532,9 +1531,6 @@ entities:
2083: -23,21
2084: -21,21
2085: -19,21
- 2298: -34,26
- 2299: -35,26
- 2300: -36,26
- node:
color: '#9FED5896'
id: BrickTileWhiteLineN
@@ -1612,15 +1608,22 @@ entities:
color: '#FA750096'
id: BrickTileWhiteLineN
decals:
- 2306: -37,26
- 2307: -38,26
- 2308: -39,26
- 2309: -40,26
- 2310: -41,26
- 2321: -41,33
- 2322: -40,33
- 2323: -39,33
- 2324: -38,33
+ 629: -41,26
+ 630: -40,26
+ 631: -39,26
+ 632: -38,26
+ 633: -37,26
+ 634: -36,26
+ 635: -35,26
+ 636: -34,26
+ 653: -41,33
+ 655: -40,33
+ 656: -39,33
+ 657: -38,33
+ 658: -37,33
+ 659: -36,33
+ 660: -35,33
+ 661: -34,33
- node:
color: '#43990996'
id: BrickTileWhiteLineS
@@ -1771,10 +1774,14 @@ entities:
color: '#FA750096'
id: BrickTileWhiteLineS
decals:
- 2317: -41,28
- 2318: -39,28
- 2319: -40,28
- 2320: -38,28
+ 641: -41,28
+ 642: -40,28
+ 643: -39,28
+ 644: -38,28
+ 647: -36,28
+ 648: -37,28
+ 649: -35,28
+ 650: -34,28
- node:
color: '#43990996'
id: BrickTileWhiteLineW
@@ -1794,11 +1801,6 @@ entities:
783: -18,24
804: -16,31
805: -16,32
- 2301: -31,28
- 2302: -31,29
- 2303: -31,30
- 2304: -31,31
- 2305: -31,32
- node:
color: '#9FED5896'
id: BrickTileWhiteLineW
@@ -1870,10 +1872,15 @@ entities:
color: '#FA750096'
id: BrickTileWhiteLineW
decals:
- 2329: -42,29
- 2330: -42,30
- 2331: -42,31
- 2332: -42,32
+ 662: -42,32
+ 663: -42,31
+ 664: -42,30
+ 665: -42,29
+ 670: -31,28
+ 671: -31,30
+ 672: -31,29
+ 673: -31,31
+ 674: -31,32
- node:
color: '#FFFFFFFF'
id: Busha1
@@ -1997,6 +2004,7 @@ entities:
1917: -40,20
1918: -46,34
1919: -45,34
+ 1920: -44,34
1921: -46,37
1922: -45,37
1923: -44,37
@@ -2136,6 +2144,16 @@ entities:
574: -52,41
575: -51,41
576: -50,41
+ - node:
+ color: '#FA750096'
+ id: FullTileOverlayGreyscale
+ decals:
+ 675: -39,30
+ 676: -38,30
+ 677: -37,30
+ 678: -35,29
+ 679: -35,30
+ 680: -35,31
- node:
color: '#FFFFFFFF'
id: Grassa2
@@ -2473,6 +2491,8 @@ entities:
id: HalfTileOverlayGreyscale90
decals:
2072: -44,22
+ 2073: -44,26
+ 2076: -44,28
- node:
color: '#9FED5896'
id: HalfTileOverlayGreyscale90
@@ -2504,10 +2524,8 @@ entities:
color: '#FA750096'
id: HalfTileOverlayGreyscale90
decals:
- 2343: -44,27
- 2344: -44,29
- 2345: -44,31
- 2346: -44,33
+ 2077: -44,30
+ 2078: -44,32
- node:
color: '#FED83DFF'
id: HalfTileOverlayGreyscale90
@@ -3009,11 +3027,6 @@ entities:
decals:
1896: -28,41
1897: -25,41
- - node:
- color: '#FFFFFFFF'
- id: ampersand
- decals:
- 2284: -45.4301,24.93363
- node:
cleanable: True
color: '#FF0000FF'
@@ -3617,8 +3630,7 @@ entities:
-11,6:
0: 7679
-11,7:
- 0: 64925
- 6: 64
+ 0: 64989
-11,3:
0: 65311
-11,8:
@@ -3976,7 +3988,7 @@ entities:
0: 65532
-13,12:
0: 4351
- 7: 57344
+ 6: 57344
-12,9:
0: 56783
-12,10:
@@ -3985,7 +3997,7 @@ entities:
0: 65500
-12,12:
0: 60639
- 7: 4096
+ 6: 4096
-11,9:
0: 56605
-11,10:
@@ -4011,8 +4023,7 @@ entities:
-9,12:
0: 36319
-8,9:
- 0: 37151
- 8: 16384
+ 0: 53535
-8,10:
0: 7645
-8,11:
@@ -4038,11 +4049,9 @@ entities:
-19,7:
2: 3618
-18,4:
- 0: 64303
- 8: 1024
+ 0: 65327
-18,5:
- 0: 63476
- 6: 2048
+ 0: 65524
-18,6:
0: 4082
-18,7:
@@ -4173,8 +4182,7 @@ entities:
-8,12:
0: 21845
-7,9:
- 0: 57359
- 6: 4096
+ 0: 61455
-7,10:
0: 8191
-7,11:
@@ -4213,10 +4221,10 @@ entities:
0: 143
2: 57856
-12,13:
- 7: 1
+ 6: 1
0: 65484
-13,13:
- 7: 14
+ 6: 14
0: 65280
-12,14:
0: 65535
@@ -5071,21 +5079,6 @@ entities:
- 0
- 0
- 0
- - volume: 2500
- temperature: 293.14975
- moles:
- - 20.078888
- - 75.53487
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- volume: 2500
temperature: 235
moles:
@@ -5101,21 +5094,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
chunkSize: 4
- type: GasTileOverlay
- type: RadiationGridResistance
@@ -6293,10 +6271,15 @@ entities:
- 11510
- 10825
- 10826
+ - 2214
+ - 10827
+ - 10828
+ - 6173
- 11544
- 11511
- 11543
- 12356
+ - 12783
- uid: 11532
components:
- type: Transform
@@ -6307,6 +6290,9 @@ entities:
devices:
- 507
- 955
+ - 2214
+ - 10827
+ - 10828
- 10826
- 2975
- 3009
@@ -6848,12 +6834,14 @@ entities:
- 1151
- 1140
- 480
+ - 6173
- 6178
- 11516
- 11515
- 11514
- 11530
- 12383
+ - 12783
- uid: 17247
components:
- type: Transform
@@ -7086,13 +7074,20 @@ entities:
- type: Transform
pos: -63.5,11.5
parent: 2
+- proto: AirlockChemistryGlassLocked
+ entities:
+ - uid: 13927
+ components:
+ - type: Transform
+ pos: -36.5,27.5
+ parent: 2
- proto: AirlockChemistryLocked
entities:
- - uid: 6720
+ - uid: 4859
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -36.5,27.5
+ pos: -31.5,31.5
parent: 2
- proto: AirlockChiefEngineerGlassLocked
entities:
@@ -7204,7 +7199,7 @@ entities:
pos: -30.5,13.5
parent: 2
- type: Door
- secondsUntilStateChange: -48828.195
+ secondsUntilStateChange: -46417.484
state: Opening
- type: DeviceLinkSource
lastSignals:
@@ -8384,11 +8379,10 @@ entities:
parent: 2
- proto: AirlockMaintChemLocked
entities:
- - uid: 6580
+ - uid: 13931
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -37.5,34.5
+ pos: -33.5,34.5
parent: 2
- proto: AirlockMaintEngiLocked
entities:
@@ -8604,12 +8598,6 @@ entities:
parent: 2
- proto: AirlockMaintMedLocked
entities:
- - uid: 2060
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -33.5,34.5
- parent: 2
- uid: 3636
components:
- type: Transform
@@ -8694,24 +8682,12 @@ entities:
parent: 2
- proto: AirlockMedicalLocked
entities:
- - uid: 4256
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -33.5,27.5
- parent: 2
- uid: 5047
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -21.5,26.5
parent: 2
- - uid: 6716
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -31.5,31.5
- parent: 2
- proto: AirlockMedicalMorgueLocked
entities:
- uid: 5936
@@ -10111,11 +10087,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -0.5,26.5
parent: 2
- - uid: 4247
- components:
- - type: Transform
- pos: -38.5,34.5
- parent: 2
- uid: 4972
components:
- type: Transform
@@ -11628,9 +11599,10 @@ entities:
parent: 2
- proto: BlockGameArcade
entities:
- - uid: 6618
+ - uid: 5097
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: -4.5,50.5
parent: 2
- proto: Bloodpack
@@ -11679,10 +11651,10 @@ entities:
parent: 2
- proto: BookChemicalCompendium
entities:
- - uid: 9091
+ - uid: 15199
components:
- type: Transform
- pos: -36.426804,31.247963
+ pos: -34.52333,30.327538
parent: 2
- uid: 17238
components:
@@ -12000,10 +11972,8 @@ entities:
- uid: 4246
components:
- type: Transform
- parent: 17718
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
+ pos: -37.880226,30.640572
+ parent: 2
- proto: BoxBodyBag
entities:
- uid: 5167
@@ -12069,11 +12039,6 @@ entities:
- type: Transform
pos: -37.641014,40.39001
parent: 2
- - uid: 15658
- components:
- - type: Transform
- pos: -34.502663,32.658154
- parent: 2
- proto: BoxFolderBlack
entities:
- uid: 3967
@@ -12240,13 +12205,6 @@ entities:
- type: Transform
pos: -5.3227916,30.564062
parent: 2
-- proto: BoxPillCanister
- entities:
- - uid: 17703
- components:
- - type: Transform
- pos: -33.393288,32.64253
- parent: 2
- proto: BoxShotgunFlare
entities:
- uid: 3447
@@ -18638,6 +18596,11 @@ entities:
- type: Transform
pos: -33.5,32.5
parent: 2
+ - uid: 9076
+ components:
+ - type: Transform
+ pos: -35.5,32.5
+ parent: 2
- uid: 9077
components:
- type: Transform
@@ -18708,6 +18671,11 @@ entities:
- type: Transform
pos: -38.5,28.5
parent: 2
+ - uid: 9091
+ components:
+ - type: Transform
+ pos: -35.5,28.5
+ parent: 2
- uid: 9092
components:
- type: Transform
@@ -24163,16 +24131,6 @@ entities:
- type: Transform
pos: -17.5,-7.5
parent: 2
- - uid: 17711
- components:
- - type: Transform
- pos: -38.5,33.5
- parent: 2
- - uid: 17712
- components:
- - type: Transform
- pos: -38.5,34.5
- parent: 2
- proto: CableApcStack
entities:
- uid: 5976
@@ -30500,11 +30458,6 @@ entities:
- type: Transform
pos: -13.5,15.5
parent: 2
- - uid: 1413
- components:
- - type: Transform
- pos: -34.5,35.5
- parent: 2
- uid: 1429
components:
- type: Transform
@@ -30915,11 +30868,6 @@ entities:
- type: Transform
pos: -71.5,15.5
parent: 2
- - uid: 4244
- components:
- - type: Transform
- pos: -37.5,35.5
- parent: 2
- uid: 4572
components:
- type: Transform
@@ -33440,11 +33388,6 @@ entities:
- type: Transform
pos: 28.5,42.5
parent: 2
- - uid: 9834
- components:
- - type: Transform
- pos: -36.5,35.5
- parent: 2
- uid: 9899
components:
- type: Transform
@@ -33680,11 +33623,6 @@ entities:
- type: Transform
pos: -63.5,17.5
parent: 2
- - uid: 13927
- components:
- - type: Transform
- pos: -35.5,35.5
- parent: 2
- uid: 13934
components:
- type: Transform
@@ -33750,21 +33688,11 @@ entities:
- type: Transform
pos: -3.5,35.5
parent: 2
- - uid: 15199
- components:
- - type: Transform
- pos: -38.5,35.5
- parent: 2
- uid: 15235
components:
- type: Transform
pos: -50.5,50.5
parent: 2
- - uid: 15265
- components:
- - type: Transform
- pos: -38.5,34.5
- parent: 2
- uid: 15351
components:
- type: Transform
@@ -34690,36 +34618,6 @@ entities:
- type: Transform
pos: -3.5,48.5
parent: 2
- - uid: 17704
- components:
- - type: Transform
- pos: -34.5,30.5
- parent: 2
- - uid: 17705
- components:
- - type: Transform
- pos: -34.5,29.5
- parent: 2
- - uid: 17706
- components:
- - type: Transform
- pos: -33.5,30.5
- parent: 2
- - uid: 17707
- components:
- - type: Transform
- pos: -32.5,29.5
- parent: 2
- - uid: 17708
- components:
- - type: Transform
- pos: -32.5,30.5
- parent: 2
- - uid: 17709
- components:
- - type: Transform
- pos: -33.5,29.5
- parent: 2
- proto: CarpetChapel
entities:
- uid: 10789
@@ -39207,11 +39105,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -19.563465,72.61863
parent: 2
- - uid: 4245
- components:
- - type: Transform
- pos: -33.955788,33.54878
- parent: 2
- uid: 4920
components:
- type: Transform
@@ -39322,21 +39215,25 @@ entities:
parent: 2
- proto: ChairOfficeLight
entities:
- - uid: 4243
+ - uid: 4745
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.383293,32.597347
+ pos: -41.450005,66.61128
parent: 2
- - uid: 4254
+ - uid: 4747
components:
- type: Transform
- pos: -40.523834,29.63628
+ pos: -39.33168,28.640572
parent: 2
- - uid: 4745
+ - uid: 4748
components:
- type: Transform
- pos: -41.450005,66.61128
+ pos: -36.45098,32.69692
+ parent: 2
+ - uid: 4749
+ components:
+ - type: Transform
+ pos: -41.51348,32.48598
parent: 2
- uid: 5570
components:
@@ -39349,12 +39246,6 @@ entities:
rot: 3.141592653589793 rad
pos: -3.381362,32.744434
parent: 2
- - uid: 9076
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -37.36523,33.172977
- parent: 2
- uid: 9720
components:
- type: Transform
@@ -39693,20 +39584,20 @@ entities:
parent: 2
- proto: ChemDispenser
entities:
- - uid: 4230
+ - uid: 4229
components:
- type: Transform
- pos: -36.5,32.5
+ pos: -40.5,33.5
parent: 2
- - uid: 4252
+ - uid: 4231
components:
- type: Transform
- pos: -40.5,33.5
+ pos: -41.5,29.5
parent: 2
- - uid: 6733
+ - uid: 4235
components:
- type: Transform
- pos: -40.5,28.5
+ pos: -36.5,33.5
parent: 2
- proto: ChemDispenserEmpty
entities:
@@ -39739,15 +39630,15 @@ entities:
parent: 2
- proto: ChemistryHotplate
entities:
- - uid: 4232
+ - uid: 4241
components:
- type: Transform
- pos: -36.5,30.5
+ pos: -34.5,31.5
parent: 2
- - uid: 4269
+ - uid: 4245
components:
- type: Transform
- pos: -39.5,30.5
+ pos: -38.5,30.5
parent: 2
- uid: 17239
components:
@@ -39756,20 +39647,20 @@ entities:
parent: 2
- proto: ChemMaster
entities:
- - uid: 3693
+ - uid: 1126
components:
- type: Transform
- pos: -36.5,33.5
+ pos: -41.5,28.5
parent: 2
- - uid: 5193
+ - uid: 4226
components:
- type: Transform
- pos: -41.5,33.5
+ pos: -37.5,33.5
parent: 2
- - uid: 12785
+ - uid: 4227
components:
- type: Transform
- pos: -41.5,28.5
+ pos: -41.5,33.5
parent: 2
- proto: ChemMasterMachineCircuitboard
entities:
@@ -39831,6 +39722,12 @@ entities:
parent: 2
- proto: CigarCase
entities:
+ - uid: 4945
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -40.453514,38.42126
+ parent: 2
- uid: 5417
components:
- type: Transform
@@ -39856,11 +39753,6 @@ entities:
parent: 2
- proto: CigarGoldCase
entities:
- - uid: 4946
- components:
- - type: Transform
- pos: -40.49395,38.58963
- parent: 2
- uid: 6138
components:
- type: Transform
@@ -40670,24 +40562,6 @@ entities:
- type: Transform
pos: -68.57034,22.27171
parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14673
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- uid: 17174
components:
- type: Transform
@@ -40909,6 +40783,16 @@ entities:
- type: Transform
pos: -40.52346,17.380651
parent: 2
+ - uid: 5997
+ components:
+ - type: Transform
+ pos: 10.514629,65.73175
+ parent: 2
+ - uid: 6580
+ components:
+ - type: Transform
+ pos: -32.45865,38.48124
+ parent: 2
- proto: ClothingHandsGlovesColorYellowBudget
entities:
- uid: 5531
@@ -41169,13 +41053,6 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
-- proto: ClothingMaskBlushingMime
- entities:
- - uid: 4701
- components:
- - type: Transform
- pos: -55.759308,65.51617
- parent: 2
- proto: ClothingMaskBreath
entities:
- uid: 5894
@@ -41251,6 +41128,13 @@ entities:
- type: Transform
pos: -55.415558,65.73492
parent: 2
+- proto: ClothingMaskSexyMime
+ entities:
+ - uid: 4701
+ components:
+ - type: Transform
+ pos: -55.759308,65.51617
+ parent: 2
- proto: ClothingNeckBling
entities:
- uid: 6137
@@ -41601,12 +41485,6 @@ entities:
- type: Transform
pos: -15.5,65.5
parent: 2
- - uid: 4859
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.5,30.5
- parent: 2
- uid: 4942
components:
- type: Transform
@@ -43101,8 +42979,8 @@ entities:
immutable: False
temperature: 293.14673
moles:
- - 1.8856695
- - 7.0937095
+ - 1.7459903
+ - 6.568249
- 0
- 0
- 0
@@ -43119,11 +42997,11 @@ entities:
showEnts: False
occludes: True
ents:
- - 17176
- - 17177
- - 17178
- - 17179
- 17180
+ - 17179
+ - 17178
+ - 17177
+ - 17176
paper_label: !type:ContainerSlot
showEnts: False
occludes: True
@@ -43397,19 +43275,13 @@ entities:
parent: 2
- proto: CurtainsWhite
entities:
- - uid: 4234
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -31.5,30.5
- parent: 2
- uid: 6746
components:
- type: Transform
pos: -9.5,51.5
parent: 2
- type: Door
- secondsUntilStateChange: -296583.75
+ secondsUntilStateChange: -294173.03
state: Opening
- uid: 6747
components:
@@ -43417,7 +43289,7 @@ entities:
pos: -8.5,51.5
parent: 2
- type: Door
- secondsUntilStateChange: -296584.47
+ secondsUntilStateChange: -294173.75
state: Opening
- uid: 6749
components:
@@ -43425,7 +43297,7 @@ entities:
pos: -6.5,51.5
parent: 2
- type: Door
- secondsUntilStateChange: -296583.03
+ secondsUntilStateChange: -294172.3
state: Opening
- uid: 6750
components:
@@ -43433,14 +43305,8 @@ entities:
pos: -5.5,51.5
parent: 2
- type: Door
- secondsUntilStateChange: -296582.4
+ secondsUntilStateChange: -294171.7
state: Opening
- - uid: 9721
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -31.5,29.5
- parent: 2
- proto: CyberPen
entities:
- uid: 12866
@@ -43809,14 +43675,6 @@ entities:
rot: 3.141592653589793 rad
pos: -8.5,48.5
parent: 2
-- proto: DefaultStationBeaconPsychology
- entities:
- - uid: 4258
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -33.5,30.5
- parent: 2
- proto: DefaultStationBeaconQMRoom
entities:
- uid: 5460
@@ -44113,6 +43971,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -11.5,20.5
parent: 2
+ - uid: 1413
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -33.5,32.5
+ parent: 2
- uid: 2241
components:
- type: Transform
@@ -44770,6 +44634,12 @@ entities:
rot: 1.5707963267948966 rad
pos: -21.5,36.5
parent: 2
+ - uid: 2060
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -33.5,33.5
+ parent: 2
- uid: 2144
components:
- type: Transform
@@ -47887,6 +47757,12 @@ entities:
rot: 1.5707963267948966 rad
pos: -59.5,43.5
parent: 2
+ - uid: 9014
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -32.5,32.5
+ parent: 2
- uid: 9685
components:
- type: Transform
@@ -48148,6 +48024,11 @@ entities:
- type: Transform
pos: 3.5,9.5
parent: 2
+ - uid: 9721
+ components:
+ - type: Transform
+ pos: -32.5,32.5
+ parent: 2
- uid: 9722
components:
- type: Transform
@@ -48279,10 +48160,10 @@ entities:
- type: Transform
pos: -33.5,64.5
parent: 2
- - uid: 4229
+ - uid: 4232
components:
- type: Transform
- pos: -40.5,31.5
+ pos: -41.5,30.5
parent: 2
- uid: 4902
components:
@@ -49169,6 +49050,13 @@ entities:
parent: 2
- type: FaxMachine
name: Library
+ - uid: 6618
+ components:
+ - type: Transform
+ pos: -12.5,70.5
+ parent: 2
+ - type: FaxMachine
+ name: Captain's Office
- uid: 6677
components:
- type: Transform
@@ -49218,13 +49106,6 @@ entities:
parent: 2
- type: FaxMachine
name: CE's Office
-- proto: FaxMachineCaptain
- entities:
- - uid: 5098
- components:
- - type: Transform
- pos: -12.5,70.5
- parent: 2
- proto: filingCabinetDrawerRandom
entities:
- uid: 3640
@@ -49269,11 +49150,6 @@ entities:
- type: Transform
pos: 18.5,35.5
parent: 2
- - uid: 15657
- components:
- - type: Transform
- pos: -34.5,33.5
- parent: 2
- proto: FireAxeCabinetFilled
entities:
- uid: 1049
@@ -49321,6 +49197,16 @@ entities:
- type: Transform
pos: -42.5,10.5
parent: 2
+ - uid: 12783
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -31.5,29.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 11531
+ - 17106
- proto: FirelockGlass
entities:
- uid: 28
@@ -49849,6 +49735,16 @@ entities:
deviceLists:
- 11427
- 15346
+ - uid: 2214
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -36.5,27.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 11532
+ - 11531
- uid: 2307
components:
- type: Transform
@@ -50526,6 +50422,16 @@ entities:
deviceLists:
- 13611
- 15383
+ - uid: 6173
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -31.5,31.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 11531
+ - 17106
- uid: 6174
components:
- type: Transform
@@ -51814,6 +51720,24 @@ entities:
deviceLists:
- 11532
- 11531
+ - uid: 10827
+ components:
+ - type: Transform
+ pos: -34.5,27.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 11532
+ - 11531
+ - uid: 10828
+ components:
+ - type: Transform
+ pos: -33.5,27.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 11532
+ - 11531
- uid: 10978
components:
- type: Transform
@@ -52130,11 +52054,6 @@ entities:
- type: Transform
pos: -32.5,64.5
parent: 2
- - uid: 6732
- components:
- - type: Transform
- pos: -34.5,28.5
- parent: 2
- uid: 14475
components:
- type: Transform
@@ -52192,6 +52111,19 @@ entities:
ents:
- 6717
- type: ActionsContainer
+- proto: FlippoEngravedLighter
+ entities:
+ - uid: 4946
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -40.31289,38.79626
+ parent: 2
+ - uid: 5418
+ components:
+ - type: Transform
+ pos: -2.1807637,39.543873
+ parent: 2
- proto: Floodlight
entities:
- uid: 16953
@@ -52209,19 +52141,10 @@ entities:
parent: 2
- proto: FloorDrain
entities:
- - uid: 4231
+ - uid: 4269
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -40.5,30.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 4235
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -37.5,30.5
+ pos: -37.5,31.5
parent: 2
- type: Fixtures
fixtures: {}
@@ -70457,6 +70380,21 @@ entities:
- type: Transform
pos: -37.5,27.5
parent: 2
+ - uid: 4233
+ components:
+ - type: Transform
+ pos: -32.5,27.5
+ parent: 2
+ - uid: 4249
+ components:
+ - type: Transform
+ pos: -35.5,27.5
+ parent: 2
+ - uid: 4250
+ components:
+ - type: Transform
+ pos: -31.5,28.5
+ parent: 2
- uid: 4263
components:
- type: Transform
@@ -70709,12 +70647,6 @@ entities:
- type: Transform
pos: -39.5,50.5
parent: 2
- - uid: 4679
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -31.5,29.5
- parent: 2
- uid: 4737
components:
- type: Transform
@@ -72042,12 +71974,6 @@ entities:
- type: Transform
pos: -36.5,61.5
parent: 2
- - uid: 12779
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -31.5,30.5
- parent: 2
- uid: 12825
components:
- type: Transform
@@ -74969,43 +74895,6 @@ entities:
- type: Transform
pos: -27.5,39.5
parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14673
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 4255
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
-- proto: Gyroscope
- entities:
- - uid: 9862
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,52.5
- parent: 2
- proto: Handcuffs
entities:
- uid: 6126
@@ -75287,10 +75176,10 @@ entities:
parent: 2
- proto: HolopadMedicalChemistry
entities:
- - uid: 14738
+ - uid: 16823
components:
- type: Transform
- pos: -38.5,29.5
+ pos: -35.5,31.5
parent: 2
- proto: HolopadMedicalFront
entities:
@@ -75892,10 +75781,10 @@ entities:
parent: 2
- proto: KitchenReagentGrinder
entities:
- - uid: 4267
+ - uid: 4251
components:
- type: Transform
- pos: -39.5,31.5
+ pos: -36.5,30.5
parent: 2
- uid: 4633
components:
@@ -76058,11 +75947,6 @@ entities:
- type: Transform
pos: -63.448486,-5.236081
parent: 2
- - uid: 17720
- components:
- - type: Transform
- pos: -7.3975163,48.7118
- parent: 2
- proto: LauncherCreamPie
entities:
- uid: 4712
@@ -76457,42 +76341,13 @@ entities:
- uid: 4236
components:
- type: Transform
- pos: -38.5,30.5
+ pos: -35.5,33.5
parent: 2
- - uid: 17718
+ - uid: 4247
components:
- type: Transform
- pos: -41.5,29.5
+ pos: -34.5,33.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:
- - 4246
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- proto: LockerChiefEngineerFilled
entities:
- uid: 2921
@@ -77002,10 +76857,17 @@ entities:
parent: 2
- proto: MachineCentrifuge
entities:
- - uid: 5957
+ - uid: 4268
components:
- type: Transform
- pos: -36.5,31.5
+ pos: -34.5,29.5
+ parent: 2
+- proto: MachineElectrolysisUnit
+ entities:
+ - uid: 4258
+ components:
+ - type: Transform
+ pos: -34.5,30.5
parent: 2
- proto: MachineFrame
entities:
@@ -78297,6 +78159,13 @@ entities:
- type: Transform
pos: 2.5573368,6.61458
parent: 2
+- proto: PenCentcom
+ entities:
+ - uid: 7125
+ components:
+ - type: Transform
+ pos: -16.047073,68.645805
+ parent: 2
- proto: PersonalAI
entities:
- uid: 4307
@@ -78958,10 +78827,11 @@ entities:
parent: 2
- proto: PosterContrabandAmbrosiaVulgaris
entities:
- - uid: 4239
+ - uid: 14738
components:
- type: Transform
- pos: -40.5,34.5
+ rot: -1.5707963267948966 rad
+ pos: -37.5,34.5
parent: 2
- proto: PosterContrabandAtmosiaDeclarationIndependence
entities:
@@ -81031,33 +80901,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -2.5,1.5
parent: 2
- - uid: 17710
- components:
- - type: Transform
- pos: -32.5,33.5
- parent: 2
- - uid: 17713
- components:
- - type: Transform
- pos: -41.5,33.5
- parent: 2
- - uid: 17714
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,28.5
- parent: 2
- - uid: 17716
- components:
- - type: Transform
- pos: -24.5,34.5
- parent: 2
- - uid: 17717
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,28.5
- parent: 2
- proto: PoweredlightEmpty
entities:
- uid: 8250
@@ -81467,6 +81310,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -5.5,38.5
parent: 2
+ - uid: 13159
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -36.5,48.5
+ parent: 2
- uid: 13160
components:
- type: Transform
@@ -81927,20 +81776,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -12.5,74.5
parent: 2
- - uid: 17715
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -35.5,70.5
- parent: 2
-- proto: PoweredWarmSmallLight
- entities:
- - uid: 4747
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -36.5,48.5
- parent: 2
- proto: PrefilledSyringe
entities:
- uid: 17244
@@ -81955,13 +81790,6 @@ entities:
- type: Transform
pos: 10.5,37.5
parent: 2
-- proto: PsychBed
- entities:
- - uid: 4253
- components:
- - type: Transform
- pos: -32.5,30.5
- parent: 2
- proto: Rack
entities:
- uid: 117
@@ -84632,6 +84460,16 @@ entities:
- type: Transform
pos: -38.5,24.5
parent: 2
+ - uid: 15657
+ components:
+ - type: Transform
+ pos: -33.5,30.5
+ parent: 2
+ - uid: 15658
+ components:
+ - type: Transform
+ pos: -40.5,32.5
+ parent: 2
- uid: 15659
components:
- type: Transform
@@ -85650,6 +85488,21 @@ entities:
rot: -1.5707963267948966 rad
pos: -3.5,12.5
parent: 2
+ - uid: 4254
+ components:
+ - type: Transform
+ pos: -35.5,27.5
+ parent: 2
+ - uid: 4255
+ components:
+ - type: Transform
+ pos: -32.5,27.5
+ parent: 2
+ - uid: 4256
+ components:
+ - type: Transform
+ pos: -31.5,28.5
+ parent: 2
- uid: 4399
components:
- type: Transform
@@ -87963,7 +87816,7 @@ entities:
- uid: 4264
components:
- type: Transform
- pos: -39.583054,31.169838
+ pos: -37.059914,30.546822
parent: 2
- proto: SheetPlasteel
entities:
@@ -88546,6 +88399,12 @@ entities:
- type: Transform
pos: -40.5,27.5
parent: 2
+ - uid: 12779
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -31.5,30.5
+ parent: 2
- proto: SignDirectionalBridge
entities:
- uid: 14994
@@ -89411,20 +89270,6 @@ entities:
rot: 3.141592653589793 rad
pos: -10.5,51.5
parent: 2
-- proto: SignPsychology
- entities:
- - uid: 7125
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,27.5
- parent: 2
- - uid: 9829
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -31.5,33.5
- parent: 2
- proto: SignRadiation
entities:
- uid: 232
@@ -89676,11 +89521,15 @@ entities:
parent: 2
- proto: SinkWide
entities:
- - uid: 4250
+ - uid: 4266
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -40.5,30.5
+ pos: -38.5,33.5
+ parent: 2
+ - uid: 4267
+ components:
+ - type: Transform
+ pos: -38.5,33.5
parent: 2
- uid: 4575
components:
@@ -89810,11 +89659,6 @@ entities:
- type: Transform
pos: -53.899773,72.64173
parent: 2
- - uid: 16823
- components:
- - type: Transform
- pos: -33.940163,32.533154
- parent: 2
- proto: SmokingPipeFilledCannabis
entities:
- uid: 17178
@@ -91572,11 +91416,12 @@ entities:
- type: Transform
pos: -8.43362,72.6124
parent: 2
-- proto: SpaceVillainArcade
+- proto: SpaceVillainArcadeFilled
entities:
- - uid: 5097
+ - uid: 5098
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: -3.5,50.5
parent: 2
- proto: SpawnMechRipley
@@ -91822,11 +91667,11 @@ entities:
parent: 2
- proto: SpawnMobWalter
entities:
- - uid: 4749
+ - uid: 4240
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -40.5,31.5
+ rot: -1.5707963267948966 rad
+ pos: -41.5,30.5
parent: 2
- proto: SpawnPointAtmos
entities:
@@ -91943,20 +91788,20 @@ entities:
parent: 2
- proto: SpawnPointChemist
entities:
- - uid: 5997
+ - uid: 15263
components:
- type: Transform
- pos: -39.5,29.5
+ pos: -38.5,29.5
parent: 2
- - uid: 15263
+ - uid: 15264
components:
- type: Transform
pos: -37.5,29.5
parent: 2
- - uid: 15264
+ - uid: 15265
components:
- type: Transform
- pos: -38.5,29.5
+ pos: -36.5,29.5
parent: 2
- proto: SpawnPointChiefEngineer
entities:
@@ -92145,13 +91990,6 @@ entities:
- type: Transform
pos: -43.5,15.5
parent: 2
-- proto: SpawnPointPsychologist
- entities:
- - uid: 1126
- components:
- - type: Transform
- pos: -33.5,31.5
- parent: 2
- proto: SpawnPointQuartermaster
entities:
- uid: 1910
@@ -93080,8 +92918,8 @@ entities:
immutable: False
temperature: 293.14673
moles:
- - 1.8856695
- - 7.0937095
+ - 1.7459903
+ - 6.568249
- 0
- 0
- 0
@@ -93818,38 +93656,27 @@ entities:
id: Entrance hall
- proto: SurveillanceCameraMedical
entities:
- - uid: 6173
+ - uid: 13791
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -41.5,33.5
+ pos: -37.5,23.5
parent: 2
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraMedical
nameSet: True
- id: chemistry
- - uid: 10828
+ id: Waiting room
+ - uid: 13792
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -34.5,33.5
- parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraMedical
- nameSet: True
- id: Psychology
- - uid: 13791
- components:
- - type: Transform
- pos: -37.5,23.5
+ pos: -35.5,33.5
parent: 2
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraMedical
nameSet: True
- id: Waiting room
+ id: Chemestry
- uid: 13793
components:
- type: Transform
@@ -95544,28 +95371,56 @@ entities:
- type: Transform
pos: -42.5,31.5
parent: 2
+ - uid: 4216
+ components:
+ - type: Transform
+ pos: -34.5,27.5
+ parent: 2
- uid: 4221
components:
- type: Transform
pos: -39.5,27.5
parent: 2
- - uid: 4233
+ - uid: 4228
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -39.5,30.5
+ pos: -33.5,27.5
parent: 2
- - uid: 4266
+ - uid: 4230
components:
- type: Transform
- rot: 3.141592653589793 rad
+ rot: -1.5707963267948966 rad
pos: -36.5,30.5
parent: 2
- - uid: 4268
+ - uid: 4234
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -39.5,31.5
+ rot: -1.5707963267948966 rad
+ pos: -34.5,31.5
+ parent: 2
+ - uid: 4238
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -34.5,30.5
+ parent: 2
+ - uid: 4239
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -38.5,30.5
+ parent: 2
+ - uid: 4243
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -37.5,30.5
+ parent: 2
+ - uid: 4244
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -34.5,29.5
parent: 2
- uid: 4336
components:
@@ -95614,12 +95469,6 @@ entities:
rot: 3.141592653589793 rad
pos: -28.5,88.5
parent: 2
- - uid: 5418
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -36.5,31.5
- parent: 2
- uid: 5735
components:
- type: Transform
@@ -95716,6 +95565,12 @@ entities:
- type: Transform
pos: -49.5,49.5
parent: 2
+ - uid: 12754
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -31.5,29.5
+ parent: 2
- uid: 12796
components:
- type: Transform
@@ -95973,11 +95828,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -60.5,45.5
parent: 2
- - uid: 4249
- components:
- - type: Transform
- pos: -33.5,32.5
- parent: 2
- uid: 4387
components:
- type: Transform
@@ -96412,11 +96262,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -10.5,61.5
parent: 2
- - uid: 13931
- components:
- - type: Transform
- pos: -34.5,32.5
- parent: 2
- uid: 14014
components:
- type: Transform
@@ -96784,6 +96629,11 @@ entities:
- type: Transform
pos: 8.5,52.5
parent: 2
+ - uid: 5957
+ components:
+ - type: Transform
+ pos: 9.5,52.5
+ parent: 2
- proto: TintedWindow
entities:
- uid: 2691
@@ -96859,11 +96709,6 @@ entities:
- type: Transform
pos: -2.4271321,27.577143
parent: 2
- - uid: 4945
- components:
- - type: Transform
- pos: -32.50167,38.605255
- parent: 2
- uid: 5526
components:
- type: Transform
@@ -96983,7 +96828,7 @@ entities:
- uid: 5794
components:
- type: Transform
- pos: -36.770554,31.294838
+ pos: -37.451065,30.925117
parent: 2
- proto: ToyFigurineChiefEngineer
entities:
@@ -97493,17 +97338,22 @@ entities:
parent: 2
- proto: VendingMachineChemDrobe
entities:
- - uid: 4237
+ - uid: 9829
components:
- type: Transform
- pos: -36.5,29.5
+ pos: -32.5,33.5
+ parent: 2
+ - uid: 9862
+ components:
+ - type: Transform
+ pos: -32.5,33.5
parent: 2
- proto: VendingMachineChemicals
entities:
- - uid: 9014
+ - uid: 6720
components:
- type: Transform
- pos: -38.5,31.5
+ pos: -32.5,28.5
parent: 2
- proto: VendingMachineCigs
entities:
@@ -97551,13 +97401,6 @@ entities:
- type: Transform
pos: -33.5,50.5
parent: 2
-- proto: VendingMachineCondiments
- entities:
- - uid: 17719
- components:
- - type: Transform
- pos: -51.5,49.5
- parent: 2
- proto: VendingMachineCuraDrobe
entities:
- uid: 10007
@@ -101400,6 +101243,11 @@ entities:
- type: Transform
pos: -39.5,34.5
parent: 2
+ - uid: 3693
+ components:
+ - type: Transform
+ pos: -37.5,34.5
+ parent: 2
- uid: 3699
components:
- type: Transform
@@ -101541,12 +101389,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -13.5,72.5
parent: 2
- - uid: 4216
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,31.5
- parent: 2
- uid: 4218
components:
- type: Transform
@@ -101557,23 +101399,20 @@ entities:
- type: Transform
pos: -41.5,27.5
parent: 2
- - uid: 4226
+ - uid: 4237
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,32.5
+ pos: -31.5,32.5
parent: 2
- - uid: 4227
+ - uid: 4252
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,27.5
+ pos: -31.5,33.5
parent: 2
- - uid: 4228
+ - uid: 4253
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,29.5
+ pos: -31.5,27.5
parent: 2
- uid: 4261
components:
@@ -102040,6 +101879,11 @@ entities:
- type: Transform
pos: -42.5,28.5
parent: 2
+ - uid: 4679
+ components:
+ - type: Transform
+ pos: -34.5,34.5
+ parent: 2
- uid: 4680
components:
- type: Transform
@@ -102050,12 +101894,6 @@ entities:
- type: Transform
pos: -35.5,65.5
parent: 2
- - uid: 4748
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,28.5
- parent: 2
- uid: 4768
components:
- type: Transform
@@ -102199,12 +102037,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -29.5,60.5
parent: 2
- - uid: 5194
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,33.5
- parent: 2
- uid: 5201
components:
- type: Transform
@@ -103462,6 +103294,12 @@ entities:
- type: Transform
pos: 12.5,81.5
parent: 2
+ - uid: 9834
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -32.5,34.5
+ parent: 2
- uid: 9892
components:
- type: Transform
@@ -103677,12 +103515,6 @@ entities:
rot: 3.141592653589793 rad
pos: -74.5,35.5
parent: 2
- - uid: 12754
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,30.5
- parent: 2
- uid: 12763
components:
- type: Transform
@@ -103693,6 +103525,12 @@ entities:
- type: Transform
pos: -35.5,59.5
parent: 2
+ - uid: 12781
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -31.5,30.5
+ parent: 2
- uid: 12787
components:
- type: Transform
@@ -107752,24 +107590,6 @@ entities:
rot: 3.141592653589793 rad
pos: -56.5,44.5
parent: 2
- - uid: 4238
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -31.5,28.5
- parent: 2
- - uid: 4240
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -31.5,27.5
- parent: 2
- - uid: 4241
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -34.5,27.5
- parent: 2
- uid: 4260
components:
- type: Transform
@@ -108786,12 +108606,6 @@ entities:
rot: 3.141592653589793 rad
pos: -66.5,53.5
parent: 2
- - uid: 10827
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,27.5
- parent: 2
- uid: 11358
components:
- type: Transform
@@ -108888,18 +108702,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -67.5,46.5
parent: 2
- - uid: 12781
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -31.5,32.5
- parent: 2
- - uid: 12783
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -31.5,33.5
- parent: 2
- uid: 12795
components:
- type: Transform
@@ -108952,12 +108754,6 @@ entities:
- type: Transform
pos: -55.5,18.5
parent: 2
- - uid: 13159
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -34.5,34.5
- parent: 2
- uid: 13198
components:
- type: Transform
@@ -109112,12 +108908,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -38.5,47.5
parent: 2
- - uid: 13792
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,34.5
- parent: 2
- uid: 13814
components:
- type: Transform
@@ -109983,15 +109773,6 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
-- proto: WeaponSubMachineGunDrozd
- entities:
- - uid: 4255
- components:
- - type: Transform
- parent: 11260
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- proto: WeaponSubMachineGunWt550
entities:
- uid: 1941
@@ -110158,6 +109939,22 @@ entities:
- type: Transform
pos: -39.5,27.5
parent: 2
+ - uid: 6732
+ components:
+ - type: Transform
+ pos: -34.5,27.5
+ parent: 2
+ - uid: 6733
+ components:
+ - type: Transform
+ pos: -33.5,27.5
+ parent: 2
+ - uid: 12785
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -31.5,29.5
+ parent: 2
- uid: 13823
components:
- type: Transform
@@ -110395,12 +110192,30 @@ entities:
rot: 3.141592653589793 rad
pos: -38.5,27.5
parent: 2
+ - uid: 5193
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -34.5,27.5
+ parent: 2
+ - uid: 5194
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -33.5,27.5
+ parent: 2
- uid: 5195
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -39.5,27.5
parent: 2
+ - uid: 6716
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -31.5,29.5
+ parent: 2
- uid: 6729
components:
- type: Transform
@@ -110569,12 +110384,6 @@ entities:
- type: Transform
pos: -41.5,18.5
parent: 2
- - uid: 2214
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -31.5,30.5
- parent: 2
- uid: 2961
components:
- type: Transform
@@ -110608,12 +110417,6 @@ entities:
- type: Transform
pos: -30.5,22.5
parent: 2
- - uid: 4251
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -31.5,29.5
- parent: 2
- uid: 4284
components:
- type: Transform
diff --git a/Resources/Maps/marathon.yml b/Resources/Maps/marathon.yml
index 1b0abd79bee..ed726368b00 100644
--- a/Resources/Maps/marathon.yml
+++ b/Resources/Maps/marathon.yml
@@ -150,11 +150,11 @@ entities:
version: 6
-3,3:
ind: -3,3
- tiles: XQAAAAACXQAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAACHwAAAAABfgAAAAAAfgAAAAAAHwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAABfgAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAHwAAAAABfgAAAAAAfgAAAAAAHwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAHwAAAAABfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAABHwAAAAABfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAXQAAAAADUgAAAAAAUgAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAUgAAAAAAUgAAAAAALgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAALgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAXQAAAAADUgAAAAAAUgAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAADXQAAAAADLgAAAAAALgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA
+ tiles: XQAAAAACXQAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAACHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAABfgAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAHwAAAAABHwAAAAADfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAABHwAAAAABHwAAAAACfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAXQAAAAADUgAAAAAAUgAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAUgAAAAAAUgAAAAAALgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAALgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAXQAAAAADUgAAAAAAUgAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAADXQAAAAADLgAAAAAALgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA
version: 6
-2,3:
ind: -2,3
- tiles: XQAAAAABXQAAAAADXQAAAAADHwAAAAACfgAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAAAHwAAAAADHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAAAXQAAAAADHwAAAAADfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAACHwAAAAABHwAAAAADHwAAAAABHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAABXQAAAAACHwAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAADHwAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAADHwAAAAACHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAACegAAAAABegAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: XQAAAAABXQAAAAADXQAAAAADHwAAAAACfgAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAAAHwAAAAADHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAAAXQAAAAADHwAAAAADfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAACHwAAAAABHwAAAAADHwAAAAABHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAABXQAAAAACHwAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAADHwAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAADHwAAAAACHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAACegAAAAABegAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-3,4:
ind: -3,4
@@ -561,6 +561,7 @@ entities:
1721: 33,17
1722: 32,17
1723: 31,17
+ 2042: -40,54
2104: 1,-7
2105: -1,-7
2225: -13,38
@@ -611,14 +612,6 @@ entities:
3010: 12,14
3015: 2,-51
3114: -21,-15
- 3176: -35,56
- 3177: -34,56
- 3178: -33,56
- 3179: -32,56
- 3180: -35,60
- 3181: -34,60
- 3182: -33,60
- 3183: -32,60
- node:
angle: 1.5707963267948966 rad
color: '#FFFFFFFF'
@@ -635,14 +628,12 @@ entities:
id: BotGreyscale
decals:
2133: -22,-1
- 3191: -46,54
- 3194: -46,51
- 3195: -46,52
- 3196: -46,53
- node:
color: '#FFFFFFFF'
id: BotLeft
decals:
+ 2040: -39,56
+ 2041: -41,56
2151: -57,-22
2207: -42,42
2208: -46,42
@@ -653,6 +644,13 @@ entities:
2446: -44,19
2447: -42,19
2448: -40,19
+ - node:
+ color: '#FFFFFFFF'
+ id: BotRight
+ decals:
+ 2204: -45,51
+ 2205: -45,52
+ 2206: -45,53
- node:
color: '#FFFFFFFF'
id: BotRightGreyscale
@@ -1886,7 +1884,15 @@ entities:
color: '#FFFFFFFF'
id: Delivery
decals:
+ 99: -39,50
+ 100: -41,50
107: -31,56
+ 108: -35,56
+ 109: -35,60
+ 110: -34,60
+ 111: -33,60
+ 112: -32,60
+ 113: -31,60
222: -40,41
223: -44,41
224: -48,41
@@ -1926,7 +1932,6 @@ entities:
2810: 14,-25
2811: 10,-31
2812: 11,-31
- 3184: -30,56
- node:
color: '#FFFFFFFF'
id: DiagonalCheckerAOverlay
@@ -1976,13 +1981,19 @@ entities:
232: -49,40
245: -34,57
246: -31,59
+ 697: 53,19
+ 698: 53,20
+ - node:
+ cleanable: True
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: DirtHeavy
+ decals:
401: -26,29
402: -33,32
403: -28,32
404: -28,31
405: -31,30
- 697: 53,19
- 698: 53,20
828: -76,-57
829: -76,-56
830: -77,-55
@@ -2039,17 +2050,6 @@ entities:
260: -40,42
262: -48,42
263: -37,40
- 411: -32,30
- 412: -27,30
- 413: -26,31
- 414: -28,30
- 415: -29,31
- 416: -29,32
- 417: -27,32
- 418: -32,32
- 419: -32,27
- 420: -26,28
- 421: -33,27
641: -19,-44
642: -17,-42
643: -19,-42
@@ -2060,17 +2060,28 @@ entities:
648: 2,-39
649: 1,-34
650: 1,-31
- 682: 20,-11
- 683: 21,-10
- 684: 17,-11
- 685: 17,-12
- 686: 19,-8
693: 43,22
694: 45,22
695: 52,19
696: 51,20
699: 50,19
705: 45,23
+ 411: -32,30
+ 412: -27,30
+ 413: -26,31
+ 414: -28,30
+ 415: -29,31
+ 416: -29,32
+ 417: -27,32
+ 418: -32,32
+ 419: -32,27
+ 420: -26,28
+ 421: -33,27
+ 682: 20,-11
+ 683: 21,-10
+ 684: 17,-11
+ 685: 17,-12
+ 686: 19,-8
838: -78,-53
839: -76,-53
840: -78,-56
@@ -2175,16 +2186,10 @@ entities:
244: -35,58
253: -36,54
261: -48,41
- 406: -27,29
- 407: -26,30
- 408: -30,30
- 409: -32,29
- 410: -31,32
637: 1,-39
638: -23,-44
639: -18,-42
640: -16,-41
- 681: 21,-11
691: 46,23
692: 43,21
700: 52,19
@@ -2192,6 +2197,12 @@ entities:
702: 46,23
703: 46,22
704: 44,23
+ 406: -27,29
+ 407: -26,30
+ 408: -30,30
+ 409: -32,29
+ 410: -31,32
+ 681: 21,-11
832: -78,-54
833: -79,-55
834: -79,-53
@@ -2921,6 +2932,7 @@ entities:
302: -52,56
303: -53,56
304: -46,56
+ 305: -45,56
427: 13,20
428: 12,20
429: 14,20
@@ -4155,6 +4167,7 @@ entities:
178: -38,46
206: -46,44
264: -47,45
+ 328: -45,56
347: -35,37
431: 14,20
476: -20,-1
@@ -4323,7 +4336,6 @@ entities:
2817: -8,-51
2938: -17,-53
3172: 29,43
- 3189: -43,52
- node:
color: '#FFFFFFFF'
id: WarnCornerNW
@@ -4333,7 +4345,6 @@ entities:
2937: -19,-53
3111: -6,-12
3168: 33,43
- 3188: -38,52
- node:
color: '#FFFFFFFF'
id: WarnCornerSE
@@ -4483,7 +4494,6 @@ entities:
3145: -1,-41
3146: -1,-42
3170: 29,42
- 3190: -43,51
- node:
color: '#334E6DC8'
id: WarnLineGreyscaleE
@@ -4713,7 +4723,6 @@ entities:
3142: -1,-41
3143: -1,-42
3169: 33,42
- 3187: -38,51
- node:
color: '#FFFFFFFF'
id: WarnLineW
@@ -4797,6 +4806,11 @@ entities:
color: '#FFFFFFFF'
id: WarningLine
decals:
+ 101: -38,51
+ 102: -39,51
+ 103: -40,51
+ 104: -41,51
+ 105: -42,51
386: 11,42
387: 10,42
388: 9,42
@@ -4822,6 +4836,11 @@ entities:
color: '#FFFFFFFF'
id: WarningLine
decals:
+ 94: -38,53
+ 95: -39,53
+ 96: -40,53
+ 97: -41,53
+ 98: -42,53
614: 7,-21
615: 6,-21
616: 5,-21
@@ -5723,7 +5742,7 @@ entities:
-13,11:
0: 43707
-12,12:
- 0: 29627
+ 0: 62395
-11,9:
0: 45311
-11,10:
@@ -5731,7 +5750,7 @@ entities:
-11,11:
0: 65327
-11,12:
- 0: 58623
+ 0: 51455
-10,9:
0: 47359
-10,10:
@@ -5846,23 +5865,23 @@ entities:
-13,16:
0: 65535
-12,13:
- 0: 14199
+ 0: 16383
-12,14:
- 0: 12279
+ 0: 12287
-12,15:
0: 62071
-12,16:
0: 65407
-11,15:
0: 7453
- -11,13:
- 0: 61166
- -11,14:
- 0: 52238
-11,16:
0: 4545
+ -11,13:
+ 0: 52424
+ -11,14:
+ 0: 52236
-10,13:
- 0: 30583
+ 0: 30578
-10,14:
0: 63239
-10,15:
@@ -5881,7 +5900,7 @@ entities:
-9,16:
2: 241
-8,13:
- 0: 1919
+ 0: 18303
-8,14:
0: 65535
-8,15:
@@ -5897,7 +5916,7 @@ entities:
2: 17476
-7,15:
0: 1
- 2: 29764
+ 2: 12804
-6,13:
0: 119
2: 28672
@@ -6414,18 +6433,18 @@ entities:
2: 34952
6,-6:
2: 61440
- 4: 224
+ 6: 224
6,-5:
0: 112
2: 2184
6,-8:
3: 224
- 5: 57344
+ 4: 57344
6,-7:
- 5: 224
- 6: 57344
+ 4: 224
+ 5: 57344
6,-9:
- 5: 57568
+ 4: 57568
7,-5:
2: 4080
7,-8:
@@ -6584,12 +6603,14 @@ entities:
0: 53201
-6,-12:
0: 61815
+ 2: 136
-6,-11:
0: 65535
-6,-10:
0: 30479
-6,-13:
0: 30576
+ 2: 34944
-5,-13:
0: 62719
-8,-14:
@@ -6608,15 +6629,15 @@ entities:
-8,-15:
2: 76
-7,-16:
- 2: 56788
+ 2: 65527
0: 8
-7,-15:
- 2: 28953
+ 2: 28987
0: 196
-7,-14:
2: 870
-7,-17:
- 2: 56797
+ 2: 65535
-6,-16:
2: 13387
0: 49156
@@ -6625,7 +6646,7 @@ entities:
0: 45552
-6,-14:
0: 16527
- 2: 8704
+ 2: 8720
-6,-17:
2: 17487
-5,-16:
@@ -6650,17 +6671,17 @@ entities:
-4,-17:
2: 17487
-3,-16:
- 2: 13925
+ 2: 48877
0: 16386
-3,-15:
- 2: 3
+ 2: 11
0: 61812
-3,-14:
0: 61695
-3,-17:
- 2: 58983
+ 2: 61167
-2,-16:
- 2: 64886
+ 2: 64887
-2,-15:
2: 31
0: 56320
@@ -6703,14 +6724,14 @@ entities:
-8,-20:
2: 34944
-7,-20:
- 2: 40760
+ 2: 65336
-7,-19:
- 2: 56797
+ 2: 65535
-7,-18:
- 2: 56820
+ 2: 65527
0: 8
-6,-20:
- 2: 3055
+ 2: 65519
-6,-19:
2: 17599
0: 64
@@ -6718,13 +6739,13 @@ entities:
2: 17483
0: 4
-5,-20:
- 2: 3918
+ 2: 65358
-5,-19:
2: 17663
-5,-18:
2: 17487
-4,-20:
- 2: 7150
+ 2: 65518
-4,-19:
2: 17599
0: 64
@@ -6732,18 +6753,18 @@ entities:
2: 17483
0: 4
-3,-20:
- 2: 3971
+ 2: 65411
-3,-19:
- 2: 58999
+ 2: 61183
-3,-18:
- 2: 58981
+ 2: 61165
0: 2
-2,-20:
2: 13104
-2,-19:
2: 30033
-2,-18:
- 2: 20854
+ 2: 20855
9,1:
0: 61693
9,2:
@@ -6855,7 +6876,7 @@ entities:
3,16:
2: 242
12,11:
- 5: 2
+ 4: 2
14,9:
2: 39304
0: 17476
@@ -7527,7 +7548,7 @@ entities:
temperature: 293.15
moles:
- 0
- - 6666.982
+ - 0
- 0
- 0
- 0
@@ -7541,7 +7562,7 @@ entities:
- volume: 2500
temperature: 293.15
moles:
- - 0
+ - 6666.982
- 0
- 0
- 0
@@ -7556,8 +7577,8 @@ entities:
- volume: 2500
temperature: 293.15
moles:
- - 6666.982
- 0
+ - 6666.982
- 0
- 0
- 0
@@ -7609,25 +7630,6 @@ entities:
container: 20092
- proto: AirAlarm
entities:
- - uid: 682
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -43.5,54.5
- parent: 30
- - type: DeviceList
- devices:
- - 474
- - 22778
- - 23140
- - 23142
- - 2099
- - 2029
- - uid: 1990
- components:
- - type: Transform
- pos: -43.5,50.5
- parent: 30
- uid: 2454
components:
- type: Transform
@@ -7638,6 +7640,21 @@ entities:
devices:
- 3228
- 3229
+ - uid: 2541
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -36.5,55.5
+ parent: 30
+ - type: DeviceList
+ devices:
+ - 22783
+ - 22782
+ - 12595
+ - 13767
+ - 22776
+ - 2006
+ - 2005
- uid: 2851
components:
- type: Transform
@@ -8552,6 +8569,19 @@ entities:
- 21895
- 2523
- 2525
+ - uid: 21906
+ components:
+ - type: Transform
+ pos: -43.5,50.5
+ parent: 30
+ - type: DeviceList
+ devices:
+ - 2005
+ - 2006
+ - 1443
+ - 21908
+ - 2544
+ - 2545
- uid: 21913
components:
- type: Transform
@@ -8581,10 +8611,10 @@ entities:
- 20387
- 20388
- 21919
+ - 2594
- 2595
- 2526
- 2524
- - 2030
- uid: 21921
components:
- type: Transform
@@ -8592,6 +8622,7 @@ entities:
parent: 30
- type: DeviceList
devices:
+ - 2592
- 21920
- 2593
- uid: 21922
@@ -9653,17 +9684,15 @@ entities:
- type: Transform
pos: -36.5,47.5
parent: 30
- - uid: 2544
+ - uid: 1926
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -38.5,50.5
+ pos: -40.5,52.5
parent: 30
- - uid: 5052
+ - uid: 6584
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -41.5,50.5
+ pos: -38.5,52.5
parent: 30
- proto: AirlockAtmosphericsGlassLocked
entities:
@@ -10106,11 +10135,6 @@ entities:
- type: Transform
pos: -54.5,-60.5
parent: 30
- - uid: 782
- components:
- - type: Transform
- pos: -50.5,46.5
- parent: 30
- uid: 914
components:
- type: Transform
@@ -10131,6 +10155,11 @@ entities:
- type: Transform
pos: -46.5,10.5
parent: 30
+ - uid: 3527
+ components:
+ - type: Transform
+ pos: -50.5,46.5
+ parent: 30
- uid: 6384
components:
- type: Transform
@@ -11536,7 +11565,7 @@ entities:
pos: 34.5,45.5
parent: 30
- type: Door
- secondsUntilStateChange: -8197.5205
+ secondsUntilStateChange: -3847.4316
state: Opening
- type: DeviceLinkSource
lastSignals:
@@ -12038,6 +12067,11 @@ entities:
- type: Transform
pos: -28.5,46.5
parent: 30
+ - uid: 1828
+ components:
+ - type: Transform
+ pos: -29.5,55.5
+ parent: 30
- uid: 1829
components:
- type: Transform
@@ -12103,14 +12137,6 @@ entities:
parent: 30
- proto: AirSensor
entities:
- - uid: 2029
- components:
- - type: Transform
- pos: -41.5,48.5
- parent: 30
- - type: DeviceNetwork
- deviceLists:
- - 682
- uid: 2547
components:
- type: Transform
@@ -12456,6 +12482,14 @@ entities:
- type: Transform
pos: -31.5,43.5
parent: 30
+ - uid: 21908
+ components:
+ - type: Transform
+ pos: -39.5,47.5
+ parent: 30
+ - type: DeviceNetwork
+ deviceLists:
+ - 21906
- uid: 21911
components:
- type: Transform
@@ -12741,6 +12775,15 @@ entities:
- type: DeviceNetwork
deviceLists:
- 21801
+ - uid: 22776
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -39.5,51.5
+ parent: 30
+ - type: DeviceNetwork
+ deviceLists:
+ - 2541
- uid: 22789
components:
- type: Transform
@@ -12812,14 +12855,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 22862
- - uid: 23142
- components:
- - type: Transform
- pos: -40.5,52.5
- parent: 30
- - type: DeviceNetwork
- deviceLists:
- - 682
- proto: AltarConvertRed
entities:
- uid: 17468
@@ -12930,14 +12965,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -27.5,51.5
parent: 30
- - uid: 1894
- components:
- - type: MetaData
- name: Armory APC
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -37.5,50.5
- parent: 30
- uid: 3119
components:
- type: MetaData
@@ -15055,10 +15082,10 @@ entities:
- type: Transform
pos: -37.5,61.5
parent: 30
- - uid: 2584
+ - uid: 2313
components:
- type: Transform
- pos: -26.5,59.5
+ pos: -26.5,58.5
parent: 30
- uid: 5078
components:
@@ -15080,11 +15107,6 @@ entities:
- type: Transform
pos: -20.5,49.5
parent: 30
- - uid: 8060
- components:
- - type: Transform
- pos: -26.5,58.5
- parent: 30
- uid: 9188
components:
- type: Transform
@@ -15100,15 +15122,20 @@ entities:
- type: Transform
pos: 7.5,-21.5
parent: 30
- - uid: 9292
+ - uid: 15174
components:
- type: Transform
- pos: -26.5,57.5
+ pos: -20.5,48.5
parent: 30
- - uid: 15174
+ - uid: 17473
components:
- type: Transform
- pos: -20.5,48.5
+ pos: -26.5,59.5
+ parent: 30
+ - uid: 18838
+ components:
+ - type: Transform
+ pos: -26.5,60.5
parent: 30
- uid: 18840
components:
@@ -15432,6 +15459,13 @@ entities:
parent: 30
- type: BallisticAmmoProvider
unspawnedCount: 12
+ - uid: 1956
+ components:
+ - type: Transform
+ pos: -41.476646,54.757214
+ parent: 30
+ - type: BallisticAmmoProvider
+ unspawnedCount: 12
- proto: BoxBodyBag
entities:
- uid: 2245
@@ -15454,7 +15488,7 @@ entities:
- uid: 2002
components:
- type: Transform
- pos: -39.603897,53.49992
+ pos: -37.719124,55.411057
parent: 30
- uid: 2110
components:
@@ -15590,6 +15624,11 @@ entities:
parent: 30
- proto: BoxHandcuff
entities:
+ - uid: 2096
+ components:
+ - type: Transform
+ pos: -32.040676,56.600285
+ parent: 30
- uid: 2169
components:
- type: Transform
@@ -15609,15 +15648,6 @@ entities:
- type: Transform
pos: -15.496401,-18.280874
parent: 30
-- proto: BoxLethalshot
- entities:
- - uid: 16932
- components:
- - type: Transform
- parent: 16251
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- proto: BoxLightbulb
entities:
- uid: 18788
@@ -15654,6 +15684,15 @@ entities:
- type: Transform
pos: -15.855776,-18.39025
parent: 30
+- proto: BoxShotgunIncendiary
+ entities:
+ - uid: 1953
+ components:
+ - type: Transform
+ pos: -41.476646,54.61659
+ parent: 30
+ - type: BallisticAmmoProvider
+ unspawnedCount: 12
- proto: BoxSterileMask
entities:
- uid: 7201
@@ -15678,6 +15717,13 @@ entities:
- type: Transform
pos: -15.996401,-18.280874
parent: 30
+- proto: BoxZiptie
+ entities:
+ - uid: 2095
+ components:
+ - type: Transform
+ pos: -31.462551,56.600285
+ parent: 30
- proto: BrbSign
entities:
- uid: 21503
@@ -15801,12 +15847,6 @@ entities:
parent: 30
- proto: ButtonFrameCautionSecurity
entities:
- - uid: 3527
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -39.5,50.5
- parent: 30
- uid: 9062
components:
- type: Transform
@@ -15819,12 +15859,6 @@ entities:
rot: 3.141592653589793 rad
pos: 0.5,-54.5
parent: 30
- - uid: 23167
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -40.5,50.5
- parent: 30
- proto: ButtonFrameExit
entities:
- uid: 348
@@ -15847,19 +15881,8 @@ entities:
rot: -1.5707963267948966 rad
pos: -15.5,-38.5
parent: 30
- - uid: 13767
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.5,56.5
- parent: 30
- proto: ButtonFrameJanitor
entities:
- - uid: 4597
- components:
- - type: Transform
- pos: -36.5,45.5
- parent: 30
- uid: 9401
components:
- type: Transform
@@ -15998,31 +16021,6 @@ entities:
- type: Transform
pos: -27.5,51.5
parent: 30
- - uid: 1895
- components:
- - type: Transform
- pos: -37.5,48.5
- parent: 30
- - uid: 1896
- components:
- - type: Transform
- pos: -40.5,52.5
- parent: 30
- - uid: 1897
- components:
- - type: Transform
- pos: -41.5,54.5
- parent: 30
- - uid: 1898
- components:
- - type: Transform
- pos: -41.5,55.5
- parent: 30
- - uid: 1901
- components:
- - type: Transform
- pos: -46.5,68.5
- parent: 30
- uid: 1909
components:
- type: Transform
@@ -16043,21 +16041,6 @@ entities:
- type: Transform
pos: -40.5,59.5
parent: 30
- - uid: 1914
- components:
- - type: Transform
- pos: -27.5,57.5
- parent: 30
- - uid: 1915
- components:
- - type: Transform
- pos: -28.5,57.5
- parent: 30
- - uid: 1921
- components:
- - type: Transform
- pos: -26.5,57.5
- parent: 30
- uid: 1951
components:
- type: Transform
@@ -16068,11 +16051,6 @@ entities:
- type: Transform
pos: -15.5,-19.5
parent: 30
- - uid: 2033
- components:
- - type: Transform
- pos: -38.5,52.5
- parent: 30
- uid: 2047
components:
- type: Transform
@@ -16083,26 +16061,6 @@ entities:
- type: Transform
pos: -37.5,61.5
parent: 30
- - uid: 2095
- components:
- - type: Transform
- pos: -38.5,51.5
- parent: 30
- - uid: 2096
- components:
- - type: Transform
- pos: -41.5,53.5
- parent: 30
- - uid: 2531
- components:
- - type: Transform
- pos: -37.5,51.5
- parent: 30
- - uid: 2583
- components:
- - type: Transform
- pos: -26.5,58.5
- parent: 30
- uid: 3126
components:
- type: Transform
@@ -18988,11 +18946,46 @@ entities:
- type: Transform
pos: -39.5,46.5
parent: 30
+ - uid: 4595
+ components:
+ - type: Transform
+ pos: -39.5,48.5
+ parent: 30
+ - uid: 4596
+ components:
+ - type: Transform
+ pos: -39.5,49.5
+ parent: 30
+ - uid: 4597
+ components:
+ - type: Transform
+ pos: -39.5,50.5
+ parent: 30
+ - uid: 4598
+ components:
+ - type: Transform
+ pos: -39.5,51.5
+ parent: 30
- uid: 4599
components:
- type: Transform
pos: -39.5,52.5
parent: 30
+ - uid: 4600
+ components:
+ - type: Transform
+ pos: -39.5,53.5
+ parent: 30
+ - uid: 4601
+ components:
+ - type: Transform
+ pos: -40.5,53.5
+ parent: 30
+ - uid: 4602
+ components:
+ - type: Transform
+ pos: -40.5,54.5
+ parent: 30
- uid: 4603
components:
- type: Transform
@@ -19353,11 +19346,21 @@ entities:
- type: Transform
pos: -46.5,67.5
parent: 30
+ - uid: 4675
+ components:
+ - type: Transform
+ pos: -47.5,67.5
+ parent: 30
- uid: 4676
components:
- type: Transform
pos: -47.5,68.5
parent: 30
+ - uid: 4677
+ components:
+ - type: Transform
+ pos: -47.5,69.5
+ parent: 30
- uid: 4678
components:
- type: Transform
@@ -19373,6 +19376,11 @@ entities:
- type: Transform
pos: -50.5,68.5
parent: 30
+ - uid: 4681
+ components:
+ - type: Transform
+ pos: -51.5,68.5
+ parent: 30
- uid: 4682
components:
- type: Transform
@@ -19453,6 +19461,11 @@ entities:
- type: Transform
pos: -43.5,60.5
parent: 30
+ - uid: 4698
+ components:
+ - type: Transform
+ pos: -45.5,65.5
+ parent: 30
- uid: 4699
components:
- type: Transform
@@ -19703,6 +19716,16 @@ entities:
- type: Transform
pos: -29.5,54.5
parent: 30
+ - uid: 4751
+ components:
+ - type: Transform
+ pos: -29.5,55.5
+ parent: 30
+ - uid: 4752
+ components:
+ - type: Transform
+ pos: -29.5,56.5
+ parent: 30
- uid: 4753
components:
- type: Transform
@@ -19718,6 +19741,11 @@ entities:
- type: Transform
pos: -29.5,59.5
parent: 30
+ - uid: 4756
+ components:
+ - type: Transform
+ pos: -28.5,58.5
+ parent: 30
- uid: 4757
components:
- type: Transform
@@ -19828,10 +19856,15 @@ entities:
- type: Transform
pos: -50.5,53.5
parent: 30
- - uid: 4785
+ - uid: 4781
components:
- type: Transform
- pos: -37.5,50.5
+ pos: -51.5,56.5
+ parent: 30
+ - uid: 4782
+ components:
+ - type: Transform
+ pos: -51.5,55.5
parent: 30
- uid: 4829
components:
@@ -21798,11 +21831,6 @@ entities:
- type: Transform
pos: -25.5,-21.5
parent: 30
- - uid: 8042
- components:
- - type: Transform
- pos: -26.5,59.5
- parent: 30
- uid: 8043
components:
- type: Transform
@@ -25733,11 +25761,6 @@ entities:
- type: Transform
pos: 31.5,31.5
parent: 30
- - uid: 12595
- components:
- - type: Transform
- pos: -46.5,70.5
- parent: 30
- uid: 12668
components:
- type: Transform
@@ -31363,6 +31386,26 @@ entities:
- type: Transform
pos: -20.5,48.5
parent: 30
+ - uid: 21012
+ components:
+ - type: Transform
+ pos: -27.5,58.5
+ parent: 30
+ - uid: 21013
+ components:
+ - type: Transform
+ pos: -26.5,58.5
+ parent: 30
+ - uid: 21014
+ components:
+ - type: Transform
+ pos: -26.5,59.5
+ parent: 30
+ - uid: 21015
+ components:
+ - type: Transform
+ pos: -26.5,60.5
+ parent: 30
- uid: 21016
components:
- type: Transform
@@ -31918,46 +31961,6 @@ entities:
- type: Transform
pos: -7.5,-44.5
parent: 30
- - uid: 22777
- components:
- - type: Transform
- pos: -37.5,49.5
- parent: 30
- - uid: 22781
- components:
- - type: Transform
- pos: -46.5,69.5
- parent: 30
- - uid: 23129
- components:
- - type: Transform
- pos: -40.5,50.5
- parent: 30
- - uid: 23130
- components:
- - type: Transform
- pos: -41.5,52.5
- parent: 30
- - uid: 23166
- components:
- - type: Transform
- pos: -48.5,70.5
- parent: 30
- - uid: 23170
- components:
- - type: Transform
- pos: -48.5,69.5
- parent: 30
- - uid: 23171
- components:
- - type: Transform
- pos: -50.5,70.5
- parent: 30
- - uid: 23172
- components:
- - type: Transform
- pos: -50.5,69.5
- parent: 30
- proto: CableApcStack
entities:
- uid: 1637
@@ -38671,11 +38674,6 @@ entities:
parent: 30
- proto: CableMV
entities:
- - uid: 774
- components:
- - type: Transform
- pos: -35.5,47.5
- parent: 30
- uid: 845
components:
- type: Transform
@@ -38711,31 +38709,11 @@ entities:
- type: Transform
pos: -27.5,-19.5
parent: 30
- - uid: 1846
- components:
- - type: Transform
- pos: -34.5,47.5
- parent: 30
- - uid: 1859
- components:
- - type: Transform
- pos: -36.5,47.5
- parent: 30
- uid: 2032
components:
- type: Transform
pos: -28.5,-19.5
parent: 30
- - uid: 2073
- components:
- - type: Transform
- pos: -33.5,47.5
- parent: 30
- - uid: 2074
- components:
- - type: Transform
- pos: -38.5,48.5
- parent: 30
- uid: 2170
components:
- type: Transform
@@ -44236,46 +44214,6 @@ entities:
- type: Transform
pos: -17.5,-60.5
parent: 30
- - uid: 22937
- components:
- - type: Transform
- pos: -37.5,48.5
- parent: 30
- - uid: 23126
- components:
- - type: Transform
- pos: -37.5,50.5
- parent: 30
- - uid: 23127
- components:
- - type: Transform
- pos: -37.5,49.5
- parent: 30
- - uid: 23128
- components:
- - type: Transform
- pos: -37.5,47.5
- parent: 30
- - uid: 23136
- components:
- - type: Transform
- pos: -39.5,48.5
- parent: 30
- - uid: 23137
- components:
- - type: Transform
- pos: -39.5,49.5
- parent: 30
- - uid: 23138
- components:
- - type: Transform
- pos: -39.5,50.5
- parent: 30
- - uid: 23139
- components:
- - type: Transform
- pos: -40.5,50.5
- parent: 30
- proto: CableMVStack
entities:
- uid: 1638
@@ -49488,6 +49426,18 @@ entities:
- type: Transform
pos: -51.5,61.5
parent: 30
+ - uid: 2425
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -52.5,55.5
+ parent: 30
+ - uid: 2426
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -50.5,55.5
+ parent: 30
- uid: 4366
components:
- type: Transform
@@ -50212,12 +50162,6 @@ entities:
- type: Transform
pos: -33.5,53.5
parent: 30
- - uid: 4756
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -43.498543,49.16341
- parent: 30
- uid: 5024
components:
- type: Transform
@@ -52165,11 +52109,29 @@ entities:
- 0
- proto: ClosetL3SecurityFilled
entities:
- - uid: 2041
+ - uid: 2073
components:
- type: Transform
- pos: -29.5,56.5
+ pos: -34.5,56.5
parent: 30
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 3.4430928
+ - 12.952587
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
- uid: 6753
components:
- type: Transform
@@ -52885,10 +52847,10 @@ entities:
parent: 30
- proto: ClothingHeadHatBeretWarden
entities:
- - uid: 4783
+ - uid: 2033
components:
- type: Transform
- pos: -44.66638,47.438354
+ pos: -44.77555,47.437355
parent: 30
- proto: ClothingHeadHatBowlerHat
entities:
@@ -53073,6 +53035,13 @@ entities:
- type: Transform
pos: -21.586058,-27.491894
parent: 30
+- proto: ClothingHeadHatWarden
+ entities:
+ - uid: 865
+ components:
+ - type: Transform
+ pos: -44.478676,46.781105
+ parent: 30
- proto: ClothingHeadHatWelding
entities:
- uid: 1632
@@ -53123,39 +53092,34 @@ entities:
- type: Transform
pos: 35.44555,43.82996
parent: 30
-- proto: ClothingHeadHelmetEVALarge
+- proto: ClothingHeadHelmetBasic
entities:
- - uid: 17784
- components:
- - type: Transform
- pos: -44.636612,58.69058
- parent: 30
- - uid: 17786
+ - uid: 1986
components:
- type: Transform
- pos: -44.478813,58.559113
+ pos: -39.575058,56.668564
parent: 30
-- proto: ClothingHeadHelmetRiot
- entities:
- - uid: 2542
+ - uid: 1987
components:
- type: Transform
- pos: -39.70404,56.724342
+ pos: -39.575058,56.668564
parent: 30
- - uid: 23149
+ - uid: 1988
components:
- type: Transform
- pos: -39.690155,56.61323
+ pos: -39.575058,56.668564
parent: 30
- - uid: 23150
+- proto: ClothingHeadHelmetEVALarge
+ entities:
+ - uid: 17784
components:
- type: Transform
- pos: -39.690155,56.509064
+ pos: -44.636612,58.69058
parent: 30
- - uid: 23151
+ - uid: 17786
components:
- type: Transform
- pos: -39.67626,56.39101
+ pos: -44.478813,58.559113
parent: 30
- proto: ClothingHeadHelmetTemplar
entities:
@@ -53332,61 +53296,63 @@ entities:
- type: Transform
pos: -0.49387097,-7.362574
parent: 30
-- proto: ClothingOuterArmorBulletproof
+- proto: ClothingOuterArmorBasic
entities:
- - uid: 1942
+ - uid: 12131
components:
- type: Transform
- pos: -38.336784,56.662075
+ pos: -39.48033,56.411068
parent: 30
- - uid: 1956
+ - uid: 14249
components:
- type: Transform
- pos: -38.336784,56.773186
+ pos: -39.48033,56.411068
parent: 30
- - uid: 23143
+ - uid: 14435
components:
- type: Transform
- pos: -38.336784,56.564854
+ pos: -39.48033,56.411068
parent: 30
- - uid: 23144
+- proto: ClothingOuterArmorBulletproof
+ entities:
+ - uid: 16243
components:
- type: Transform
- pos: -38.336784,56.460686
+ pos: -39.286102,56.736275
parent: 30
-- proto: ClothingOuterArmorReflective
- entities:
- - uid: 23145
+ - uid: 16244
components:
- type: Transform
- pos: -38.74173,56.6933
+ pos: -39.286102,56.736275
parent: 30
- - uid: 23146
+ - uid: 16251
components:
- type: Transform
- pos: -38.74173,56.512745
+ pos: -39.286102,56.736275
parent: 30
-- proto: ClothingOuterArmorRiot
+- proto: ClothingOuterArmorReflective
entities:
- - uid: 2017
+ - uid: 16932
components:
- type: Transform
- pos: -39.245705,56.45351
+ pos: -39.730423,56.32322
parent: 30
- - uid: 21014
+- proto: ClothingOuterArmorRiot
+ entities:
+ - uid: 1936
components:
- type: Transform
- pos: -39.245705,56.55768
+ pos: -39.387558,56.481064
parent: 30
- - uid: 23147
+ - uid: 1984
components:
- type: Transform
- pos: -39.252655,56.66879
+ pos: -39.387558,56.481064
parent: 30
- - uid: 23148
+ - uid: 1985
components:
- type: Transform
- pos: -39.245705,56.37018
+ pos: -39.387558,56.481064
parent: 30
- proto: ClothingOuterCoatBomber
entities:
@@ -54343,11 +54309,10 @@ entities:
rot: 1.5707963267948966 rad
pos: -53.5,30.5
parent: 30
- - uid: 2023
+ - uid: 2017
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -44.5,49.5
+ pos: -42.5,49.5
parent: 30
- uid: 2160
components:
@@ -54550,6 +54515,11 @@ entities:
rot: 3.141592653589793 rad
pos: -41.5,29.5
parent: 30
+ - uid: 2022
+ components:
+ - type: Transform
+ pos: -43.5,49.5
+ parent: 30
- uid: 4355
components:
- type: Transform
@@ -54567,12 +54537,6 @@ entities:
- type: Transform
pos: -30.5,49.5
parent: 30
- - uid: 12815
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -44.5,48.5
- parent: 30
- proto: ComputerSurveillanceCameraMonitor
entities:
- uid: 1073
@@ -54587,7 +54551,7 @@ entities:
rot: -1.5707963267948966 rad
pos: -30.5,39.5
parent: 30
- - uid: 1991
+ - uid: 2121
components:
- type: Transform
rot: 1.5707963267948966 rad
@@ -54938,13 +54902,6 @@ entities:
- type: Transform
pos: -80.5,-42.5
parent: 30
-- proto: CrateContrabandStorageSecure
- entities:
- - uid: 2007
- components:
- - type: Transform
- pos: -39.5,49.5
- parent: 30
- proto: CrateEmptySpawner
entities:
- uid: 757
@@ -55250,10 +55207,10 @@ entities:
parent: 30
- proto: CrateSecurityTrackingMindshieldImplants
entities:
- - uid: 2011
+ - uid: 682
components:
- type: Transform
- pos: -40.5,49.5
+ pos: -41.5,56.5
parent: 30
- proto: CrateServiceJanitorialSupplies
entities:
@@ -55437,11 +55394,6 @@ entities:
- type: Transform
pos: 0.44135857,19.519009
parent: 30
- - uid: 1920
- components:
- - type: Transform
- pos: -27.424818,58.12078
- parent: 30
- uid: 4886
components:
- type: Transform
@@ -55631,10 +55583,10 @@ entities:
parent: 30
- proto: DefaultStationBeaconArmory
entities:
- - uid: 23141
+ - uid: 20531
components:
- type: Transform
- pos: -40.5,53.5
+ pos: -39.5,53.5
parent: 30
- proto: DefaultStationBeaconArrivals
entities:
@@ -56029,10 +55981,10 @@ entities:
parent: 30
- proto: DefaultStationBeaconWardensOffice
entities:
- - uid: 4596
+ - uid: 20573
components:
- type: Transform
- pos: -40.5,47.5
+ pos: -42.5,47.5
parent: 30
- proto: DefibrillatorCabinetFilled
entities:
@@ -56066,15 +56018,10 @@ entities:
parent: 30
- proto: DeployableBarrier
entities:
- - uid: 1926
- components:
- - type: Transform
- pos: -45.5,52.5
- parent: 30
- - uid: 4601
+ - uid: 474
components:
- type: Transform
- pos: -45.5,51.5
+ pos: -37.5,46.5
parent: 30
- uid: 6585
components:
@@ -56697,59 +56644,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -0.5,64.5
parent: 30
- - uid: 22602
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -45.5,6.5
- parent: 30
- - uid: 22633
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -45.5,-23.5
- parent: 30
- - uid: 22650
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -62.5,-23.5
- parent: 30
- - uid: 23081
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,-51.5
- parent: 30
- - uid: 23109
- components:
- - type: Transform
- pos: -55.5,-49.5
- parent: 30
- - uid: 23112
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -76.5,-45.5
- parent: 30
- - uid: 23114
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -65.5,-45.5
- parent: 30
- - uid: 23124
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -65.5,-38.5
- parent: 30
- - uid: 23125
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -62.5,-38.5
- parent: 30
- proto: DisposalJunction
entities:
- uid: 6948
@@ -56828,11 +56722,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -9.5,2.5
parent: 30
- - uid: 14108
- components:
- - type: Transform
- pos: -35.5,6.5
- parent: 30
- uid: 14151
components:
- type: Transform
@@ -56854,18 +56743,6 @@ entities:
- type: Transform
pos: -32.5,46.5
parent: 30
- - uid: 23079
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -67.5,-49.5
- parent: 30
- - uid: 23113
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -67.5,-45.5
- parent: 30
- proto: DisposalJunctionFlipped
entities:
- uid: 7252
@@ -56998,12 +56875,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -4.5,-39.5
parent: 30
- - uid: 23068
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -62.5,-37.5
- parent: 30
- proto: DisposalPipe
entities:
- uid: 925
@@ -58631,6 +58502,12 @@ entities:
rot: 3.141592653589793 rad
pos: -35.5,5.5
parent: 30
+ - uid: 14108
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -35.5,6.5
+ parent: 30
- uid: 14109
components:
- type: Transform
@@ -60311,30 +60188,6 @@ entities:
rot: 3.141592653589793 rad
pos: -13.5,-41.5
parent: 30
- - uid: 21387
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.5,6.5
- parent: 30
- - uid: 21389
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -37.5,6.5
- parent: 30
- - uid: 21390
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -38.5,6.5
- parent: 30
- - uid: 21438
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -39.5,6.5
- parent: 30
- uid: 21694
components:
- type: Transform
@@ -60993,575 +60846,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 1.5,64.5
parent: 30
- - uid: 22556
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -40.5,6.5
- parent: 30
- - uid: 22598
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -41.5,6.5
- parent: 30
- - uid: 22599
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -42.5,6.5
- parent: 30
- - uid: 22600
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -43.5,6.5
- parent: 30
- - uid: 22601
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -44.5,6.5
- parent: 30
- - uid: 22603
- components:
- - type: Transform
- pos: -45.5,5.5
- parent: 30
- - uid: 22604
- components:
- - type: Transform
- pos: -45.5,4.5
- parent: 30
- - uid: 22605
- components:
- - type: Transform
- pos: -45.5,3.5
- parent: 30
- - uid: 22606
- components:
- - type: Transform
- pos: -45.5,2.5
- parent: 30
- - uid: 22607
- components:
- - type: Transform
- pos: -45.5,1.5
- parent: 30
- - uid: 22608
- components:
- - type: Transform
- pos: -45.5,0.5
- parent: 30
- - uid: 22609
- components:
- - type: Transform
- pos: -45.5,-0.5
- parent: 30
- - uid: 22610
- components:
- - type: Transform
- pos: -45.5,-1.5
- parent: 30
- - uid: 22611
- components:
- - type: Transform
- pos: -45.5,-2.5
- parent: 30
- - uid: 22612
- components:
- - type: Transform
- pos: -45.5,-3.5
- parent: 30
- - uid: 22613
- components:
- - type: Transform
- pos: -45.5,-4.5
- parent: 30
- - uid: 22614
- components:
- - type: Transform
- pos: -45.5,-5.5
- parent: 30
- - uid: 22615
- components:
- - type: Transform
- pos: -45.5,-6.5
- parent: 30
- - uid: 22616
- components:
- - type: Transform
- pos: -45.5,-7.5
- parent: 30
- - uid: 22618
- components:
- - type: Transform
- pos: -45.5,-8.5
- parent: 30
- - uid: 22619
- components:
- - type: Transform
- pos: -45.5,-9.5
- parent: 30
- - uid: 22620
- components:
- - type: Transform
- pos: -45.5,-10.5
- parent: 30
- - uid: 22621
- components:
- - type: Transform
- pos: -45.5,-11.5
- parent: 30
- - uid: 22622
- components:
- - type: Transform
- pos: -45.5,-12.5
- parent: 30
- - uid: 22623
- components:
- - type: Transform
- pos: -45.5,-13.5
- parent: 30
- - uid: 22624
- components:
- - type: Transform
- pos: -45.5,-14.5
- parent: 30
- - uid: 22625
- components:
- - type: Transform
- pos: -45.5,-15.5
- parent: 30
- - uid: 22626
- components:
- - type: Transform
- pos: -45.5,-16.5
- parent: 30
- - uid: 22627
- components:
- - type: Transform
- pos: -45.5,-17.5
- parent: 30
- - uid: 22628
- components:
- - type: Transform
- pos: -45.5,-18.5
- parent: 30
- - uid: 22629
- components:
- - type: Transform
- pos: -45.5,-19.5
- parent: 30
- - uid: 22630
- components:
- - type: Transform
- pos: -45.5,-20.5
- parent: 30
- - uid: 22631
- components:
- - type: Transform
- pos: -45.5,-21.5
- parent: 30
- - uid: 22632
- components:
- - type: Transform
- pos: -45.5,-22.5
- parent: 30
- - uid: 22634
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -46.5,-23.5
- parent: 30
- - uid: 22635
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -47.5,-23.5
- parent: 30
- - uid: 22636
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -48.5,-23.5
- parent: 30
- - uid: 22637
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.5,-23.5
- parent: 30
- - uid: 22638
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,-23.5
- parent: 30
- - uid: 22639
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -51.5,-23.5
- parent: 30
- - uid: 22640
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -52.5,-23.5
- parent: 30
- - uid: 22641
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -53.5,-23.5
- parent: 30
- - uid: 22642
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,-23.5
- parent: 30
- - uid: 22643
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -55.5,-23.5
- parent: 30
- - uid: 22644
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -56.5,-23.5
- parent: 30
- - uid: 22645
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -57.5,-23.5
- parent: 30
- - uid: 22646
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -58.5,-23.5
- parent: 30
- - uid: 22647
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -59.5,-23.5
- parent: 30
- - uid: 22648
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -60.5,-23.5
- parent: 30
- - uid: 22649
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -61.5,-23.5
- parent: 30
- - uid: 22651
- components:
- - type: Transform
- pos: -62.5,-24.5
- parent: 30
- - uid: 22652
- components:
- - type: Transform
- pos: -62.5,-25.5
- parent: 30
- - uid: 22653
- components:
- - type: Transform
- pos: -62.5,-26.5
- parent: 30
- - uid: 22654
- components:
- - type: Transform
- pos: -62.5,-27.5
- parent: 30
- - uid: 22655
- components:
- - type: Transform
- pos: -62.5,-28.5
- parent: 30
- - uid: 22656
- components:
- - type: Transform
- pos: -62.5,-29.5
- parent: 30
- - uid: 22657
- components:
- - type: Transform
- pos: -62.5,-30.5
- parent: 30
- - uid: 22658
- components:
- - type: Transform
- pos: -62.5,-31.5
- parent: 30
- - uid: 22659
- components:
- - type: Transform
- pos: -62.5,-32.5
- parent: 30
- - uid: 22660
- components:
- - type: Transform
- pos: -62.5,-33.5
- parent: 30
- - uid: 22661
- components:
- - type: Transform
- pos: -62.5,-34.5
- parent: 30
- - uid: 22662
- components:
- - type: Transform
- pos: -62.5,-35.5
- parent: 30
- - uid: 23067
- components:
- - type: Transform
- pos: -62.5,-36.5
- parent: 30
- - uid: 23077
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -69.5,-51.5
- parent: 30
- - uid: 23078
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -68.5,-51.5
- parent: 30
- - uid: 23080
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -67.5,-50.5
- parent: 30
- - uid: 23082
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -67.5,-48.5
- parent: 30
- - uid: 23083
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -67.5,-47.5
- parent: 30
- - uid: 23084
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -67.5,-46.5
- parent: 30
- - uid: 23085
- components:
- - type: Transform
- pos: -76.5,-46.5
- parent: 30
- - uid: 23086
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -75.5,-45.5
- parent: 30
- - uid: 23087
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -74.5,-45.5
- parent: 30
- - uid: 23088
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -73.5,-45.5
- parent: 30
- - uid: 23089
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -72.5,-45.5
- parent: 30
- - uid: 23090
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -71.5,-45.5
- parent: 30
- - uid: 23091
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -70.5,-45.5
- parent: 30
- - uid: 23092
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -69.5,-45.5
- parent: 30
- - uid: 23093
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -68.5,-45.5
- parent: 30
- - uid: 23094
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -66.5,-49.5
- parent: 30
- - uid: 23095
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -56.5,-49.5
- parent: 30
- - uid: 23096
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -57.5,-49.5
- parent: 30
- - uid: 23097
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -58.5,-49.5
- parent: 30
- - uid: 23098
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -59.5,-49.5
- parent: 30
- - uid: 23099
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -60.5,-49.5
- parent: 30
- - uid: 23100
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -61.5,-49.5
- parent: 30
- - uid: 23101
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -62.5,-49.5
- parent: 30
- - uid: 23102
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -63.5,-49.5
- parent: 30
- - uid: 23103
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -64.5,-49.5
- parent: 30
- - uid: 23104
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -65.5,-49.5
- parent: 30
- - uid: 23105
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -55.5,-50.5
- parent: 30
- - uid: 23106
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -55.5,-51.5
- parent: 30
- - uid: 23107
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -55.5,-52.5
- parent: 30
- - uid: 23108
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -55.5,-53.5
- parent: 30
- - uid: 23115
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -66.5,-45.5
- parent: 30
- - uid: 23116
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -65.5,-44.5
- parent: 30
- - uid: 23117
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -65.5,-43.5
- parent: 30
- - uid: 23118
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -65.5,-42.5
- parent: 30
- - uid: 23119
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -65.5,-41.5
- parent: 30
- - uid: 23120
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -65.5,-40.5
- parent: 30
- - uid: 23121
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -65.5,-39.5
- parent: 30
- - uid: 23122
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -64.5,-38.5
- parent: 30
- - uid: 23123
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -63.5,-38.5
- parent: 30
- proto: DisposalTrunk
entities:
- uid: 356
@@ -61863,36 +61147,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 2.5,64.5
parent: 30
- - uid: 23069
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -63.5,-37.5
- parent: 30
- - uid: 23075
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -55.5,-54.5
- parent: 30
- - uid: 23076
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -70.5,-51.5
- parent: 30
- - uid: 23110
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -55.5,-54.5
- parent: 30
- - uid: 23111
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -76.5,-47.5
- parent: 30
- proto: DisposalUnit
entities:
- uid: 343
@@ -62135,31 +61389,6 @@ entities:
- type: Transform
pos: 2.5,64.5
parent: 30
- - uid: 23070
- components:
- - type: Transform
- pos: -63.5,-37.5
- parent: 30
- - uid: 23071
- components:
- - type: Transform
- pos: -70.5,-51.5
- parent: 30
- - uid: 23072
- components:
- - type: Transform
- pos: -53.5,-46.5
- parent: 30
- - uid: 23073
- components:
- - type: Transform
- pos: -76.5,-47.5
- parent: 30
- - uid: 23074
- components:
- - type: Transform
- pos: -55.5,-54.5
- parent: 30
- proto: DisposalYJunction
entities:
- uid: 6965
@@ -62188,7 +61417,7 @@ entities:
parent: 30
- proto: DogBed
entities:
- - uid: 1937
+ - uid: 2007
components:
- type: Transform
pos: -44.5,47.5
@@ -62739,6 +61968,14 @@ entities:
- type: PointLight
enabled: True
- type: ActiveEmergencyLight
+ - uid: 19841
+ components:
+ - type: Transform
+ pos: -39.5,56.5
+ parent: 30
+ - type: PointLight
+ enabled: True
+ - type: ActiveEmergencyLight
- uid: 19843
components:
- type: Transform
@@ -63513,6 +62750,11 @@ entities:
- type: Transform
pos: -32.5,-35.5
parent: 30
+ - uid: 20525
+ components:
+ - type: Transform
+ pos: -30.5,54.5
+ parent: 30
- uid: 20526
components:
- type: Transform
@@ -63523,11 +62765,6 @@ entities:
- type: Transform
pos: 43.5,37.5
parent: 30
- - uid: 23132
- components:
- - type: Transform
- pos: -29.5,54.5
- parent: 30
- proto: filingCabinetDrawer
entities:
- uid: 12856
@@ -64139,6 +63376,17 @@ entities:
- 21893
- 21894
- 21895
+ - uid: 21907
+ components:
+ - type: Transform
+ pos: -44.5,50.5
+ parent: 30
+ - type: DeviceList
+ devices:
+ - 21908
+ - 2005
+ - 2006
+ - 1443
- uid: 21912
components:
- type: Transform
@@ -64983,15 +64231,6 @@ entities:
- type: Transform
pos: -20.5,8.5
parent: 30
- - uid: 474
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -41.5,50.5
- parent: 30
- - type: DeviceNetwork
- deviceLists:
- - 682
- uid: 645
components:
- type: Transform
@@ -65100,6 +64339,9 @@ entities:
- type: Transform
pos: -42.5,45.5
parent: 30
+ - type: DeviceNetwork
+ deviceLists:
+ - 21906
- uid: 1538
components:
- type: Transform
@@ -65108,6 +64350,24 @@ entities:
- type: DeviceNetwork
deviceLists:
- 22035
+ - uid: 2005
+ components:
+ - type: Transform
+ pos: -40.5,50.5
+ parent: 30
+ - type: DeviceNetwork
+ deviceLists:
+ - 21906
+ - 2541
+ - uid: 2006
+ components:
+ - type: Transform
+ pos: -38.5,50.5
+ parent: 30
+ - type: DeviceNetwork
+ deviceLists:
+ - 21906
+ - 2541
- uid: 2221
components:
- type: Transform
@@ -66220,15 +65480,6 @@ entities:
deviceLists:
- 22775
- 21888
- - uid: 22778
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -38.5,50.5
- parent: 30
- - type: DeviceNetwork
- deviceLists:
- - 682
- proto: Fireplace
entities:
- uid: 4984
@@ -66320,6 +65571,11 @@ entities:
- type: Transform
pos: -27.468573,58.960808
parent: 30
+ - uid: 22430
+ components:
+ - type: Transform
+ pos: -37.504288,48.94012
+ parent: 30
- uid: 22431
components:
- type: Transform
@@ -67011,7 +66267,7 @@ entities:
pos: -32.5,-11.5
parent: 30
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#03FCD3FF'
- proto: GasMinerCarbonDioxide
entities:
- uid: 8691
@@ -67245,51 +66501,45 @@ entities:
parent: 30
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 2248
- components:
- - type: Transform
- pos: -31.5,59.5
- parent: 30
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 2376
+ - uid: 2474
components:
- type: Transform
- pos: -31.5,54.5
+ rot: 1.5707963267948966 rad
+ pos: -50.5,37.5
parent: 30
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 2426
+ color: '#990000FF'
+ - uid: 2475
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -34.5,54.5
+ rot: 1.5707963267948966 rad
+ pos: -49.5,35.5
parent: 30
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 2474
+ - uid: 2576
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -50.5,37.5
+ pos: -33.5,53.5
parent: 30
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 2475
+ - uid: 2577
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -49.5,35.5
+ pos: -31.5,53.5
parent: 30
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 2576
+ - uid: 2578
components:
- type: Transform
- pos: -33.5,53.5
+ rot: -1.5707963267948966 rad
+ pos: -29.5,53.5
parent: 30
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- uid: 2579
components:
- type: Transform
@@ -68664,6 +67914,20 @@ entities:
parent: 30
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 22781
+ components:
+ - type: Transform
+ pos: -39.5,53.5
+ parent: 30
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22788
+ components:
+ - type: Transform
+ pos: -37.5,53.5
+ parent: 30
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 22799
components:
- type: Transform
@@ -68671,6 +67935,13 @@ entities:
parent: 30
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 22811
+ components:
+ - type: Transform
+ pos: -29.5,59.5
+ parent: 30
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- proto: GasPipeFourway
entities:
- uid: 2101
@@ -69033,14 +68304,6 @@ entities:
parent: 30
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 865
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -34.5,56.5
- parent: 30
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 874
components:
- type: Transform
@@ -69149,27 +68412,6 @@ entities:
parent: 30
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 1563
- components:
- - type: Transform
- pos: -41.5,51.5
- parent: 30
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1861
- components:
- - type: Transform
- pos: -41.5,52.5
- parent: 30
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1893
- components:
- - type: Transform
- pos: -41.5,49.5
- parent: 30
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 1929
components:
- type: Transform
@@ -69178,58 +68420,6 @@ entities:
parent: 30
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 2031
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,54.5
- parent: 30
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 2039
- components:
- - type: Transform
- pos: -38.5,52.5
- parent: 30
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 2043
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -40.5,48.5
- parent: 30
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 2061
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,54.5
- parent: 30
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 2076
- components:
- - type: Transform
- pos: -38.5,48.5
- parent: 30
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 2097
- components:
- - type: Transform
- pos: -38.5,49.5
- parent: 30
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 2098
- components:
- - type: Transform
- pos: -38.5,50.5
- parent: 30
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 2100
components:
- type: Transform
@@ -69237,43 +68427,6 @@ entities:
parent: 30
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 2250
- components:
- - type: Transform
- pos: -31.5,58.5
- parent: 30
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 2251
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -37.5,47.5
- parent: 30
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 2313
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -39.5,48.5
- parent: 30
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 2424
- components:
- - type: Transform
- pos: -38.5,51.5
- parent: 30
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 2431
- components:
- - type: Transform
- pos: -31.5,53.5
- parent: 30
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 2432
components:
- type: Transform
@@ -69759,10 +68912,11 @@ entities:
- uid: 2533
components:
- type: Transform
- pos: -41.5,50.5
+ rot: -1.5707963267948966 rad
+ pos: -39.5,47.5
parent: 30
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
- uid: 2534
components:
- type: Transform
@@ -69819,6 +68973,22 @@ entities:
parent: 30
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 2542
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -40.5,48.5
+ parent: 30
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2543
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -40.5,47.5
+ parent: 30
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 2555
components:
- type: Transform
@@ -69854,6 +69024,13 @@ entities:
parent: 30
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 2560
+ components:
+ - type: Transform
+ pos: -31.5,52.5
+ parent: 30
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 2561
components:
- type: Transform
@@ -69958,6 +69135,14 @@ entities:
parent: 30
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 2584
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -29.5,54.5
+ parent: 30
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 2585
components:
- type: Transform
@@ -69982,6 +69167,30 @@ entities:
parent: 30
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 2588
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -29.5,56.5
+ parent: 30
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2589
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -29.5,55.5
+ parent: 30
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2590
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -30.5,57.5
+ parent: 30
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 2591
components:
- type: Transform
@@ -76588,6 +75797,14 @@ entities:
parent: 30
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 8042
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -37.5,48.5
+ parent: 30
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 8049
components:
- type: Transform
@@ -76612,6 +75829,14 @@ entities:
parent: 30
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 8060
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -38.5,47.5
+ parent: 30
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 8061
components:
- type: Transform
@@ -85944,6 +85169,54 @@ entities:
parent: 30
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 22777
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -39.5,49.5
+ parent: 30
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22778
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -39.5,50.5
+ parent: 30
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22780
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -39.5,52.5
+ parent: 30
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22784
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -37.5,49.5
+ parent: 30
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22785
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -37.5,50.5
+ parent: 30
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22787
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -37.5,52.5
+ parent: 30
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 22800
components:
- type: Transform
@@ -85984,6 +85257,14 @@ entities:
parent: 30
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 22805
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -34.5,59.5
+ parent: 30
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 22806
components:
- type: Transform
@@ -86000,6 +85281,30 @@ entities:
parent: 30
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 22808
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -31.5,59.5
+ parent: 30
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22809
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -30.5,59.5
+ parent: 30
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22810
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -29.5,58.5
+ parent: 30
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 22832
components:
- type: Transform
@@ -86154,30 +85459,6 @@ entities:
parent: 30
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23131
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -34.5,55.5
- parent: 30
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23134
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -34.5,57.5
- parent: 30
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23135
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -34.5,58.5
- parent: 30
- - type: AtmosPipeColor
- color: '#0055CCFF'
- proto: GasPipeTJunction
entities:
- uid: 336
@@ -86202,29 +85483,6 @@ entities:
parent: 30
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 2042
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -38.5,47.5
- parent: 30
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 2060
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,52.5
- parent: 30
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 2121
- components:
- - type: Transform
- pos: -34.5,59.5
- parent: 30
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 2324
components:
- type: Transform
@@ -86233,11 +85491,11 @@ entities:
parent: 30
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 2425
+ - uid: 2431
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -41.5,48.5
+ rot: -1.5707963267948966 rad
+ pos: -29.5,57.5
parent: 30
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -86387,6 +85645,22 @@ entities:
parent: 30
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 2531
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -37.5,47.5
+ parent: 30
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2532
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -39.5,48.5
+ parent: 30
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 2549
components:
- type: Transform
@@ -86456,6 +85730,13 @@ entities:
parent: 30
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 2583
+ components:
+ - type: Transform
+ pos: -30.5,53.5
+ parent: 30
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 2596
components:
- type: Transform
@@ -89136,6 +88417,22 @@ entities:
parent: 30
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 22779
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -39.5,51.5
+ parent: 30
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22786
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -37.5,51.5
+ parent: 30
+ - type: AtmosPipeColor
+ color: '#990000FF'
- proto: GasPort
entities:
- uid: 6757
@@ -89296,7 +88593,7 @@ entities:
pos: -30.5,-10.5
parent: 30
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#03FCD3FF'
- uid: 8781
components:
- type: Transform
@@ -89489,33 +88786,6 @@ entities:
color: '#990000FF'
- proto: GasVentPump
entities:
- - uid: 2030
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,52.5
- parent: 30
- - type: DeviceNetwork
- deviceLists:
- - 21917
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 2059
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -41.5,47.5
- parent: 30
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 2249
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -31.5,57.5
- parent: 30
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 2451
components:
- type: Transform
@@ -89576,6 +88846,17 @@ entities:
parent: 30
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 2544
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -41.5,48.5
+ parent: 30
+ - type: DeviceNetwork
+ deviceLists:
+ - 21906
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 2573
components:
- type: Transform
@@ -89584,6 +88865,22 @@ entities:
parent: 30
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 2592
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -31.5,57.5
+ parent: 30
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2594
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -30.5,52.5
+ parent: 30
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 2638
components:
- type: Transform
@@ -90707,6 +90004,17 @@ entities:
- 22028
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 12595
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -40.5,51.5
+ parent: 30
+ - type: DeviceNetwork
+ deviceLists:
+ - 2541
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 12611
components:
- type: Transform
@@ -91264,6 +90572,17 @@ entities:
- 21888
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 22782
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -40.5,53.5
+ parent: 30
+ - type: DeviceNetwork
+ deviceLists:
+ - 2541
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 22797
components:
- type: Transform
@@ -91339,36 +90658,8 @@ entities:
- 22868
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23140
- components:
- - type: Transform
- pos: -41.5,53.5
- parent: 30
- - type: DeviceNetwork
- deviceLists:
- - 682
- - type: AtmosPipeColor
- color: '#0055CCFF'
- proto: GasVentScrubber
entities:
- - uid: 2083
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -39.5,47.5
- parent: 30
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 2099
- components:
- - type: Transform
- pos: -38.5,53.5
- parent: 30
- - type: DeviceNetwork
- deviceLists:
- - 682
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 2452
components:
- type: Transform
@@ -91442,6 +90733,17 @@ entities:
parent: 30
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 2545
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -41.5,47.5
+ parent: 30
+ - type: DeviceNetwork
+ deviceLists:
+ - 21906
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 2574
components:
- type: Transform
@@ -92602,6 +91904,17 @@ entities:
- 22062
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 13767
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -38.5,51.5
+ parent: 30
+ - type: DeviceNetwork
+ deviceLists:
+ - 2541
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 13782
components:
- type: Transform
@@ -92967,6 +92280,17 @@ entities:
- 21888
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 22783
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -38.5,53.5
+ parent: 30
+ - type: DeviceNetwork
+ deviceLists:
+ - 2541
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 22792
components:
- type: Transform
@@ -93963,16 +93287,6 @@ entities:
- type: Transform
pos: -20.5,52.5
parent: 30
- - uid: 1828
- components:
- - type: Transform
- pos: -26.5,58.5
- parent: 30
- - uid: 1844
- components:
- - type: Transform
- pos: -26.5,57.5
- parent: 30
- uid: 1856
components:
- type: Transform
@@ -93988,6 +93302,21 @@ entities:
- type: Transform
pos: -36.5,48.5
parent: 30
+ - uid: 1859
+ components:
+ - type: Transform
+ pos: -37.5,50.5
+ parent: 30
+ - uid: 1860
+ components:
+ - type: Transform
+ pos: -39.5,50.5
+ parent: 30
+ - uid: 1861
+ components:
+ - type: Transform
+ pos: -41.5,50.5
+ parent: 30
- uid: 1862
components:
- type: Transform
@@ -94038,6 +93367,23 @@ entities:
- type: Transform
pos: -27.5,52.5
parent: 30
+ - uid: 1921
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -41.5,52.5
+ parent: 30
+ - uid: 1922
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -37.5,52.5
+ parent: 30
+ - uid: 1925
+ components:
+ - type: Transform
+ pos: -39.5,52.5
+ parent: 30
- uid: 1930
components:
- type: Transform
@@ -94108,12 +93454,6 @@ entities:
- type: Transform
pos: 46.5,49.5
parent: 30
- - uid: 2024
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -39.5,50.5
- parent: 30
- uid: 2052
components:
- type: Transform
@@ -94149,12 +93489,32 @@ entities:
- type: Transform
pos: -28.5,61.5
parent: 30
+ - uid: 2059
+ components:
+ - type: Transform
+ pos: -26.5,58.5
+ parent: 30
+ - uid: 2060
+ components:
+ - type: Transform
+ pos: -26.5,59.5
+ parent: 30
+ - uid: 2061
+ components:
+ - type: Transform
+ pos: -26.5,60.5
+ parent: 30
- uid: 2064
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -36.5,60.5
parent: 30
+ - uid: 2091
+ components:
+ - type: Transform
+ pos: -29.5,63.5
+ parent: 30
- uid: 2093
components:
- type: Transform
@@ -94230,18 +93590,6 @@ entities:
- type: Transform
pos: -53.5,72.5
parent: 30
- - uid: 2589
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -31.5,63.5
- parent: 30
- - uid: 2590
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,63.5
- parent: 30
- uid: 2933
components:
- type: Transform
@@ -94344,12 +93692,6 @@ entities:
- type: Transform
pos: -23.5,36.5
parent: 30
- - uid: 5025
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -40.5,50.5
- parent: 30
- uid: 5075
components:
- type: Transform
@@ -96919,6 +96261,12 @@ entities:
- type: Transform
pos: 17.5,63.5
parent: 30
+ - uid: 15280
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -31.5,63.5
+ parent: 30
- uid: 15336
components:
- type: Transform
@@ -99740,11 +99088,6 @@ entities:
- type: Transform
pos: -11.5,54.5
parent: 30
- - uid: 22788
- components:
- - type: Transform
- pos: -26.5,59.5
- parent: 30
- uid: 22823
components:
- type: Transform
@@ -100131,12 +99474,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -66.5,-70.5
parent: 30
- - uid: 23168
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,63.5
- parent: 30
- proto: GrilleBroken
entities:
- uid: 695
@@ -100478,15 +99815,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -19.5,-31.5
parent: 30
- - uid: 20891
- components:
- - type: Transform
- anchored: False
- rot: -1.5707963267948966 rad
- pos: -25.5,63.5
- parent: 30
- - type: Physics
- bodyType: Dynamic
- uid: 21113
components:
- type: Transform
@@ -100617,98 +99945,32 @@ entities:
parent: 30
- proto: GunSafeDisabler
entities:
- - uid: 4698
+ - uid: 726
components:
- type: Transform
- anchored: True
- pos: -37.5,53.5
+ pos: -41.5,55.5
parent: 30
- - type: Physics
- bodyType: Static
-- proto: GunSafePistolMk58
+- proto: GunSafeLaserCarbine
entities:
- - uid: 2594
+ - uid: 1942
components:
- type: Transform
- anchored: True
pos: -37.5,54.5
parent: 30
- - type: Physics
- bodyType: Static
- proto: GunSafeRifleLecter
entities:
- - uid: 21165
- components:
- - type: MetaData
- desc: A standard-issue Nanotrasen storage unit, containing 3 Lecter submachine guns.
- - type: Transform
- anchored: True
- pos: -42.5,53.5
- parent: 30
- - type: Physics
- bodyType: Static
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 21283
- - 21906
- - 21907
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
-- proto: GunSafeShotgunKammerer
- entities:
- - uid: 16251
+ - uid: 1940
components:
- - type: MetaData
- desc: A standard-issue Nanotrasen storage unit, containing 3 Kammerer shotguns.
- type: Transform
- anchored: True
- pos: -42.5,55.5
+ pos: -41.5,53.5
parent: 30
- - type: Physics
- bodyType: Static
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 16932
- - 17473
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- proto: GunSafeSubMachineGunDrozd
entities:
- - uid: 18838
+ - uid: 20778
components:
- - type: MetaData
- desc: A standard-issue Nanotrasen storage unit, containing 3 Drozd submachine guns.
- type: Transform
- anchored: True
- pos: -42.5,54.5
+ pos: -37.5,53.5
parent: 30
- - type: Physics
- bodyType: Static
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 19841
- - 20432
- - 20525
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- proto: Handcuffs
entities:
- uid: 5839
@@ -101228,10 +100490,10 @@ entities:
parent: 30
- proto: HolopadSecurityArmory
entities:
- - uid: 20798
+ - uid: 22935
components:
- type: Transform
- pos: -39.5,52.5
+ pos: -39.5,53.5
parent: 30
- uid: 22944
components:
@@ -101302,10 +100564,10 @@ entities:
parent: 30
- proto: HolopadSecurityWarden
entities:
- - uid: 2541
+ - uid: 22937
components:
- type: Transform
- pos: -39.5,48.5
+ pos: -40.5,47.5
parent: 30
- proto: HolopadServiceBar
entities:
@@ -103320,16 +102582,16 @@ entities:
rot: 3.141592653589793 rad
pos: 15.5,-7.5
parent: 30
- - uid: 7609
+ - uid: 1753
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,-0.5
+ pos: -33.5,37.5
parent: 30
- - uid: 14249
+ - uid: 7609
components:
- type: Transform
- pos: -35.5,37.5
+ rot: -1.5707963267948966 rad
+ pos: -8.5,-0.5
parent: 30
- proto: JetpackBlueFilled
entities:
@@ -103352,15 +102614,15 @@ entities:
parent: 30
- proto: JetpackSecurityFilled
entities:
- - uid: 1984
+ - uid: 12815
components:
- type: Transform
- pos: -41.5765,56.69822
+ pos: -39.62777,56.71206
parent: 30
- - uid: 23165
+ - uid: 12859
components:
- type: Transform
- pos: -41.377563,56.522953
+ pos: -39.62777,56.71206
parent: 30
- proto: KitchenElectricGrill
entities:
@@ -103677,68 +102939,6 @@ entities:
- type: Transform
pos: -3.5786777,63.79637
parent: 30
-- proto: LockableButtonArmory
- entities:
- - uid: 1988
- components:
- - type: MetaData
- name: Close Armory
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -39.5,50.5
- parent: 30
- - type: DeviceLinkSource
- linkedPorts:
- 1943:
- - Pressed: Close
- 1986:
- - Pressed: Close
- 4788:
- - Pressed: Close
- 2407:
- - Pressed: Close
- 2006:
- - Pressed: Close
- 2216:
- - Pressed: Close
- 1753:
- - Pressed: Close
- 3180:
- - Pressed: Close
- - uid: 2578
- components:
- - type: MetaData
- name: Open Armory
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -40.5,50.5
- parent: 30
- - type: DeviceLinkSource
- linkedPorts:
- 1986:
- - Pressed: Open
- - Pressed: AutoClose
- 1943:
- - Pressed: Open
- - Pressed: AutoClose
- 4788:
- - Pressed: Open
- - Pressed: AutoClose
- 2407:
- - Pressed: AutoClose
- - Pressed: Open
- 3180:
- - Pressed: Open
- - Pressed: AutoClose
- 1753:
- - Pressed: Open
- - Pressed: AutoClose
- 2216:
- - Pressed: Open
- - Pressed: AutoClose
- 2006:
- - Pressed: Open
- - Pressed: AutoClose
- proto: LockerAtmosphericsFilled
entities:
- uid: 9079
@@ -104106,21 +103306,98 @@ entities:
parent: 30
- proto: LockerEvidence
entities:
- - uid: 1917
+ - uid: 2248
components:
- type: Transform
- pos: -50.5,55.5
+ pos: -44.5,51.5
parent: 30
- - uid: 1918
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 3.4430928
+ - 12.952587
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 2249
components:
- type: Transform
- pos: -52.5,55.5
+ pos: -44.5,52.5
parent: 30
- - uid: 1935
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 3.4430928
+ - 12.952587
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 2250
components:
- type: Transform
- pos: -51.5,55.5
+ pos: -44.5,53.5
parent: 30
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 3.4430928
+ - 12.952587
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 2376
+ components:
+ - type: Transform
+ pos: -44.5,56.5
+ parent: 30
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 3.4430928
+ - 12.952587
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
- uid: 3500
components:
- type: Transform
@@ -104778,16 +104055,6 @@ entities:
- 0
- 0
- 0
- - uid: 1854
- components:
- - type: Transform
- pos: -31.5,56.5
- parent: 30
- - uid: 1860
- components:
- - type: Transform
- pos: -33.5,56.5
- parent: 30
- uid: 2079
components:
- type: Transform
@@ -104880,23 +104147,31 @@ entities:
- 0
- 0
- 0
- - uid: 22430
- components:
- - type: Transform
- pos: -32.5,56.5
- parent: 30
- - uid: 22538
- components:
- - type: Transform
- pos: -34.5,56.5
- parent: 30
- proto: LockerWardenFilled
entities:
- - uid: 21012
+ - uid: 2010
components:
- type: Transform
- pos: -38.5,46.5
+ pos: -44.5,49.5
parent: 30
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 3.4430928
+ - 12.952587
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
- proto: LockerWeldingSuppliesFilled
entities:
- uid: 4773
@@ -105009,22 +104284,6 @@ entities:
- type: Transform
pos: -6.5,-12.5
parent: 30
-- proto: MagazinePistolSubMachineGun
- entities:
- - uid: 19841
- components:
- - type: Transform
- parent: 18838
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 20525
- components:
- - type: Transform
- parent: 18838
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- proto: MagazinePistolSubMachineGunTopMounted
entities:
- uid: 1999
@@ -105037,22 +104296,6 @@ entities:
- type: Transform
pos: -22.54349,53.796127
parent: 30
-- proto: MagazineRifle
- entities:
- - uid: 21283
- components:
- - type: Transform
- parent: 21165
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 21906
- components:
- - type: Transform
- parent: 21165
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- proto: MaintenanceFluffSpawner
entities:
- uid: 9199
@@ -106825,78 +106068,6 @@ entities:
- type: Transform
pos: 27.5,-30.5
parent: 30
-- proto: PlasmaReinforcedWindowDirectional
- entities:
- - uid: 2028
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -40.5,53.5
- parent: 30
- - uid: 2091
- components:
- - type: Transform
- pos: -40.5,54.5
- parent: 30
- - uid: 2532
- components:
- - type: Transform
- pos: -39.5,54.5
- parent: 30
- - uid: 2592
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -39.5,54.5
- parent: 30
- - uid: 4595
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -39.5,53.5
- parent: 30
- - uid: 4600
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -39.5,53.5
- parent: 30
- - uid: 4781
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -40.5,54.5
- parent: 30
- - uid: 21013
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -40.5,53.5
- parent: 30
-- proto: PlasmaWindoorSecureArmoryLocked
- entities:
- - uid: 1943
- components:
- - type: Transform
- pos: -39.5,53.5
- parent: 30
- - uid: 1986
- components:
- - type: Transform
- pos: -40.5,53.5
- parent: 30
- - uid: 2407
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -39.5,54.5
- parent: 30
- - uid: 4788
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -40.5,54.5
- parent: 30
- proto: PlasticFlapsAirtightClear
entities:
- uid: 11228
@@ -107041,26 +106212,16 @@ entities:
parent: 30
- proto: PortableFlasher
entities:
- - uid: 4675
+ - uid: 1917
components:
- type: Transform
- anchored: False
- pos: -45.5,54.5
+ pos: -39.5,51.5
parent: 30
- - type: TriggerOnProximity
- enabled: False
- - type: Physics
- bodyType: Dynamic
- - uid: 22776
+ - uid: 1920
components:
- type: Transform
- anchored: False
- pos: -45.5,53.5
+ pos: -39.5,49.5
parent: 30
- - type: TriggerOnProximity
- enabled: False
- - type: Physics
- bodyType: Dynamic
- proto: PortableGeneratorJrPacman
entities:
- uid: 11157
@@ -108253,6 +107414,13 @@ entities:
- type: Transform
pos: 12.5,-25.5
parent: 30
+ - uid: 2024
+ components:
+ - type: Transform
+ pos: -37.5,48.5
+ parent: 30
+ - type: Physics
+ canCollide: False
- uid: 7470
components:
- type: Transform
@@ -108409,18 +107577,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -25.5,-43.5
parent: 30
- - uid: 1939
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -44.5,47.5
- parent: 30
- - uid: 1985
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -37.5,52.5
- parent: 30
- uid: 3203
components:
- type: Transform
@@ -108782,6 +107938,13 @@ entities:
parent: 30
- type: ApcPowerReceiver
powerLoad: 0
+ - uid: 4783
+ components:
+ - type: Transform
+ pos: -43.5,49.5
+ parent: 30
+ - type: ApcPowerReceiver
+ powerLoad: 0
- uid: 4784
components:
- type: Transform
@@ -108790,6 +107953,14 @@ entities:
parent: 30
- type: ApcPowerReceiver
powerLoad: 0
+ - uid: 4785
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -41.5,55.5
+ parent: 30
+ - type: ApcPowerReceiver
+ powerLoad: 0
- uid: 4786
components:
- type: Transform
@@ -108798,6 +107969,22 @@ entities:
parent: 30
- type: ApcPowerReceiver
powerLoad: 0
+ - uid: 4787
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -41.5,51.5
+ parent: 30
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 4788
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -37.5,51.5
+ parent: 30
+ - type: ApcPowerReceiver
+ powerLoad: 0
- uid: 4790
components:
- type: Transform
@@ -110492,24 +109679,12 @@ entities:
parent: 30
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 22935
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -42.5,55.5
- parent: 30
- uid: 22991
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 29.5,42.5
parent: 30
- - uid: 23164
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -42.5,52.5
- parent: 30
- proto: PoweredlightExterior
entities:
- uid: 833
@@ -112106,11 +111281,6 @@ entities:
- type: Transform
pos: -16.5,20.5
parent: 30
- - uid: 726
- components:
- - type: Transform
- pos: -40.5,53.5
- parent: 30
- uid: 789
components:
- type: Transform
@@ -112136,30 +111306,15 @@ entities:
- type: Transform
pos: -32.5,29.5
parent: 30
- - uid: 1946
- components:
- - type: Transform
- pos: -41.5,56.5
- parent: 30
- - uid: 1978
- components:
- - type: Transform
- pos: -38.5,56.5
- parent: 30
- - uid: 1979
- components:
- - type: Transform
- pos: -39.5,56.5
- parent: 30
- - uid: 4598
+ - uid: 1939
components:
- type: Transform
- pos: -40.5,56.5
+ pos: -41.5,54.5
parent: 30
- - uid: 5417
+ - uid: 1943
components:
- type: Transform
- pos: -39.5,53.5
+ pos: -37.5,55.5
parent: 30
- uid: 6276
components:
@@ -112434,16 +111589,6 @@ entities:
- type: Transform
pos: 33.5,28.5
parent: 30
- - uid: 22783
- components:
- - type: Transform
- pos: -39.5,54.5
- parent: 30
- - uid: 22784
- components:
- - type: Transform
- pos: -40.5,54.5
- parent: 30
- proto: RadiationCollectorFullTank
entities:
- uid: 9419
@@ -114337,20 +113482,37 @@ entities:
- type: Transform
pos: -45.5,48.5
parent: 30
+ - uid: 1844
+ components:
+ - type: Transform
+ pos: -37.5,50.5
+ parent: 30
+ - uid: 1845
+ components:
+ - type: Transform
+ pos: -39.5,50.5
+ parent: 30
+ - uid: 1846
+ components:
+ - type: Transform
+ pos: -41.5,50.5
+ parent: 30
- uid: 1879
components:
- type: Transform
pos: -34.5,55.5
parent: 30
- - uid: 1922
+ - uid: 1916
components:
- type: Transform
- pos: -26.5,59.5
+ rot: 3.141592653589793 rad
+ pos: -41.5,52.5
parent: 30
- - uid: 1925
+ - uid: 1918
components:
- type: Transform
- pos: -26.5,58.5
+ rot: 3.141592653589793 rad
+ pos: -37.5,52.5
parent: 30
- uid: 1928
components:
@@ -114382,6 +113544,21 @@ entities:
- type: Transform
pos: 36.5,36.5
parent: 30
+ - uid: 2041
+ components:
+ - type: Transform
+ pos: -26.5,58.5
+ parent: 30
+ - uid: 2042
+ components:
+ - type: Transform
+ pos: -26.5,59.5
+ parent: 30
+ - uid: 2043
+ components:
+ - type: Transform
+ pos: -26.5,60.5
+ parent: 30
- uid: 2044
components:
- type: Transform
@@ -114438,17 +113615,6 @@ entities:
- type: Transform
pos: -55.5,-10.5
parent: 30
- - uid: 2545
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -39.5,50.5
- parent: 30
- - uid: 2588
- components:
- - type: Transform
- pos: -26.5,57.5
- parent: 30
- uid: 3168
components:
- type: Transform
@@ -114519,6 +113685,11 @@ entities:
rot: 1.5707963267948966 rad
pos: -7.5,28.5
parent: 30
+ - uid: 5025
+ components:
+ - type: Transform
+ pos: -39.5,52.5
+ parent: 30
- uid: 5071
components:
- type: Transform
@@ -117110,12 +116281,6 @@ entities:
- type: Transform
pos: 7.5,21.5
parent: 30
- - uid: 21015
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -40.5,50.5
- parent: 30
- uid: 21052
components:
- type: Transform
@@ -117304,72 +116469,6 @@ entities:
- type: Transform
pos: 33.5,15.5
parent: 30
-- proto: RiotBulletShield
- entities:
- - uid: 23152
- components:
- - type: Transform
- pos: -40.217842,56.710453
- parent: 30
- - uid: 23153
- components:
- - type: Transform
- pos: -40.2109,56.599342
- parent: 30
- - uid: 23154
- components:
- - type: Transform
- pos: -40.20395,56.50212
- parent: 30
- - uid: 23155
- components:
- - type: Transform
- pos: -40.20395,56.411842
- parent: 30
-- proto: RiotLaserShield
- entities:
- - uid: 23156
- components:
- - type: Transform
- pos: -40.731728,56.710453
- parent: 30
- - uid: 23157
- components:
- - type: Transform
- pos: -40.731728,56.61323
- parent: 30
- - uid: 23158
- components:
- - type: Transform
- pos: -40.731728,56.51601
- parent: 30
- - uid: 23159
- components:
- - type: Transform
- pos: -40.731728,56.43268
- parent: 30
-- proto: RiotShield
- entities:
- - uid: 23160
- components:
- - type: Transform
- pos: -40.45395,56.7174
- parent: 30
- - uid: 23161
- components:
- - type: Transform
- pos: -40.45395,56.61323
- parent: 30
- - uid: 23162
- components:
- - type: Transform
- pos: -40.45395,56.5299
- parent: 30
- - uid: 23163
- components:
- - type: Transform
- pos: -40.45395,56.45351
- parent: 30
- proto: RobocopCircuitBoard
entities:
- uid: 21675
@@ -117525,11 +116624,16 @@ entities:
parent: 30
- proto: SecurityTechFab
entities:
- - uid: 12131
+ - uid: 1937
components:
- type: Transform
- pos: -37.5,55.5
+ pos: -39.5,54.5
parent: 30
+ - type: MaterialStorage
+ materialWhiteList:
+ - Glass
+ - Plastic
+ - Steel
- proto: SeedExtractor
entities:
- uid: 2345
@@ -117740,7 +116844,7 @@ entities:
- uid: 1349
components:
- type: Transform
- pos: -40.438583,53.480904
+ pos: -37.50003,55.530113
parent: 30
- uid: 5030
components:
@@ -118617,6 +117721,31 @@ entities:
- Pressed: Open
988:
- Pressed: Open
+ - uid: 3180
+ components:
+ - type: Transform
+ pos: -37.5,45.5
+ parent: 30
+ - type: DeviceLinkSource
+ linkedPorts:
+ 5700:
+ - Pressed: Toggle
+ 5698:
+ - Pressed: Toggle
+ 3177:
+ - Pressed: Toggle
+ 3176:
+ - Pressed: Toggle
+ 3185:
+ - Pressed: Toggle
+ 3184:
+ - Pressed: Toggle
+ 3183:
+ - Pressed: Toggle
+ 3182:
+ - Pressed: Toggle
+ 3181:
+ - Pressed: Toggle
- uid: 3189
components:
- type: MetaData
@@ -118675,6 +117804,18 @@ entities:
- Pressed: Toggle
5078:
- Pressed: Toggle
+ - uid: 5417
+ components:
+ - type: MetaData
+ name: Janitorial Service Light
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -29.5,40.5
+ parent: 30
+ - type: DeviceLinkSource
+ linkedPorts:
+ 1753:
+ - Pressed: Toggle
- uid: 6868
components:
- type: Transform
@@ -118803,17 +117944,6 @@ entities:
- Pressed: Toggle
9188:
- Pressed: Toggle
- - uid: 12859
- components:
- - type: MetaData
- name: Custodial Service
- - type: Transform
- pos: -36.5,45.5
- parent: 30
- - type: DeviceLinkSource
- linkedPorts:
- 14249:
- - Pressed: Toggle
- uid: 16041
components:
- type: Transform
@@ -118844,6 +117974,34 @@ entities:
linkedPorts:
6415:
- Pressed: DoorBolt
+ - uid: 20432
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -36.5,56.5
+ parent: 30
+ - type: DeviceLinkSource
+ linkedPorts:
+ 2189:
+ - Pressed: Toggle
+ 20391:
+ - Pressed: Toggle
+ 20401:
+ - Pressed: Toggle
+ 20402:
+ - Pressed: Toggle
+ 18840:
+ - Pressed: Toggle
+ 20360:
+ - Pressed: Toggle
+ 20389:
+ - Pressed: Toggle
+ 18838:
+ - Pressed: Toggle
+ 17473:
+ - Pressed: Toggle
+ 2313:
+ - Pressed: Toggle
- proto: SignalSwitch
entities:
- uid: 11021
@@ -118863,87 +118021,8 @@ entities:
11015:
- On: Open
- Off: Close
- - uid: 23173
- components:
- - type: MetaData
- name: Lockdown Cells
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -44.5,46.5
- parent: 30
- - type: DeviceLinkSource
- linkedPorts:
- 3181:
- - On: Open
- - Off: Close
- 3182:
- - On: Open
- - Off: Close
- 3183:
- - On: Open
- - Off: Close
- 3184:
- - On: Open
- - Off: Close
- 3185:
- - On: Open
- - Off: Close
- 3176:
- - On: Open
- - Off: Close
- 3177:
- - On: Open
- - Off: Close
- 5698:
- - On: Open
- - Off: Close
- 5700:
- - On: Open
- - Off: Close
- proto: SignalSwitchDirectional
entities:
- - uid: 1845
- components:
- - type: MetaData
- name: Window Blast Doors
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.5,56.5
- parent: 30
- - type: SignalSwitch
- state: True
- - type: DeviceLinkSource
- linkedPorts:
- 20391:
- - On: Open
- - Off: Close
- 20401:
- - On: Open
- - Off: Close
- 20402:
- - On: Open
- - Off: Close
- 18840:
- - On: Open
- - Off: Close
- 20360:
- - On: Open
- - Off: Close
- 20389:
- - On: Open
- - Off: Close
- 2584:
- - On: Open
- - Off: Close
- 8060:
- - On: Open
- - Off: Close
- 9292:
- - On: Open
- - Off: Close
- 2189:
- - On: Open
- - Off: Close
- uid: 3131
components:
- type: Transform
@@ -120072,6 +119151,11 @@ entities:
parent: 30
- proto: SignSecureMedRed
entities:
+ - uid: 2407
+ components:
+ - type: Transform
+ pos: -36.5,45.5
+ parent: 30
- uid: 2408
components:
- type: Transform
@@ -122395,46 +121479,26 @@ entities:
parent: 30
- proto: SpawnPointSecurityCadet
entities:
- - uid: 1936
+ - uid: 20798
components:
- type: Transform
pos: -31.5,57.5
parent: 30
- - uid: 14435
+ - uid: 20799
components:
- type: Transform
- pos: -31.5,59.5
+ pos: -34.5,57.5
parent: 30
- - uid: 20531
+ - uid: 20891
components:
- type: Transform
pos: -32.5,57.5
parent: 30
- - uid: 20573
+ - uid: 20892
components:
- type: Transform
pos: -33.5,57.5
parent: 30
- - uid: 20778
- components:
- - type: Transform
- pos: -34.5,57.5
- parent: 30
- - uid: 21908
- components:
- - type: Transform
- pos: -34.5,59.5
- parent: 30
- - uid: 22809
- components:
- - type: Transform
- pos: -32.5,59.5
- parent: 30
- - uid: 22811
- components:
- - type: Transform
- pos: -33.5,59.5
- parent: 30
- proto: SpawnPointSecurityOfficer
entities:
- uid: 2224
@@ -122457,26 +121521,6 @@ entities:
- type: Transform
pos: -31.5,59.5
parent: 30
- - uid: 15280
- components:
- - type: Transform
- pos: -34.5,57.5
- parent: 30
- - uid: 16243
- components:
- - type: Transform
- pos: -32.5,57.5
- parent: 30
- - uid: 16244
- components:
- - type: Transform
- pos: -33.5,57.5
- parent: 30
- - uid: 22810
- components:
- - type: Transform
- pos: -31.5,57.5
- parent: 30
- proto: SpawnPointServiceWorker
entities:
- uid: 20889
@@ -123158,6 +122202,48 @@ entities:
- type: Transform
pos: 36.5,7.5
parent: 30
+- proto: Stunbaton
+ entities:
+ - uid: 2030
+ components:
+ - type: Transform
+ pos: -41.61499,49.505306
+ parent: 30
+ - type: ContainerContainer
+ containers:
+ cell_slot: !type:ContainerSlot {}
+ - uid: 2031
+ components:
+ - type: Transform
+ pos: -41.39624,49.48968
+ parent: 30
+ - type: ContainerContainer
+ containers:
+ cell_slot: !type:ContainerSlot {}
+ - uid: 2097
+ components:
+ - type: Transform
+ pos: -33.61344,56.52216
+ parent: 30
+ - type: ContainerContainer
+ containers:
+ cell_slot: !type:ContainerSlot {}
+ - uid: 2098
+ components:
+ - type: Transform
+ pos: -33.472816,56.52216
+ parent: 30
+ - type: ContainerContainer
+ containers:
+ cell_slot: !type:ContainerSlot {}
+ - uid: 2099
+ components:
+ - type: Transform
+ pos: -33.30094,56.506535
+ parent: 30
+ - type: ContainerContainer
+ containers:
+ cell_slot: !type:ContainerSlot {}
- proto: SubstationBasic
entities:
- uid: 1414
@@ -123397,32 +122483,68 @@ entities:
parent: 30
- proto: SuitStorageSec
entities:
- - uid: 20799
+ - uid: 774
components:
- type: Transform
- pos: -37.5,51.5
+ pos: -38.5,56.5
parent: 30
- - uid: 22785
+ - 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: 782
components:
- type: Transform
- pos: -42.5,51.5
+ pos: -40.5,56.5
parent: 30
- - uid: 22786
+ - 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: 1990
components:
- type: Transform
- pos: -42.5,52.5
+ pos: -37.5,51.5
parent: 30
- - uid: 23133
+ - uid: 2028
components:
- type: Transform
- pos: -37.5,52.5
+ pos: -41.5,51.5
parent: 30
- proto: SuitStorageWarden
entities:
- - uid: 2010
+ - uid: 5052
components:
- type: Transform
- pos: -37.5,46.5
+ pos: -38.5,46.5
parent: 30
- proto: SurveillanceCameraCommand
entities:
@@ -124800,7 +123922,7 @@ entities:
parent: 30
- proto: SurveillanceCameraRouterSecurity
entities:
- - uid: 1940
+ - uid: 1946
components:
- type: Transform
pos: -37.5,56.5
@@ -124939,39 +124061,28 @@ entities:
- SurveillanceCameraSecurity
nameSet: True
id: Sec Perma Corridor
- - uid: 4681
+ - uid: 10190
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -37.5,56.5
+ rot: -1.5707963267948966 rad
+ pos: -41.5,65.5
parent: 30
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraSecurity
nameSet: True
- id: Armory
- - uid: 4752
+ id: Armory Space View
+ - uid: 21165
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -42.5,49.5
- parent: 30
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: Warden's Office
- - uid: 10190
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,65.5
+ pos: -39.5,56.5
parent: 30
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraSecurity
nameSet: True
- id: Armory Space View
+ id: Armory
- uid: 21166
components:
- type: Transform
@@ -125101,6 +124212,17 @@ entities:
- SurveillanceCameraSecurity
nameSet: True
id: Sec Med Office
+ - uid: 21283
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -41.5,49.5
+ parent: 30
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Warden's Office
- uid: 21284
components:
- type: Transform
@@ -125609,11 +124731,31 @@ entities:
- type: Transform
pos: -37.5,49.5
parent: 30
+ - uid: 2023
+ components:
+ - type: Transform
+ pos: -41.5,49.5
+ parent: 30
- uid: 2065
components:
- type: Transform
pos: -38.5,60.5
parent: 30
+ - uid: 2074
+ components:
+ - type: Transform
+ pos: -33.5,56.5
+ parent: 30
+ - uid: 2075
+ components:
+ - type: Transform
+ pos: -32.5,56.5
+ parent: 30
+ - uid: 2076
+ components:
+ - type: Transform
+ pos: -31.5,56.5
+ parent: 30
- uid: 2103
components:
- type: Transform
@@ -125714,6 +124856,11 @@ entities:
- type: Transform
pos: -44.5,58.5
parent: 30
+ - uid: 2424
+ components:
+ - type: Transform
+ pos: -51.5,55.5
+ parent: 30
- uid: 3130
components:
- type: Transform
@@ -126950,10 +126097,14 @@ entities:
- type: Transform
pos: -42.5,45.5
parent: 30
- - uid: 1989
+ - uid: 1935
+ components:
+ - type: Transform
+ pos: -39.5,56.5
+ parent: 30
+ - uid: 2011
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -44.5,46.5
parent: 30
- uid: 4357
@@ -127231,6 +126382,11 @@ entities:
- type: Transform
pos: -33.5,58.5
parent: 30
+ - uid: 2251
+ components:
+ - type: Transform
+ pos: -44.5,54.5
+ parent: 30
- uid: 21467
components:
- type: Transform
@@ -127977,8 +127133,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -40.5,59.5
parent: 30
- - type: DamagePopup
- damagePopupType: Total
- proto: TegCenter
entities:
- uid: 9817
@@ -128004,13 +127158,6 @@ entities:
parent: 30
- type: PointLight
color: '#FF3300FF'
-- proto: TelecomServer
- entities:
- - uid: 20892
- components:
- - type: Transform
- pos: -42.5,56.5
- parent: 30
- proto: TelecomServerFilledCargo
entities:
- uid: 10551
@@ -129030,13 +128177,6 @@ entities:
- type: Transform
pos: -38.5,-5.5
parent: 30
-- proto: VendingMachineDonut
- entities:
- - uid: 2022
- components:
- - type: Transform
- pos: -30.5,54.5
- parent: 30
- proto: VendingMachineEngiDrobe
entities:
- uid: 19406
@@ -129171,11 +128311,6 @@ entities:
- type: Transform
pos: -29.5,60.5
parent: 30
- - uid: 22808
- components:
- - type: Transform
- pos: -30.5,60.5
- parent: 30
- proto: VendingMachineSecDrobe
entities:
- uid: 2078
@@ -130466,6 +129601,11 @@ entities:
- type: Transform
pos: -42.5,50.5
parent: 30
+ - uid: 1854
+ components:
+ - type: Transform
+ pos: -36.5,49.5
+ parent: 30
- uid: 1855
components:
- type: Transform
@@ -130536,6 +129676,36 @@ entities:
- type: Transform
pos: -42.5,57.5
parent: 30
+ - uid: 1893
+ components:
+ - type: Transform
+ pos: -42.5,56.5
+ parent: 30
+ - uid: 1894
+ components:
+ - type: Transform
+ pos: -42.5,55.5
+ parent: 30
+ - uid: 1895
+ components:
+ - type: Transform
+ pos: -42.5,54.5
+ parent: 30
+ - uid: 1896
+ components:
+ - type: Transform
+ pos: -42.5,53.5
+ parent: 30
+ - uid: 1897
+ components:
+ - type: Transform
+ pos: -42.5,52.5
+ parent: 30
+ - uid: 1898
+ components:
+ - type: Transform
+ pos: -42.5,51.5
+ parent: 30
- uid: 1899
components:
- type: Transform
@@ -130546,6 +129716,11 @@ entities:
- type: Transform
pos: -43.5,52.5
parent: 30
+ - uid: 1901
+ components:
+ - type: Transform
+ pos: -43.5,53.5
+ parent: 30
- uid: 1902
components:
- type: Transform
@@ -130576,21 +129751,11 @@ entities:
- type: Transform
pos: -42.5,58.5
parent: 30
- - uid: 1916
- components:
- - type: Transform
- pos: -26.5,60.5
- parent: 30
- uid: 1952
components:
- type: Transform
pos: -51.5,-65.5
parent: 30
- - uid: 2005
- components:
- - type: Transform
- pos: -44.5,54.5
- parent: 30
- uid: 2034
components:
- type: Transform
@@ -130616,6 +129781,11 @@ entities:
- type: Transform
pos: -26.5,61.5
parent: 30
+ - uid: 2039
+ components:
+ - type: Transform
+ pos: -26.5,57.5
+ parent: 30
- uid: 2067
components:
- type: Transform
@@ -130986,12 +130156,6 @@ entities:
- type: Transform
pos: -51.5,6.5
parent: 30
- - uid: 2543
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -37.5,50.5
- parent: 30
- uid: 3153
components:
- type: Transform
@@ -131063,16 +130227,6 @@ entities:
- type: Transform
pos: 41.5,20.5
parent: 30
- - uid: 4602
- components:
- - type: Transform
- pos: -44.5,51.5
- parent: 30
- - uid: 4677
- components:
- - type: Transform
- pos: -44.5,56.5
- parent: 30
- uid: 4730
components:
- type: Transform
@@ -138406,33 +137560,6 @@ entities:
- type: Transform
pos: -44.5,73.5
parent: 30
- - uid: 22779
- components:
- - type: Transform
- pos: -44.5,52.5
- parent: 30
- - uid: 22780
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.5,49.5
- parent: 30
- - uid: 22787
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -43.5,53.5
- parent: 30
- - uid: 22805
- components:
- - type: Transform
- pos: -44.5,55.5
- parent: 30
- - uid: 23169
- components:
- - type: Transform
- pos: -44.5,53.5
- parent: 30
- proto: WallSolid
entities:
- uid: 3
@@ -140235,12 +139362,6 @@ entities:
- type: Transform
pos: -12.5,0.5
parent: 30
- - uid: 2075
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,55.5
- parent: 30
- uid: 2211
components:
- type: Transform
@@ -140266,6 +139387,11 @@ entities:
- type: Transform
pos: -49.5,55.5
parent: 30
+ - uid: 2216
+ components:
+ - type: Transform
+ pos: -44.5,55.5
+ parent: 30
- uid: 2217
components:
- type: Transform
@@ -144545,6 +143671,29 @@ entities:
- 0
- proto: WardrobeSecurityFilled
entities:
+ - uid: 2083
+ components:
+ - type: Transform
+ pos: -30.5,60.5
+ parent: 30
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 3.4430928
+ - 12.952587
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
- uid: 6754
components:
- type: Transform
@@ -144654,11 +143803,6 @@ entities:
- type: Transform
pos: -23.5,15.5
parent: 30
- - uid: 4782
- components:
- - type: Transform
- pos: -28.5,48.5
- parent: 30
- uid: 11611
components:
- type: Transform
@@ -144847,44 +143991,34 @@ entities:
parent: 30
- type: Physics
canCollide: False
-- proto: WeaponDisablerPractice
+- proto: WeaponDisabler
entities:
- - uid: 19811
- components:
- - type: Transform
- pos: -38.42729,60.595303
- parent: 30
-- proto: WeaponLaserCarbine
- entities:
- - uid: 2560
- components:
- - type: Transform
- pos: -39.548477,54.613476
- parent: 30
- - uid: 2577
+ - uid: 1563
components:
- type: Transform
- pos: -40.451256,54.49542
+ pos: -32.77784,56.587643
parent: 30
- - uid: 4751
+ - uid: 1989
components:
- type: Transform
- pos: -39.53459,54.377365
+ pos: -32.762215,56.697018
parent: 30
- - uid: 4787
+ - uid: 1991
components:
- type: Transform
- pos: -40.4582,54.60653
+ pos: -32.77784,56.462643
parent: 30
- - uid: 6584
+ - uid: 2029
components:
- type: Transform
- pos: -40.43737,54.377365
+ pos: -41.54827,49.578175
parent: 30
- - uid: 22782
+- proto: WeaponDisablerPractice
+ entities:
+ - uid: 19811
components:
- type: Transform
- pos: -39.541534,54.49542
+ pos: -38.42729,60.595303
parent: 30
- proto: WeaponLaserCarbinePractice
entities:
@@ -144893,33 +144027,32 @@ entities:
- type: Transform
pos: -38.316597,60.345554
parent: 30
-- proto: WeaponRifleLecter
+- proto: WeaponShotgunKammerer
entities:
- - uid: 21907
+ - uid: 1978
components:
- type: Transform
- parent: 21165
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: WeaponShotgunKammerer
- entities:
- - uid: 17473
+ pos: -41.42977,54.350964
+ parent: 30
+ - type: BallisticAmmoProvider
+ unspawnedCount: 4
+ - uid: 1979
components:
- type: Transform
- parent: 16251
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: WeaponSubMachineGunDrozd
- entities:
- - uid: 20432
+ pos: -41.42977,54.507214
+ parent: 30
+ - type: BallisticAmmoProvider
+ unspawnedCount: 4
+ - uid: 9292
components:
- type: Transform
- parent: 18838
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
+ pos: -41.445473,54.20003
+ parent: 30
+ - uid: 22538
+ components:
+ - type: Transform
+ pos: -41.445473,54.621906
+ parent: 30
- proto: WeaponSubMachineGunWt550
entities:
- uid: 2000
@@ -145127,25 +144260,15 @@ entities:
parent: 30
- proto: WindoorSecureArmoryLocked
entities:
- - uid: 1753
- components:
- - type: Transform
- pos: -40.5,56.5
- parent: 30
- - uid: 2006
- components:
- - type: Transform
- pos: -38.5,56.5
- parent: 30
- - uid: 2216
+ - uid: 1914
components:
- type: Transform
- pos: -39.5,56.5
+ pos: -40.5,50.5
parent: 30
- - uid: 3180
+ - uid: 1915
components:
- type: Transform
- pos: -41.5,56.5
+ pos: -38.5,50.5
parent: 30
- uid: 4450
components:
@@ -145992,24 +145115,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -38.5,58.5
parent: 30
- - uid: 1953
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -38.5,56.5
- parent: 30
- uid: 1977
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 43.5,40.5
parent: 30
- - uid: 1987
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,56.5
- parent: 30
- uid: 2063
components:
- type: Transform
diff --git a/Resources/Maps/meta.yml b/Resources/Maps/meta.yml
index 8751b9c7048..321ccf8ea7a 100644
--- a/Resources/Maps/meta.yml
+++ b/Resources/Maps/meta.yml
@@ -131,7 +131,7 @@ entities:
version: 6
2,0:
ind: 2,0
- tiles: HQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAHQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAACHQAAAAABeQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAABHQAAAAADTQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAHQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAACHQAAAAACTQAAAAAAHQAAAAADeQAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAABeQAAAAAAHQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAABHQAAAAACHQAAAAADeQAAAAAAHQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAACHQAAAAADHQAAAAADeQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAWQAAAAADWQAAAAACFAAAAAAAdgAAAAABWQAAAAACWQAAAAADdgAAAAAAdgAAAAACdgAAAAADeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABFAAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAdgAAAAABdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAACWQAAAAAB
+ tiles: HQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAHQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAACHQAAAAABeQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAABHQAAAAADTQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAHQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAACHQAAAAACTQAAAAAAHQAAAAADeQAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAABeQAAAAAAHQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAABHQAAAAACHQAAAAADeQAAAAAAHQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAACHQAAAAADHQAAAAADeQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAeQAAAAAAWQAAAAADWQAAAAACFAAAAAAAdgAAAAABWQAAAAACWQAAAAADdgAAAAAAdgAAAAACdgAAAAADeQAAAAAAeQAAAAAAaQAAAAAAYgAAAAACYgAAAAABYgAAAAAAeQAAAAAAWQAAAAAAWQAAAAABFAAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAdgAAAAABdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAACYgAAAAABYgAAAAADYgAAAAAAWQAAAAACWQAAAAAB
version: 6
2,-2:
ind: 2,-2
@@ -187,7 +187,7 @@ entities:
version: 6
3,0:
ind: 3,0
- tiles: eQAAAAAAYgAAAAAAYgAAAAABYgAAAAABYgAAAAACYgAAAAAAYgAAAAADYgAAAAACeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAYgAAAAABYgAAAAABYgAAAAABYgAAAAADYgAAAAACYgAAAAABYgAAAAADeQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAYgAAAAACYgAAAAAAYgAAAAACYgAAAAABYgAAAAADYgAAAAACYgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAABYgAAAAAAYgAAAAABYgAAAAACYgAAAAADYgAAAAADYgAAAAAAYgAAAAACeQAAAAAAaAAAAAAAaQAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAYgAAAAAAYgAAAAABYgAAAAABYgAAAAACYgAAAAADYgAAAAACYgAAAAADeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAYgAAAAABYgAAAAADYgAAAAABYgAAAAAAYgAAAAADYgAAAAADYgAAAAAAeQAAAAAAaAAAAAAAaQAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAYgAAAAABHQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAHQAAAAAAYgAAAAAAYgAAAAAAaQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAYgAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAWQAAAAABWQAAAAACTAAAAAAATAAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAABaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAWQAAAAABWQAAAAABTAAAAAAATAAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAABaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAA
+ tiles: eQAAAAAAYgAAAAAAYgAAAAABYgAAAAABYgAAAAACYgAAAAAAYgAAAAADYgAAAAACeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAYgAAAAABYgAAAAABYgAAAAABYgAAAAADYgAAAAACYgAAAAABYgAAAAADeQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAYgAAAAACYgAAAAAAYgAAAAACYgAAAAABYgAAAAADYgAAAAACYgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAABYgAAAAAAYgAAAAABYgAAAAACYgAAAAADYgAAAAADYgAAAAAAYgAAAAACeQAAAAAAaAAAAAAAaQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAYgAAAAAAYgAAAAABYgAAAAABYgAAAAACYgAAAAADYgAAAAACYgAAAAADeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAYgAAAAABYgAAAAADYgAAAAABYgAAAAAAYgAAAAADYgAAAAADYgAAAAAAeQAAAAAAaAAAAAAAaQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAYgAAAAABYgAAAAABYgAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAYgAAAAABYgAAAAAAYgAAAAAAaQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAYgAAAAACYgAAAAAAYgAAAAADeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAABaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAABaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAA
version: 6
-3,-2:
ind: -3,-2
@@ -207,7 +207,7 @@ entities:
version: 6
-1,2:
ind: -1,2
- tiles: eQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAADeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAADaAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAABTQAAAAAATQAAAAAATQAAAAAAaAAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAaAAAAAAATQAAAAAATQAAAAAATQAAAAAAaAAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAaAAAAAAATQAAAAAATQAAAAAATQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAaAAAAAAAHQAAAAAAHQAAAAACaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAACWQAAAAACeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAADHQAAAAADeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAABWQAAAAADeQAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAADeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAABHQAAAAADeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAACHQAAAAADeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAADWQAAAAABeQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: eQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAADeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAHQAAAAADHQAAAAADaAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAABTQAAAAAATQAAAAAATQAAAAAAaAAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAaAAAAAAATQAAAAAATQAAAAAATQAAAAAAaAAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAaAAAAAAATQAAAAAATQAAAAAATQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAaAAAAAAAHQAAAAAAHQAAAAACaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAACWQAAAAACeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAADHQAAAAADeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAABWQAAAAADeQAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAADeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAABHQAAAAADeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAACHQAAAAADeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAADWQAAAAABeQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
1,1:
ind: 1,1
@@ -235,7 +235,7 @@ entities:
version: 6
1,3:
ind: 1,3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAABHQAAAAADHQAAAAABWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAADCQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACCQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACCQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAABCQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAABHQAAAAADHQAAAAABWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAADLwAAAAAALwAAAAAALwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACLwAAAAAALwAAAAAALwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACLwAAAAAALwAAAAAALwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAABLwAAAAAALwAAAAAALwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
0,3:
ind: 0,3
@@ -243,23 +243,23 @@ entities:
version: 6
2,1:
ind: 2,1
- tiles: eQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAACeQAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAdgAAAAADdgAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAdgAAAAACeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAdgAAAAAAdgAAAAABaQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAdgAAAAADdgAAAAABdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAdgAAAAADeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAdgAAAAACdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAdgAAAAAAdgAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAWQAAAAABWQAAAAABaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABHQAAAAADHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: eQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAABeQAAAAAAYgAAAAABYgAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAACeQAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAACeQAAAAAAYgAAAAADYgAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAADeQAAAAAAYgAAAAACYgAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAAALAAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAACHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAADHQAAAAABHQAAAAACdgAAAAADdgAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAADHQAAAAABHQAAAAABdgAAAAACeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAdgAAAAAAdgAAAAABaQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAdgAAAAADdgAAAAABdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAABdgAAAAADeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAdgAAAAACdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAABdgAAAAAAdgAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAWQAAAAABWQAAAAABaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABHQAAAAADHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
3,1:
ind: 3,1
- tiles: WQAAAAADWQAAAAACTAAAAAAATAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAWQAAAAAAWQAAAAADTAAAAAAATAAAAAAAWQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAADHQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAACeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADHQAAAAAAeQAAAAAAWQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACHQAAAAAAaQAAAAAAWQAAAAABaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAaQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABHQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAaQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAaQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAACaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAHQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAHQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAABWQAAAAACWQAAAAABHQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: WQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAACeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAACeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAACeQAAAAAAWQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAABaQAAAAAAWQAAAAABaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAaQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAWQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAaQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAADeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAaQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAADaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAACaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAACeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
2,2:
ind: 2,2
- tiles: WQAAAAACWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAADHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAACHQAAAAAAHQAAAAACeQAAAAAADAAAAAACeQAAAAAAeQAAAAAAeQAAAAAADAAAAAACeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACDAAAAAAADAAAAAABDAAAAAADDAAAAAABDAAAAAABWQAAAAACWQAAAAABWQAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAADeQAAAAAADAAAAAABDAAAAAACDAAAAAABDAAAAAABDAAAAAADeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAACeQAAAAAADAAAAAABDAAAAAABDAAAAAACDAAAAAACDAAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADDAAAAAAADAAAAAAADAAAAAABDAAAAAAADAAAAAABWQAAAAABWQAAAAADWQAAAAADeQAAAAAAHQAAAAAAHQAAAAABHQAAAAABWQAAAAADWQAAAAABWQAAAAAAeQAAAAAADAAAAAADDAAAAAADDAAAAAADDAAAAAABDAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAADAAAAAADDAAAAAADDAAAAAACDAAAAAACDAAAAAACeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAADAAAAAABDAAAAAABDAAAAAACDAAAAAACDAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: WQAAAAACWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAADHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAACHQAAAAAAHQAAAAACeQAAAAAADAAAAAACeQAAAAAAeQAAAAAAeQAAAAAADAAAAAACeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACDAAAAAAADAAAAAABDAAAAAADDAAAAAABDAAAAAABWQAAAAACWQAAAAABWQAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAADeQAAAAAADAAAAAABDAAAAAACDAAAAAABDAAAAAABDAAAAAADeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAACeQAAAAAADAAAAAABDAAAAAABDAAAAAACDAAAAAACDAAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADDAAAAAAADAAAAAAADAAAAAABDAAAAAAADAAAAAABWQAAAAABWQAAAAADWQAAAAADeQAAAAAAHQAAAAAAHQAAAAABHQAAAAABWQAAAAADWQAAAAABWQAAAAAAeQAAAAAADAAAAAADDAAAAAADDAAAAAADDAAAAAABDAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAADAAAAAADDAAAAAADDAAAAAACDAAAAAACDAAAAAACeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAADAAAAAABDAAAAAABDAAAAAACDAAAAAACDAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
2,3:
ind: 2,3
- tiles: WQAAAAACWQAAAAADWQAAAAADeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAACQAAAAAACQAAAAAACQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: WQAAAAACWQAAAAADWQAAAAADeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAHQAAAAACHQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
4,0:
ind: 4,0
- tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABHQAAAAADHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAACHQAAAAABHQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABHQAAAAADHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAACHQAAAAABHQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAA
version: 6
-3,2:
ind: -3,2
@@ -271,11 +271,11 @@ entities:
version: 6
0,-3:
ind: 0,-3
- tiles: eQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAACbAAAAAABbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAABbAAAAAABbAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAaQAAAAAAbAAAAAAAbAAAAAAAbAAAAAACbAAAAAACbAAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAABeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAABTAAAAAADTAAAAAADTAAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAABHQAAAAACWQAAAAACHQAAAAADHQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACaQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAWQAAAAACHQAAAAABHQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAABaQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAABHQAAAAABWQAAAAABbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADaQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAA
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAACbAAAAAABbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAABbAAAAAABbAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAaQAAAAAAbAAAAAAAbAAAAAAAbAAAAAACbAAAAAACbAAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAABeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAABTAAAAAADTAAAAAADTAAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAABHQAAAAACWQAAAAACHQAAAAADHQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACaQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAWQAAAAACHQAAAAABHQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAABaQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAABHQAAAAABWQAAAAABbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADaQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAA
version: 6
1,-3:
ind: 1,-3
- tiles: HQAAAAABHQAAAAACHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAdgAAAAACdgAAAAABeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAaQAAAAAAHQAAAAAAdgAAAAAAdgAAAAABeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAADeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAAAbAAAAAABWQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAbAAAAAACbAAAAAADbAAAAAACbAAAAAADbAAAAAABWQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAABaQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAEQAAAAAAHQAAAAACEQAAAAAAeQAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAEQAAAAAAHQAAAAADEQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: HQAAAAABHQAAAAACHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAdgAAAAACdgAAAAABeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAdgAAAAAAdgAAAAABeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAADeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAAAbAAAAAABWQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAbAAAAAACbAAAAAADbAAAAAACbAAAAAADbAAAAAABWQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAABaQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAEQAAAAAAHQAAAAACEQAAAAAAeQAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAEQAAAAAAHQAAAAADEQAAAAAAeQAAAAAAeQAAAAAA
version: 6
-3,4:
ind: -3,4
@@ -291,7 +291,7 @@ entities:
version: 6
4,-2:
ind: 4,-2
- tiles: eAAAAAAAeQAAAAAAHQAAAAAAHQAAAAADYAAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAACWQAAAAADWQAAAAADYAAAAAAAYAAAAAAAYAAAAAAAWQAAAAACeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADHQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAACYAAAAAAAWQAAAAABaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACHQAAAAACeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAACaAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAaAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeAAAAAAAaAAAAAAAHQAAAAACHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAaAAAAAAAHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAA
+ tiles: eAAAAAAAeQAAAAAAHQAAAAAAHQAAAAADYAAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAACWQAAAAADWQAAAAADYAAAAAAAYAAAAAAAYAAAAAAAWQAAAAACeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADHQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAACYAAAAAAAWQAAAAABaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACHQAAAAACeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAACaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeAAAAAAAaAAAAAAAHQAAAAACHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAaAAAAAAAHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAA
version: 6
3,-3:
ind: 3,-3
@@ -311,19 +311,19 @@ entities:
version: 6
3,2:
ind: 3,2
- tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAAAWQAAAAADWQAAAAADaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAACHQAAAAACeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAABHQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAA
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAAAWQAAAAADWQAAAAADaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAACHQAAAAACeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAABHQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAA
version: 6
4,2:
ind: 4,2
- tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAA
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAA
version: 6
4,1:
ind: 4,1
- tiles: AAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
3,3:
ind: 3,3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: eAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-2,-3:
ind: -2,-3
@@ -331,11 +331,11 @@ entities:
version: 6
-3,-3:
ind: -3,-3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAABHQAAAAADHQAAAAAAHQAAAAACHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAHQAAAAAAHQAAAAAAaAAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAABHQAAAAAAHQAAAAABHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABAAAAAAABAAAAAAABAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAQAAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAADbAAAAAABbAAAAAAAbAAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADbAAAAAACbAAAAAAAbAAAAAACbAAAAAABbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABbAAAAAADbAAAAAAAbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAbAAAAAAAbAAAAAACbAAAAAACbAAAAAACbAAAAAAB
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAABHQAAAAADHQAAAAAAHQAAAAACHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAABHQAAAAAAHQAAAAABHQAAAAACHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAQAAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAADbAAAAAABbAAAAAAAbAAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADbAAAAAACbAAAAAAAbAAAAAACbAAAAAABbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABbAAAAAADbAAAAAAAbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAbAAAAAAAbAAAAAACbAAAAAACbAAAAAACbAAAAAAB
version: 6
0,-4:
ind: 0,-4
- tiles: eQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAaQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAbAAAAAAAbAAAAAAATAAAAAAAbAAAAAAAbAAAAAAAHQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAbAAAAAAAbAAAAAAATAAAAAAAbAAAAAAAbAAAAAAAHQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAAAbAAAAAAAbAAAAAAATAAAAAAAbAAAAAAAbAAAAAAAHQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAaQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAAA
+ tiles: eQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAaQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAbAAAAAAAbAAAAAAATAAAAAAAbAAAAAAAbAAAAAAAHQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAbAAAAAAAbAAAAAAATAAAAAAAbAAAAAAAbAAAAAAAHQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAAAbAAAAAAAbAAAAAAATAAAAAAAbAAAAAAAbAAAAAAAHQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAaQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAAA
version: 6
-1,-4:
ind: -1,-4
@@ -347,15 +347,15 @@ entities:
version: 6
-3,-4:
ind: -3,-4
- tiles: eAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAdgAAAAAAeQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAdgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAAAbAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: eAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAdgAAAAAAeQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAdgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAAAbAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
-4,-3:
ind: -4,-3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAACdgAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAABdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAAAdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAADeQAAAAAAdgAAAAADdgAAAAADdgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAADdgAAAAABeQAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAAAdgAAAAADeQAAAAAAeQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAACdgAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAABdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAAAdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAADeQAAAAAAdgAAAAADdgAAAAADdgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAADdgAAAAABeQAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAAAdgAAAAADeQAAAAAAeQAAAAAA
version: 6
-4,-4:
ind: -4,-4
- tiles: eAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: eAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-5,-3:
ind: -5,-3
@@ -363,7 +363,7 @@ entities:
version: 6
-3,-5:
ind: -3,-5
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
-2,-5:
ind: -2,-5
@@ -371,15 +371,15 @@ entities:
version: 6
-4,-5:
ind: -4,-5
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAA
version: 6
4,3:
ind: 4,3
- tiles: eAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: eAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
1,-4:
ind: 1,-4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAaAAAAAAAHQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAaAAAAAAAHQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAaAAAAAAAHQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAADeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAACeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAACeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAACHQAAAAACaQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAaAAAAAAAHQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAaAAAAAAAHQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAaAAAAAAAHQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAADeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAACeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAACeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAACHQAAAAACaQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
-1,-5:
ind: -1,-5
@@ -387,7 +387,7 @@ entities:
version: 6
0,-5:
ind: 0,-5
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAA
version: 6
2,-4:
ind: 2,-4
@@ -395,15 +395,19 @@ entities:
version: 6
2,-5:
ind: 2,-5
- tiles: eAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAA
version: 6
2,-6:
ind: 2,-6
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAA
version: 6
1,-5:
ind: 1,-5
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAA
+ version: 6
+ 1,-6:
+ ind: 1,-6
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
5,-1:
ind: 5,-1
@@ -443,7 +447,7 @@ entities:
version: 6
5,1:
ind: 5,1
- tiles: eAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: eAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
5,-2:
ind: 5,-2
@@ -513,10 +517,6 @@ entities:
4322: -36,35
4323: -34.550133,34.999542
4334: -28,7
- 6416: 62,6
- 6417: 62,5
- 6418: 62,4
- 6548: 71,20
- node:
color: '#FFFFFFFF'
id: Arrows
@@ -526,16 +526,6 @@ entities:
4324: -33.008163,30.019304
4339: -28.994226,4.423004
6060: 71,-35
- 6545: 70,21
- - node:
- angle: 1.5707963267948966 rad
- color: '#FFFFFFFF'
- id: Arrows
- decals:
- 6413: 64,6
- 6414: 64,5
- 6415: 64,4
- 6546: 69,20
- node:
angle: 3.141592653589793 rad
color: '#FFFFFFFF'
@@ -544,7 +534,6 @@ entities:
4325: -32,33
5105: -42,6
6061: 69,-37
- 6547: 70,19
- node:
color: '#FFFFFFFF'
id: Bot
@@ -603,6 +592,11 @@ entities:
1789: -12,-71
1790: -10,-71
1791: -4,-71
+ 3200: 53,19
+ 3203: 56,24
+ 3252: 48,18
+ 3258: 45,16
+ 3259: 45,17
3261: 49,9
3515: 62,-1
3708: 61,6
@@ -612,6 +606,9 @@ entities:
3741: 61,5
3742: 61,4
3746: 65,5
+ 3858: 55,7
+ 3859: 54,7
+ 3860: 53,7
3861: 49,7
3986: -14,-39
3998: -29,-44
@@ -642,7 +639,6 @@ entities:
5056: -17,48
5128: -21,27
5129: -27,28
- 5271: -10,36
5272: -10,37
5273: -6,39
5274: -7,36
@@ -658,7 +654,6 @@ entities:
5376: 0,37
5377: 0,38
5378: 0,39
- 5379: 0,40
5387: -4,39
5444: -38,11
5445: -39,10
@@ -678,29 +673,7 @@ entities:
5996: 11,-35
5997: 13,-35
5999: 11,-36
- 6339: 48,18
- 6410: 57,9
- 6411: 61,9
- 6412: 65,9
- 6481: 53,7
- 6482: 54,7
- 6483: 55,7
- 6492: 49,11
- 6493: -4,42
- 6516: 74,3
- - node:
- zIndex: 1
- color: '#FFFFFFFF'
- id: Bot
- decals:
- 6443: 53,21
- 6444: 53,19
- - node:
- angle: 1.5707963267948966 rad
- color: '#FFFFFFFF'
- id: Bot
- decals:
- 6387: 46,12
+ 6173: -8,36
- node:
color: '#FFFFFFFF'
id: BotGreyscale
@@ -738,10 +711,6 @@ entities:
6134: 6,-52
6135: 6,-51
6136: 6,-50
- 6381: 69,-26
- 6382: 70,-26
- 6383: 72,-26
- 6384: 73,-26
- node:
color: '#FFFFFFFF'
id: BotLeft
@@ -778,14 +747,6 @@ entities:
3985: -15,-39
4531: 22,-31
5744: 24,-33
- 6549: -19,-16
- 6550: -19,-17
- 6551: -19,-11
- 6552: -19,-12
- 6553: -15,-11
- 6554: -15,-12
- 6556: -15,-15
- 6557: -15,-13
- node:
color: '#FFFFFFFF'
id: BotRightGreyscale
@@ -811,19 +772,22 @@ entities:
4382: 66,12
5012: -47,-8
5749: 23,-32
+ 6055: 72,-27
+ 6056: 71,-27
+ 6057: 70,-27
6059: 77,-31
- 6222: 47,19
- 6223: 46,19
- 6404: 56,30
- 6405: 55,30
- 6527: 69,28
- 6528: 71,28
- 6529: 71,12
- 6530: 69,12
- 6532: 66,16
- 6533: 66,24
- 6534: 74,24
- 6535: 74,16
+ 6180: 69,28
+ 6181: 71,28
+ 6182: 71,12
+ 6183: 69,12
+ 6184: 66,24
+ 6185: 74,24
+ 6186: 74,16
+ 6187: 66,16
+ 6188: 69,19
+ 6189: 69,21
+ 6190: 71,21
+ 6191: 71,19
- node:
color: '#DE3A3A96'
id: BrickCornerOverlayNE
@@ -880,26 +844,6 @@ entities:
id: BrickLineOverlayW
decals:
5397: -19,28
- - node:
- color: '#FFFFFFFF'
- id: BrickTileDarkCornerNe
- decals:
- 6489: 59,5
- - node:
- color: '#FFFFFFFF'
- id: BrickTileDarkCornerNw
- decals:
- 6486: 57,5
- - node:
- color: '#FFFFFFFF'
- id: BrickTileDarkCornerSe
- decals:
- 6484: 59,3
- - node:
- color: '#FFFFFFFF'
- id: BrickTileDarkCornerSw
- decals:
- 6485: 57,3
- node:
color: '#FFFFFFFF'
id: BrickTileDarkEndE
@@ -958,8 +902,8 @@ entities:
decals:
5292: -10,45
5305: -4,45
- 5366: 0,40
5382: -4,40
+ 6172: 0,40
- node:
color: '#DE3A3A96'
id: BrickTileSteelCornerSe
@@ -1097,16 +1041,6 @@ entities:
id: BrickTileWhiteCornerNe
decals:
3483: 55,5
- - node:
- color: '#EFDF4193'
- id: BrickTileWhiteCornerNe
- decals:
- 6403: 56,30
- - node:
- color: '#EFE74193'
- id: BrickTileWhiteCornerNe
- decals:
- 6292: 56,16
- node:
color: '#FFFF0085'
id: BrickTileWhiteCornerNe
@@ -1143,11 +1077,6 @@ entities:
id: BrickTileWhiteCornerNw
decals:
3479: 49,5
- - node:
- color: '#EFE74193'
- id: BrickTileWhiteCornerNw
- decals:
- 6361: 49,25
- node:
color: '#FFFF0085'
id: BrickTileWhiteCornerNw
@@ -1175,17 +1104,6 @@ entities:
id: BrickTileWhiteCornerSe
decals:
5416: -6,31
- - node:
- zIndex: 1
- color: '#EFDF4193'
- id: BrickTileWhiteCornerSe
- decals:
- 6390: 56,24
- - node:
- color: '#EFE94193'
- id: BrickTileWhiteCornerSe
- decals:
- 6450: 67,7
- node:
color: '#FFFF0085'
id: BrickTileWhiteCornerSe
@@ -1225,18 +1143,6 @@ entities:
id: BrickTileWhiteCornerSw
decals:
3470: 49,-4
- - node:
- zIndex: 1
- color: '#EFE74193'
- id: BrickTileWhiteCornerSw
- decals:
- 6491: 49,11
- - node:
- zIndex: 1
- color: '#EFE94193'
- id: BrickTileWhiteCornerSw
- decals:
- 6437: 53,7
- node:
color: '#FFFF0085'
id: BrickTileWhiteCornerSw
@@ -1272,11 +1178,6 @@ entities:
4855: -12,34
5407: -2,34
5415: 2,33
- - node:
- color: '#EFB34196'
- id: BrickTileWhiteInnerNe
- decals:
- 6272: 50,8
- node:
color: '#52B4E996'
id: BrickTileWhiteInnerNw
@@ -1296,11 +1197,6 @@ entities:
decals:
4860: -14,35
5406: -4,34
- - node:
- color: '#EFE74193'
- id: BrickTileWhiteInnerNw
- decals:
- 6325: 54,25
- node:
color: '#D381C996'
id: BrickTileWhiteInnerSe
@@ -1313,11 +1209,6 @@ entities:
decals:
2969: -2,-67
5417: -6,32
- - node:
- color: '#EFB34196'
- id: BrickTileWhiteInnerSe
- decals:
- 6273: 50,8
- node:
color: '#D381C996'
id: BrickTileWhiteInnerSw
@@ -1423,29 +1314,6 @@ entities:
3487: 55,1
3488: 55,0
3489: 55,-1
- 6270: 50,7
- 6271: 50,9
- - node:
- color: '#EFDF4193'
- id: BrickTileWhiteLineE
- decals:
- 6402: 56,28
- - node:
- zIndex: 1
- color: '#EFDF4193'
- id: BrickTileWhiteLineE
- decals:
- 6391: 56,25
- 6392: 56,26
- 6393: 56,27
- - node:
- color: '#EFE74193'
- id: BrickTileWhiteLineE
- decals:
- 6288: 56,12
- 6289: 56,13
- 6290: 56,14
- 6291: 56,15
- node:
color: '#FFFF0085'
id: BrickTileWhiteLineE
@@ -1544,30 +1412,6 @@ entities:
3481: 52,5
3482: 53,5
3714: 54,5
- 6275: 51,8
- - node:
- zIndex: 1
- color: '#EFDF4193'
- id: BrickTileWhiteLineN
- decals:
- 6396: 55,30
- - node:
- color: '#EFE74193'
- id: BrickTileWhiteLineN
- decals:
- 6293: 55,16
- 6294: 54,16
- 6322: 51,25
- 6323: 52,25
- 6324: 53,25
- 6336: 48,18
- 6337: 47,18
- 6338: 46,18
- - node:
- color: '#EFEE4193'
- id: BrickTileWhiteLineN
- decals:
- 6407: 56,22
- node:
color: '#FFFF0085'
id: BrickTileWhiteLineN
@@ -1639,6 +1483,7 @@ entities:
5841: 6,-41
5842: 5,-41
5843: 4,-41
+ 5844: 2,-41
5845: 1,-41
5846: 0,-41
5859: 28,-41
@@ -1655,7 +1500,6 @@ entities:
5945: 24,-44
5946: 25,-44
5975: 17,-32
- 6517: 3,-41
- node:
color: '#DE3A3A96'
id: BrickTileWhiteLineS
@@ -1683,53 +1527,6 @@ entities:
id: BrickTileWhiteLineS
decals:
3471: 50,-4
- 6274: 51,8
- - node:
- zIndex: 1
- color: '#EFDF4193'
- id: BrickTileWhiteLineS
- decals:
- 6388: 54,24
- 6389: 55,24
- - node:
- color: '#EFE74193'
- id: BrickTileWhiteLineS
- decals:
- 6284: 52,11
- 6285: 53,11
- 6286: 54,11
- 6287: 55,11
- 6314: 48,13
- 6330: 56,11
- 6334: 47,13
- 6335: 46,13
- 6490: 51,11
- - node:
- color: '#EFE94193'
- id: BrickTileWhiteLineS
- decals:
- 6424: 56,7
- 6425: 57,7
- 6426: 59,7
- 6427: 60,7
- 6428: 61,7
- 6429: 62,7
- 6430: 63,7
- 6431: 64,7
- 6432: 65,7
- 6433: 66,7
- - node:
- zIndex: 1
- color: '#EFE94193'
- id: BrickTileWhiteLineS
- decals:
- 6435: 55,7
- 6436: 54,7
- - node:
- color: '#EFEE4193'
- id: BrickTileWhiteLineS
- decals:
- 6408: 56,18
- node:
color: '#FFFF0085'
id: BrickTileWhiteLineS
@@ -1847,22 +1644,6 @@ entities:
3476: 49,1
3477: 49,2
3478: 49,4
- 6267: 50,7
- 6268: 50,8
- 6269: 50,9
- - node:
- color: '#EFE74193'
- id: BrickTileWhiteLineW
- decals:
- 6313: 49,12
- 6318: 49,19
- 6319: 49,20
- 6326: 54,26
- 6327: 54,27
- 6328: 54,28
- 6329: 54,29
- 6342: 54,30
- 6355: 49,21
- node:
color: '#FFFF0085'
id: BrickTileWhiteLineW
@@ -1968,12 +1749,6 @@ entities:
5054: -17,47
5098: -38,5
5279: -7,34
- - node:
- angle: 1.5707963267948966 rad
- color: '#FFFFFFFF'
- id: Caution
- decals:
- 6171: 46,16
- node:
angle: 3.141592653589793 rad
color: '#FFFFFFFF'
@@ -2009,22 +1784,36 @@ entities:
color: '#D4D4D428'
id: CheckerNESW
decals:
+ 3291: 50,15
+ 3292: 50,16
+ 3293: 50,17
+ 3294: 51,15
+ 3295: 51,16
+ 3296: 51,17
3297: 51,18
3298: 50,18
3299: 50,19
3300: 51,19
3301: 50,20
3302: 51,20
+ 3303: 51,21
3304: 50,21
+ 3305: 51,22
3306: 50,22
+ 3307: 50,23
3308: 51,23
3309: 51,24
3310: 50,24
3311: 50,25
3312: 51,25
+ 3313: 50,14
+ 3314: 51,14
3315: 51,13
3316: 50,13
3317: 50,12
+ 3318: 51,12
+ 3319: 51,11
+ 3320: 50,11
3321: 52,15
3322: 53,15
3323: 54,15
@@ -2033,6 +1822,8 @@ entities:
3326: 56,14
3327: 56,13
3328: 56,12
+ 3329: 56,11
+ 3333: 52,11
3334: 52,25
3335: 53,25
3336: 54,25
@@ -2040,6 +1831,7 @@ entities:
3338: 54,27
3339: 54,28
3340: 54,29
+ 3341: 54,30
3342: 55,25
3343: 55,26
3344: 55,27
@@ -2209,6 +2001,14 @@ entities:
3196: 57,24
3197: 57,25
3198: 57,26
+ 3207: 53,17
+ 3208: 53,18
+ 3209: 53,22
+ 3210: 53,23
+ 3253: 47,18
+ 3254: 46,18
+ 3256: 45,15
+ 3257: 45,18
3451: 54,-4
3452: 55,-4
3453: 53,-4
@@ -2251,10 +2051,6 @@ entities:
5266: -6,36
5267: -6,37
5268: -6,38
- 5269: -6,40
- 5270: -7,40
- 5277: -9,36
- 5278: -8,36
5283: -7,42
5284: -6,42
5285: -6,46
@@ -2281,15 +2077,10 @@ entities:
6142: 35,-12
6143: 19,-8
6144: 29,0
- 6172: 45,17
- 6173: 45,16
- 6174: 45,15
- 6197: 48,24
- 6198: 48,23
- 6199: 48,22
- 6367: 72,-29
- 6368: 71,-29
- 6369: 70,-29
+ 6174: -7,40
+ 6175: -6,40
+ 6176: -9,36
+ 6177: -10,36
- node:
color: '#52B4E996'
id: DeliveryGreyscale
@@ -2303,8 +2094,6 @@ entities:
decals:
6094: 42,-28
6095: 42,-29
- 6379: 73,-28
- 6380: 69,-28
- node:
cleanable: True
color: '#A4610696'
@@ -2315,6 +2104,12 @@ entities:
1362: -13,-50
1363: -15,-49
1364: -15,-47
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: Dirt
+ decals:
+ 3419: 58,3
- node:
angle: 3.141592653589793 rad
color: '#FFFFFFFF'
@@ -2371,7 +2166,6 @@ entities:
5626: 11,-24
5627: 12,-26
5628: 13,-27
- 6353: 48,14
- node:
color: '#FFFFFFFF'
id: DirtHeavyMonotile
@@ -2474,15 +2268,24 @@ entities:
1357: -15,-50
1359: -13,-51
3362: 51,18
+ 3363: 52,17
3364: 50,18
3365: 50,19
3366: 50,20
3367: 51,20
3368: 50,21
3369: 50,22
+ 3370: 51,22
+ 3371: 52,20
+ 3372: 52,19
+ 3374: 52,21
+ 3375: 52,21
+ 3376: 56,19
+ 3377: 56,18
3378: 54,20
3379: 55,19
3380: 55,20
+ 3381: 56,19
3382: 55,25
3383: 54,26
3384: 55,27
@@ -2492,14 +2295,27 @@ entities:
3388: 55,27
3389: 56,26
3390: 49,16
+ 3391: 50,15
+ 3392: 50,16
+ 3393: 51,15
+ 3394: 51,17
+ 3395: 52,16
3396: 52,15
+ 3397: 50,14
+ 3398: 48,15
3399: 49,12
3400: 50,12
+ 3401: 51,11
3402: 48,8
3403: 49,8
+ 3404: 50,9
3406: 47,9
3407: 46,10
+ 3408: 45,16
+ 3409: 45,17
+ 3410: 44,15
3411: 43,14
+ 3412: 51,14
3718: 57,8
3722: 53,9
3723: 63,8
@@ -2547,9 +2363,6 @@ entities:
5638: 12,-27
5639: 11,-27
5640: 10,-27
- 6346: 48,16
- 6347: 47,16
- 6348: 47,14
- node:
color: '#FFFFFFFF'
id: DirtMedium
@@ -2587,15 +2400,21 @@ entities:
595: -26,22
613: -19,12
1358: -9,-51
+ 3348: 50,11
3349: 49,15
+ 3350: 51,16
3351: 52,14
3352: 53,12
3353: 54,13
+ 3354: 51,16
3355: 51,19
+ 3356: 51,21
+ 3357: 52,18
3358: 49,22
3359: 51,24
3360: 54,25
3361: 55,26
+ 3719: 55,7
3890: -16,5
3893: -43,-7
3897: -40,-9
@@ -2626,11 +2445,6 @@ entities:
5629: 13,-26
5630: 12,-24
5631: 10,-25
- 6349: 46,17
- 6350: 46,16
- 6351: 46,14
- 6352: 47,13
- 6354: 47,15
- node:
color: '#FFFFFFFF'
id: FlowersBRTwo
@@ -2774,8 +2588,14 @@ entities:
color: '#D4D4D409'
id: FullTileOverlayGreyscale
decals:
+ 3420: 48,14
3421: 47,16
+ 3422: 49,18
+ 3423: 49,21
+ 3424: 49,21
+ 3425: 52,24
3426: 56,26
+ 3427: 56,28
3428: 56,29
3429: 55,12
3430: 54,12
@@ -2784,6 +2604,7 @@ entities:
3433: 52,14
3434: 52,14
3435: 52,12
+ 3436: 48,14
3437: 47,14
3438: 47,13
- node:
@@ -3563,16 +3384,6 @@ entities:
id: MiniTileSteelLineW
decals:
3059: 32,-19
- - node:
- color: '#EFE74193'
- id: MiniTileWhiteInnerNw
- decals:
- 6317: 49,18
- - node:
- color: '#EFE74193'
- id: MiniTileWhiteInnerSw
- decals:
- 6315: 49,13
- node:
color: '#D4D4D412'
id: PavementCheckerAOverlay
@@ -4939,14 +4750,14 @@ entities:
3544: 74,-33
3824: 101,4
5264: -7,39
- 6513: 73,6
+ 6195: 75,6
- node:
color: '#FFFFFFFF'
id: WarnCornerNW
decals:
3825: 107,4
5265: -9,39
- 6509: 69,6
+ 6194: 70,6
- node:
color: '#FFFFFFFF'
id: WarnCornerSE
@@ -4955,7 +4766,7 @@ entities:
3822: 101,12
3826: 102,2
5263: -7,37
- 6512: 73,3
+ 6193: 75,3
- node:
color: '#FFFFFFFF'
id: WarnCornerSW
@@ -4963,52 +4774,32 @@ entities:
3823: 107,12
3827: 106,2
5258: -9,37
- 6508: 69,3
+ 6192: 70,3
- node:
color: '#FFFFFFFF'
id: WarnCornerSmallNE
decals:
900: -13,10
+ 3276: 42,15
3557: 74,-38
5096: -39,5
- 6214: 47,21
- 6423: 61,9
- 6441: 53,19
- - node:
- zIndex: 1
- color: '#FFFFFFFF'
- id: WarnCornerSmallNE
- decals:
- 6400: 56,28
+ 6048: 69,-28
- node:
color: '#FFFFFFFF'
id: WarnCornerSmallNW
decals:
899: -9,10
1446: -65,-42
- 6332: 55,30
- 6422: 65,9
- - node:
- zIndex: 1
- color: '#FFFFFFFF'
- id: WarnCornerSmallNW
- decals:
- 6357: 49,21
+ 3275: 44,15
+ 3450: 46,14
+ 6047: 73,-28
- node:
color: '#FFFFFFFF'
id: WarnCornerSmallSE
decals:
1798: -5,-72
- 6442: 53,21
- - node:
- zIndex: 1
- color: '#FFFFFFFF'
- id: WarnCornerSmallSE
- decals:
- 6359: 47,25
- 6378: 69,-28
- 6401: 56,30
- 6452: 66,7
+ 3445: 49,11
+ 6049: 69,-26
- node:
color: '#FFFFFFFF'
id: WarnCornerSmallSW
@@ -5016,13 +4807,8 @@ entities:
1796: -9,-72
1797: -3,-72
1800: 0,-73
- - node:
- zIndex: 1
- color: '#FFFFFFFF'
- id: WarnCornerSmallSW
- decals:
- 6360: 49,25
- 6377: 73,-28
+ 3442: 51,11
+ 6046: 73,-26
- node:
color: '#334E6DC8'
id: WarnFullGreyscale
@@ -5046,6 +4832,7 @@ entities:
color: '#D381C996'
id: WarnFullGreyscale
decals:
+ 5754: 23,-37
5978: 15,-31
- node:
color: '#DE3A3A96'
@@ -5073,6 +4860,9 @@ entities:
1755: 34,-56
1756: 34,-55
1757: 34,-54
+ 3269: 42,16
+ 3270: 42,17
+ 3271: 42,18
3540: 74,-37
3542: 74,-35
3543: 74,-34
@@ -5110,21 +4900,11 @@ entities:
5953: 16,-62
5954: 16,-61
5955: 16,-60
+ 6050: 69,-27
6080: 64,-24
6081: 64,-25
- 6182: 42,18
- 6183: 42,17
- 6184: 42,16
- 6185: 42,15
- 6186: 42,14
- 6211: 47,24
- 6212: 47,23
- 6213: 47,22
- 6341: 56,11
- 6397: 56,29
- 6438: 53,20
- 6514: 73,5
- 6515: 73,4
+ 6202: 75,5
+ 6203: 75,4
- node:
color: '#334E6DC8'
id: WarnLineGreyscaleE
@@ -5175,12 +4955,6 @@ entities:
5302: -6,44
5335: 2,38
5351: 14,37
- - node:
- zIndex: 1
- color: '#EFE74193'
- id: WarnLineGreyscaleE
- decals:
- 6459: 67,8
- node:
color: '#FFFFFFFF'
id: WarnLineGreyscaleE
@@ -5226,10 +5000,10 @@ entities:
5365: 6,33
5402: -18,25
- node:
- color: '#EFE74193'
+ color: '#FFFF0085'
id: WarnLineGreyscaleN
decals:
- 6362: 50,25
+ 3249: 56,22
- node:
color: '#FFFFFFFF'
id: WarnLineGreyscaleN
@@ -5264,12 +5038,12 @@ entities:
decals:
4530: 14,-46
5664: 6,-27
+ 5871: 3,-41
5875: 24,-41
5876: 29,-41
5877: 16,-41
5878: 10,-41
5879: 8,-41
- 6518: 2,-41
- node:
color: '#DE3A3A96'
id: WarnLineGreyscaleS
@@ -5286,23 +5060,12 @@ entities:
5434: 2,31
5435: 0,31
5436: -3,32
- - node:
- zIndex: 1
- color: '#EFE74193'
- id: WarnLineGreyscaleS
- decals:
- 6456: 58,7
- - node:
- zIndex: 1
- color: '#EFE941FF'
- id: WarnLineGreyscaleS
- decals:
- 6454: 50,11
- node:
color: '#FFFF0085'
id: WarnLineGreyscaleS
decals:
3231: 50,27
+ 3247: 56,18
- node:
color: '#334E6DC8'
id: WarnLineGreyscaleW
@@ -5342,12 +5105,6 @@ entities:
4870: -14,45
5304: -4,44
5334: 4,38
- - node:
- zIndex: 1
- color: '#EFE74193'
- id: WarnLineGreyscaleW
- decals:
- 6457: 53,8
- node:
color: '#FFFF0085'
id: WarnLineGreyscaleW
@@ -5380,6 +5137,7 @@ entities:
2744: -30,-26
2745: -29,-26
2746: -28,-26
+ 3440: 50,11
3635: -28,1
3636: -27,1
4384: -54,2
@@ -5406,28 +5164,16 @@ entities:
5990: 12,-33
5991: 13,-33
5992: 14,-33
+ 6043: 72,-26
+ 6044: 71,-26
+ 6045: 70,-26
6076: 47,-29
6077: 46,-29
6100: 45,-29
6165: 71,3
6166: 72,3
- 6252: 44,19
- 6253: 43,19
- 6254: 42,19
- 6370: 72,-28
- 6371: 71,-28
- 6372: 70,-28
- 6511: 70,3
- 6521: -43,-46
- 6522: -42,-46
- 6523: 40,48
- 6524: 39,48
- - node:
- zIndex: 1
- color: '#FFFFFFFF'
- id: WarnLineN
- decals:
- 6451: 67,7
+ 6167: 73,3
+ 6168: 74,3
- node:
color: '#FFFFFFFF'
id: WarnLineS
@@ -5441,6 +5187,13 @@ entities:
3266: 54,-17
3267: 54,-16
3268: 54,-15
+ 3272: 44,16
+ 3273: 44,17
+ 3274: 44,18
+ 3446: 46,18
+ 3447: 46,17
+ 3448: 46,16
+ 3449: 46,15
3516: 33,6
3517: 33,7
3518: 33,8
@@ -5473,18 +5226,11 @@ entities:
5993: 15,-37
5994: 15,-36
5995: 15,-35
+ 6051: 73,-27
6082: 64,-24
6083: 64,-25
- 6177: 44,14
- 6178: 44,15
- 6179: 44,16
- 6180: 44,17
- 6181: 44,18
- 6208: 49,22
- 6209: 49,23
- 6210: 49,24
- 6506: 69,4
- 6507: 69,5
+ 6200: 70,5
+ 6201: 70,4
- node:
color: '#DE3A3A96'
id: WarnLineW
@@ -5519,6 +5265,7 @@ entities:
1938: 109,1
1939: 110,1
1940: 111,1
+ 3255: 43,15
3545: 73,-33
3546: 72,-33
3547: 71,-33
@@ -5557,20 +5304,13 @@ entities:
5437: -1,34
5440: -11,52
5898: 18,-39
- 6248: 44,13
- 6249: 43,13
- 6250: 42,13
- 6343: 54,30
- 6419: 64,9
- 6420: 63,9
- 6421: 62,9
- 6498: 71,6
- 6499: 72,6
- 6510: 70,6
- 6519: -43,-48
- 6520: -42,-48
- 6525: 40,46
- 6526: 39,46
+ 6052: 72,-28
+ 6053: 71,-28
+ 6054: 70,-28
+ 6196: 71,6
+ 6197: 72,6
+ 6198: 73,6
+ 6199: 74,6
- node:
angle: -3.141592653589793 rad
color: '#FFFFFFFF'
@@ -5912,22 +5652,21 @@ entities:
4,-1:
0: 48127
-4,-4:
- 0: 39321
+ 0: 47545
2: 2
- 3: 8224
-4,-5:
0: 39167
2: 8192
-5,-4:
- 0: 61164
2: 2
+ 0: 61164
-4,-3:
0: 63897
2: 34
-5,-3:
0: 62668
- 4: 2
- 5: 32
+ 3: 2
+ 2: 32
-4,-2:
0: 36863
-5,-2:
@@ -5996,8 +5735,8 @@ entities:
-6,-5:
0: 61167
-5,-5:
- 2: 8192
0: 51455
+ 2: 8192
-9,0:
0: 60943
-8,1:
@@ -6222,7 +5961,7 @@ entities:
0: 7677
4,-9:
0: 20599
- 3: 8192
+ 2: 8192
5,-7:
0: 58621
5,-6:
@@ -6255,19 +5994,19 @@ entities:
0: 65263
8,-5:
0: 1279
- 6: 57344
+ 4: 57344
8,-4:
- 6: 3822
+ 4: 3822
0: 16384
9,-4:
- 6: 7
+ 4: 7
0: 58888
9,-2:
0: 30711
9,-1:
0: 61559
9,-5:
- 6: 28672
+ 4: 28672
0: 239
9,-3:
0: 12014
@@ -6320,7 +6059,7 @@ entities:
10,3:
0: 57297
10,4:
- 0: 56797
+ 0: 7645
11,1:
0: 65295
11,2:
@@ -6328,7 +6067,7 @@ entities:
11,3:
0: 64988
11,4:
- 0: 56831
+ 0: 4095
12,0:
0: 65262
12,3:
@@ -6354,13 +6093,13 @@ entities:
1: 2184
11,-8:
0: 61440
- 7: 238
+ 5: 238
11,-7:
0: 65535
11,-6:
0: 65520
11,-9:
- 7: 57344
+ 5: 57344
1: 31
12,-6:
0: 65262
@@ -6370,7 +6109,8 @@ entities:
0: 61440
1: 128
-4,6:
- 0: 53503
+ 0: 37119
+ 2: 16384
-5,5:
0: 63344
-5,6:
@@ -6397,7 +6137,8 @@ entities:
-2,7:
0: 29371
-2,8:
- 0: 4095
+ 0: 12031
+ 3: 256
-1,5:
0: 63351
-1,6:
@@ -6443,18 +6184,20 @@ entities:
-6,6:
0: 63279
-6,7:
- 0: 20223
+ 0: 20207
+ 2: 16
-6,8:
0: 8191
-5,8:
- 0: 65294
+ 0: 65290
+ 2: 4
-12,7:
0: 61552
-12,8:
0: 57471
-13,7:
0: 32768
- 7: 30576
+ 5: 30576
1: 7
-12,4:
0: 35852
@@ -6478,7 +6221,8 @@ entities:
-10,4:
0: 65535
-10,5:
- 0: 36607
+ 0: 35583
+ 2: 1024
-10,6:
0: 61182
-10,7:
@@ -6501,8 +6245,10 @@ entities:
0: 35824
-12,2:
0: 15
+ 1: 1792
-13,2:
0: 15
+ 1: 3840
-11,0:
0: 60943
-11,1:
@@ -6557,7 +6303,7 @@ entities:
0: 10239
1,5:
0: 25855
- 8: 32768
+ 6: 32768
1,6:
0: 65262
1,7:
@@ -6633,21 +6379,23 @@ entities:
-16,1:
0: 64785
-16,2:
- 0: 15
- 1: 256
+ 0: 4383
+ 1: 3072
-17,1:
0: 63351
-17,2:
0: 15
- 1: 3840
+ 1: 1792
-15,1:
0: 65416
-15,2:
0: 15
+ 1: 3840
-14,1:
0: 15283
-14,2:
0: 15
+ 1: 2816
-20,-3:
0: 3584
-19,-3:
@@ -6668,19 +6416,19 @@ entities:
-18,1:
0: 64170
-18,2:
- 0: 15
- 1: 3840
+ 0: 8751
+ 1: 2048
12,-8:
1: 8738
- 9: 34944
+ 7: 34944
12,-7:
1: 226
0: 57344
12,-9:
1: 58103
13,-8:
- 9: 13104
- 10: 34944
+ 7: 13104
+ 8: 34944
13,-7:
1: 240
0: 61440
@@ -6693,8 +6441,8 @@ entities:
13,-4:
0: 62327
14,-8:
- 10: 13104
- 7: 34944
+ 8: 13104
+ 5: 34944
14,-7:
1: 240
0: 61440
@@ -6707,7 +6455,7 @@ entities:
14,-4:
0: 65279
15,-8:
- 7: 13104
+ 5: 13104
1: 34952
15,-7:
1: 248
@@ -6754,7 +6502,7 @@ entities:
15,0:
0: 57463
16,-1:
- 7: 240
+ 5: 240
1: 62222
12,1:
0: 58606
@@ -6782,12 +6530,12 @@ entities:
0: 65262
15,2:
0: 4335
- 7: 57344
+ 5: 57344
15,3:
- 7: 9838
+ 5: 9838
1: 34944
15,4:
- 7: 2
+ 5: 2
1: 34952
0: 4352
16,0:
@@ -6797,9 +6545,9 @@ entities:
0: 64443
16,2:
0: 63
- 7: 63488
+ 5: 63488
16,3:
- 7: 287
+ 5: 287
1: 3584
-12,-8:
0: 62583
@@ -6874,7 +6622,8 @@ entities:
0,10:
0: 30503
-1,10:
- 0: 65319
+ 9: 1
+ 0: 65318
0,11:
0: 887
1: 32768
@@ -6882,7 +6631,8 @@ entities:
0: 4095
0,12:
1: 207
- 0: 4352
+ 6: 256
+ 0: 4096
1,9:
0: 65535
1,10:
@@ -6934,19 +6684,23 @@ entities:
-3,10:
0: 56605
-3,11:
- 0: 7645
+ 0: 6621
+ 2: 1024
-3,12:
1: 12
0: 64784
-2,9:
- 0: 63351
+ 0: 62259
+ 10: 68
+ 2: 1024
-2,10:
- 0: 29953
- 3: 512
- 2: 6
+ 0: 28929
+ 11: 6
+ 2: 1536
-2,11:
- 0: 895
- 8: 1024
+ 0: 383
+ 2: 512
+ 12: 1024
-2,12:
1: 207
0: 61696
@@ -6954,7 +6708,9 @@ entities:
0: 30578
-1,12:
1: 31
- 0: 64512
+ 0: 61440
+ 2: 1024
+ 6: 2048
5,5:
0: 62258
1: 128
@@ -7106,30 +6862,30 @@ entities:
1: 36761
-8,13:
1: 240
- 7: 3598
+ 5: 3598
-9,13:
1: 35064
- 7: 771
+ 5: 771
-8,14:
1: 240
- 7: 3598
+ 5: 3598
-9,14:
1: 35064
- 7: 771
+ 5: 771
-8,15:
1: 240
- 7: 3598
+ 5: 3598
-9,15:
1: 35064
- 7: 771
+ 5: 771
-7,13:
- 7: 1799
+ 5: 1799
1: 240
-7,14:
- 7: 1799
+ 5: 1799
1: 240
-7,15:
- 7: 1799
+ 5: 1799
1: 240
-6,13:
1: 4369
@@ -7159,18 +6915,18 @@ entities:
1: 3857
-10,13:
1: 240
- 7: 3855
+ 5: 3855
-10,14:
1: 240
- 7: 3855
+ 5: 3855
-10,15:
1: 240
- 7: 3855
+ 5: 3855
-10,11:
1: 4369
-9,16:
1: 35064
- 7: 771
+ 5: 771
5,13:
1: 17600
5,14:
@@ -7221,21 +6977,17 @@ entities:
9,7:
0: 26383
10,5:
- 0: 39377
- 3: 1024
- 11: 16384
+ 0: 55773
+ 12: 1024
10,6:
0: 7645
10,7:
0: 65535
11,5:
- 0: 65328
- 12: 192
+ 0: 65535
11,6:
- 0: 831
- 3: 192
- 13: 1024
- 12: 2048
+ 0: 3839
+ 2: 256
11,7:
0: 30549
11,8:
@@ -7269,19 +7021,19 @@ entities:
1: 34956
15,7:
0: 32784
- 7: 750
+ 5: 750
15,6:
- 7: 26210
+ 5: 26210
1: 34952
15,8:
0: 51711
16,5:
1: 17487
16,6:
- 7: 256
+ 5: 256
1: 3596
16,7:
- 7: 2303
+ 5: 2303
0: 12288
9,8:
0: 48048
@@ -7334,17 +7086,17 @@ entities:
1: 61441
17,0:
1: 223
- 7: 32
+ 5: 32
0: 57344
17,2:
0: 15
- 7: 65280
+ 5: 65280
17,3:
- 7: 15
+ 5: 15
1: 20288
17,-1:
1: 53389
- 7: 11826
+ 5: 11826
17,1:
0: 61166
17,4:
@@ -7355,48 +7107,47 @@ entities:
18,1:
0: 65535
18,2:
- 14: 1
- 7: 65280
+ 2: 1
0: 14
+ 5: 65280
18,3:
- 7: 15
+ 5: 15
1: 3840
18,-1:
1: 61610
- 7: 3840
+ 5: 3840
19,0:
1: 255
0: 4096
- 7: 3072
+ 5: 3072
19,1:
- 11: 1
- 3: 16
- 0: 4352
+ 0: 4369
19,2:
0: 1
- 7: 4352
+ 5: 4352
1: 3276
19,3:
- 7: 1011
+ 5: 1011
1: 8192
19,-1:
1: 61474
- 7: 3840
+ 5: 3840
19,4:
1: 8738
- 7: 51328
+ 5: 51328
20,0:
1: 255
- 7: 3840
+ 5: 3840
20,2:
1: 7951
20,3:
1: 261
- 7: 46320
+ 5: 46320
-13,8:
0: 8
1: 12032
- 7: 119
+ 5: 7
+ 13: 112
-12,9:
0: 2
1: 65408
@@ -7460,30 +7211,27 @@ entities:
-1,-13:
0: 30583
0,-12:
- 0: 65528
+ 0: 65535
0,-11:
- 0: 62719
+ 0: 63743
0,-10:
0: 61695
- 0,-13:
- 0: 65535
1,-12:
- 0: 64976
+ 0: 30583
1,-11:
- 0: 62493
+ 0: 61559
1,-10:
0: 56575
- 1,-13:
- 0: 30583
2,-12:
0: 63344
2,-11:
- 0: 62727
+ 0: 62471
+ 2: 256
2,-10:
0: 53759
2,-13:
0: 61952
- 7: 119
+ 5: 119
3,-12:
0: 65359
3,-11:
@@ -7508,7 +7256,7 @@ entities:
0: 36863
5,-13:
0: 63761
- 7: 204
+ 5: 204
6,-12:
0: 32628
6,-11:
@@ -7517,7 +7265,7 @@ entities:
0: 33791
6,-13:
0: 56512
- 7: 17
+ 5: 17
7,-12:
0: 1904
7,-11:
@@ -7536,7 +7284,7 @@ entities:
1: 127
-10,16:
1: 240
- 7: 3855
+ 5: 3855
-10,17:
1: 15
-9,17:
@@ -7545,13 +7293,13 @@ entities:
1: 14
-8,16:
1: 240
- 7: 3598
+ 5: 3598
-8,17:
1: 9006
-8,18:
1: 3
-7,16:
- 7: 1799
+ 5: 1799
1: 240
-7,17:
1: 15
@@ -7561,58 +7309,58 @@ entities:
1: 61440
16,-4:
1: 8738
- 15: 2184
+ 14: 2184
16,-3:
1: 8738
- 7: 2184
+ 5: 2184
16,-2:
1: 8738
- 7: 2184
+ 5: 2184
16,-5:
1: 8738
- 7: 2184
+ 5: 2184
17,-4:
- 15: 819
- 7: 2176
+ 14: 819
+ 5: 2176
1: 32768
17,-3:
- 7: 819
+ 5: 819
1: 34952
17,-2:
- 7: 819
+ 5: 819
1: 34952
17,-5:
- 7: 35635
+ 5: 35635
1: 136
18,-4:
- 7: 3975
+ 5: 3975
1: 40992
18,-3:
1: 43770
18,-5:
1: 8362
- 7: 36608
+ 5: 36608
18,-2:
1: 43690
19,-4:
- 7: 3975
+ 5: 3975
1: 40992
19,-3:
1: 57906
19,-5:
1: 8354
- 7: 36608
+ 5: 36608
19,-2:
1: 8930
20,-4:
- 7: 3975
+ 5: 3975
1: 32768
20,-3:
1: 61440
20,-2:
1: 240
20,-1:
- 7: 3840
+ 5: 3840
1: 61440
16,-9:
1: 4369
@@ -7652,7 +7400,7 @@ entities:
20,-6:
1: 1879
20,-5:
- 7: 36608
+ 5: 36608
1: 128
12,-10:
1: 62192
@@ -7674,32 +7422,32 @@ entities:
1: 65023
16,-11:
1: 4353
- 7: 52416
+ 5: 52416
16,-10:
1: 4353
0: 52416
20,4:
1: 5377
- 7: 244
+ 5: 244
21,0:
1: 33023
- 7: 3840
+ 5: 3840
21,2:
1: 3887
21,3:
- 7: 46320
+ 5: 46320
1: 4
21,-1:
1: 61440
- 7: 3840
+ 5: 3840
21,1:
1: 17608
21,4:
- 7: 244
+ 5: 244
1: 1024
22,0:
1: 2167
- 7: 58112
+ 5: 58112
0: 136
22,1:
1: 3634
@@ -7707,19 +7455,19 @@ entities:
22,2:
1: 3855
22,3:
- 7: 46320
+ 5: 46320
1: 4
22,-1:
1: 28704
0: 32768
- 7: 3840
+ 5: 3840
22,4:
- 7: 180
+ 5: 180
1: 1088
23,0:
0: 17663
1: 35328
- 7: 8192
+ 5: 8192
23,1:
0: 35959
1: 29320
@@ -7727,16 +7475,16 @@ entities:
1: 26471
0: 34952
23,3:
- 7: 61552
+ 5: 61552
1: 3590
0: 136
23,-1:
0: 62532
1: 2235
- 7: 512
+ 5: 512
23,4:
1: 19468
- 7: 240
+ 5: 240
24,0:
0: 3295
1: 256
@@ -7747,13 +7495,13 @@ entities:
24,3:
1: 609
0: 4368
- 7: 59392
+ 5: 59392
16,-13:
1: 12032
17,-12:
1: 65023
17,-11:
- 7: 13104
+ 5: 13104
1: 34952
17,-10:
0: 65520
@@ -7822,7 +7570,7 @@ entities:
15,10:
1: 30481
0: 8
- 7: 34944
+ 5: 34944
14,11:
1: 34952
14,12:
@@ -7834,18 +7582,18 @@ entities:
0: 17
1: 34952
15,11:
- 7: 34952
+ 5: 34952
16,10:
1: 63630
15,12:
- 7: 34952
+ 5: 34952
1: 28672
16,11:
- 7: 26112
+ 5: 26112
1: 34952
16,12:
1: 34959
- 7: 1632
+ 5: 1632
17,8:
0: 17
1: 19532
@@ -7853,12 +7601,12 @@ entities:
1: 244
17,10:
1: 45056
- 7: 16384
+ 5: 16384
17,11:
- 7: 65348
+ 5: 65348
17,12:
1: 17487
- 7: 2992
+ 5: 2992
18,8:
1: 8495
18,9:
@@ -7866,13 +7614,13 @@ entities:
18,10:
1: 61440
18,11:
- 7: 56576
+ 5: 56576
1: 8738
18,12:
1: 8751
- 7: 3536
+ 5: 3536
18,7:
- 7: 36863
+ 5: 36863
19,8:
1: 1
19,10:
@@ -7880,7 +7628,7 @@ entities:
19,11:
1: 21845
19,7:
- 7: 4371
+ 5: 4371
19,12:
1: 21847
16,4:
@@ -7890,19 +7638,19 @@ entities:
17,6:
1: 20303
17,7:
- 7: 4095
+ 5: 4095
18,4:
1: 17479
18,5:
1: 17487
18,6:
1: 3847
- 7: 32768
+ 5: 32768
19,5:
1: 8739
- 7: 34824
+ 5: 34824
19,6:
- 7: 61804
+ 5: 61804
1: 2
20,5:
1: 4371
@@ -7918,17 +7666,17 @@ entities:
1: 34952
15,14:
1: 28672
- 7: 34952
+ 5: 34952
15,15:
1: 3754
15,13:
- 7: 34952
+ 5: 34952
16,13:
1: 36744
- 7: 24678
+ 5: 24678
16,14:
1: 63624
- 7: 6
+ 5: 6
16,15:
1: 1860
-8,-12:
@@ -7986,23 +7734,25 @@ entities:
-10,-13:
0: 9830
0,-16:
- 0: 4082
+ 0: 36850
0,-17:
0: 65295
-1,-16:
0: 30711
0,-15:
0: 65535
- -1,-15:
- 0: 32631
0,-14:
- 0: 65295
+ 0: 65535
+ 0,-13:
+ 0: 4095
1,-16:
- 0: 4094
+ 0: 36862
1,-15:
- 0: 8055
+ 0: 15291
1,-14:
- 0: 30471
+ 0: 30583
+ 1,-13:
+ 0: 1911
1,-17:
0: 57890
1: 8
@@ -8012,12 +7762,13 @@ entities:
0: 65399
2,-14:
1: 240
- 7: 28672
+ 5: 28672
2,-17:
0: 4096
- 7: 1
+ 5: 1
1: 30
3,-16:
+ 5: 16
0: 28672
1: 68
3,-15:
@@ -8026,7 +7777,7 @@ entities:
0: 65166
3,-17:
1: 17475
- 7: 4
+ 5: 4
4,-16:
0: 30496
4,-15:
@@ -8063,6 +7814,8 @@ entities:
0: 11195
-2,-17:
0: 56797
+ -1,-15:
+ 0: 30583
-1,-14:
0: 30583
-1,-17:
@@ -8103,16 +7856,16 @@ entities:
0: 65535
-12,-16:
1: 17231
- 7: 1184
+ 5: 1184
-13,-16:
1: 2895
- 7: 1184
+ 5: 1184
-12,-15:
1: 3908
-13,-15:
1: 3840
-12,-17:
- 7: 43690
+ 5: 43690
1: 17476
-11,-16:
1: 1
@@ -8144,7 +7897,7 @@ entities:
0: 19648
1: 4368
-16,-10:
- 7: 16
+ 5: 16
1: 44
-15,-11:
1: 65280
@@ -8159,53 +7912,53 @@ entities:
0: 26212
-16,-16:
1: 39321
- 7: 4
+ 5: 4
-16,-17:
1: 7953
-16,-15:
1: 3869
-15,-16:
1: 18511
- 7: 1184
+ 5: 1184
-15,-15:
1: 3911
-15,-17:
- 7: 43690
+ 5: 43690
1: 17732
-14,-16:
1: 2895
- 7: 1184
+ 5: 1184
-14,-15:
1: 3840
-14,-17:
- 7: 43690
+ 5: 43690
1: 17476
-13,-17:
- 7: 43690
+ 5: 43690
1: 17476
-18,-10:
1: 4
- 7: 8
+ 5: 8
-17,-10:
- 7: 7
+ 5: 7
-12,-19:
1: 43947
- 7: 1092
+ 5: 1092
-13,-19:
1: 44590
- 7: 273
+ 5: 273
-12,-18:
1: 17498
- 7: 43684
+ 5: 43684
-13,-18:
- 7: 43684
+ 5: 43684
1: 17498
-12,-20:
1: 17408
-11,-19:
1: 3983
-10,-19:
- 7: 4369
+ 5: 4369
1: 57568
-10,-20:
1: 4352
@@ -8251,30 +8004,30 @@ entities:
1: 5905
-15,-19:
1: 43963
- 7: 1092
+ 5: 1092
-15,-18:
1: 17738
- 7: 43684
+ 5: 43684
-15,-20:
1: 17408
-14,-19:
1: 44943
-14,-18:
1: 17498
- 7: 43684
+ 5: 43684
-13,-20:
1: 4352
17,13:
- 7: 45243
+ 5: 45243
1: 20292
17,14:
- 7: 11
+ 5: 11
1: 62532
18,13:
- 7: 53469
+ 5: 53469
1: 12066
18,14:
- 7: 13
+ 5: 13
1: 61986
19,13:
1: 22357
@@ -8288,10 +8041,10 @@ entities:
5,-14:
0: 4096
1: 224
- 7: 49152
+ 5: 49152
5,-17:
1: 4382
- 7: 1
+ 5: 1
6,-16:
1: 3186
0: 4096
@@ -8299,11 +8052,11 @@ entities:
0: 61917
6,-14:
1: 16
- 7: 4096
+ 5: 4096
0: 52428
6,-17:
1: 8749
- 7: 2
+ 5: 2
7,-16:
1: 3976
7,-15:
@@ -8339,11 +8092,11 @@ entities:
1,-18:
1: 60962
2,-18:
- 7: 4352
+ 5: 4352
1: 60945
3,-18:
1: 13124
- 7: 17408
+ 5: 17408
9,-13:
0: 1911
9,-16:
@@ -8354,7 +8107,7 @@ entities:
0: 26342
9,-17:
0: 16384
- 7: 1
+ 5: 1
1: 1092
10,-14:
0: 48
@@ -8367,41 +8120,41 @@ entities:
1: 17476
8,-20:
1: 53248
- 7: 11264
+ 5: 11264
7,-20:
1: 32768
8,-18:
1: 53248
- 7: 11276
+ 5: 11276
7,-18:
1: 65416
8,-19:
- 7: 11276
+ 5: 11276
1: 49152
8,-17:
- 7: 12
+ 5: 12
9,-20:
- 7: 260
+ 5: 260
1: 62538
9,-19:
- 7: 257
+ 5: 257
1: 62532
9,-18:
- 7: 257
+ 5: 257
1: 62532
9,-21:
1: 17412
10,-20:
1: 28672
- 7: 34560
+ 5: 34560
10,-19:
1: 28672
- 7: 34567
+ 5: 34567
10,-18:
1: 28672
- 7: 34567
+ 5: 34567
10,-17:
- 7: 7
+ 5: 7
11,-20:
1: 29764
11,-18:
@@ -8422,30 +8175,30 @@ entities:
1: 12288
5,-18:
1: 60945
- 7: 4352
+ 5: 4352
6,-18:
1: 56576
- 7: 8704
+ 5: 8704
7,-19:
1: 34952
21,-4:
- 7: 3975
+ 5: 3975
1: 32768
21,-3:
1: 61440
21,-2:
1: 240
21,-5:
- 7: 36608
+ 5: 36608
1: 128
22,-4:
- 7: 3855
+ 5: 3855
22,-3:
1: 61440
22,-2:
1: 240
23,-4:
- 7: 3855
+ 5: 3855
1: 49344
23,-3:
1: 64716
@@ -8454,10 +8207,10 @@ entities:
0: 49152
23,-5:
1: 49348
- 7: 3840
+ 5: 3840
24,-4:
0: 4369
- 7: 142
+ 5: 142
1: 8736
24,-3:
0: 4369
@@ -8471,7 +8224,7 @@ entities:
24,4:
0: 3857
1: 61538
- 7: 136
+ 5: 136
25,0:
0: 3551
25,2:
@@ -8520,7 +8273,7 @@ entities:
24,-5:
0: 4592
1: 9743
- 7: 34816
+ 5: 34816
25,-3:
0: 32766
25,-2:
@@ -8613,7 +8366,7 @@ entities:
1: 34800
0: 28672
22,-5:
- 7: 3840
+ 5: 3840
20,-13:
1: 22272
-16,8:
@@ -8626,21 +8379,21 @@ entities:
0: 546
-15,8:
0: 256
- 7: 238
+ 5: 238
1: 36352
-15,7:
0: 4096
- 7: 61152
+ 5: 61152
1: 15
-15,9:
1: 12
-14,8:
- 7: 255
+ 5: 255
1: 20224
-14,9:
1: 15
-14,7:
- 7: 65520
+ 5: 65520
1: 15
-17,7:
0: 34816
@@ -8687,21 +8440,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: 293.14975
moles:
@@ -8720,8 +8458,8 @@ entities:
- volume: 2500
temperature: 293.15
moles:
- - 21.823984
- - 82.09976
+ - 21.813705
+ - 82.06108
- 0
- 0
- 0
@@ -8733,10 +8471,10 @@ entities:
- 0
- 0
- volume: 2500
- temperature: 293.14975
+ temperature: 235
moles:
- - 21.6852
- - 81.57766
+ - 21.824879
+ - 82.10312
- 0
- 0
- 0
@@ -8748,10 +8486,10 @@ entities:
- 0
- 0
- volume: 2500
- temperature: 235
+ temperature: 293.15
moles:
- - 21.824879
- - 82.10312
+ - 0
+ - 0
- 0
- 0
- 0
@@ -8765,8 +8503,8 @@ entities:
- volume: 2500
temperature: 293.15
moles:
- - 0
- - 0
+ - 21.6852
+ - 81.57766
- 0
- 0
- 0
@@ -8780,8 +8518,8 @@ entities:
- volume: 2500
temperature: 293.15
moles:
- - 21.813705
- - 82.06108
+ - 0
+ - 6666.982
- 0
- 0
- 0
@@ -8795,7 +8533,6 @@ entities:
- volume: 2500
temperature: 293.15
moles:
- - 0
- 6666.982
- 0
- 0
@@ -8807,11 +8544,12 @@ entities:
- 0
- 0
- 0
+ - 0
- volume: 2500
temperature: 293.15
moles:
- - 6666.982
- - 0
+ - 21.66546
+ - 81.50341
- 0
- 0
- 0
@@ -8825,8 +8563,8 @@ entities:
- volume: 2500
temperature: 293.14948
moles:
- - 18.472576
- - 69.49208
+ - 20.078888
+ - 75.53487
- 0
- 0
- 0
@@ -8868,10 +8606,10 @@ entities:
- 0
- 0
- volume: 2500
- temperature: 293.15
+ temperature: 147.92499
moles:
- - 23.57087
- - 88.67137
+ - 0
+ - 0
- 0
- 0
- 0
@@ -8908,30 +8646,30 @@ entities:
- type: GridPathfinding
- type: Joint
joints:
- docking31405: !type:WeldJoint
- bodyB: 5350
- bodyA: 28213
- id: docking31405
+ docking434: !type:WeldJoint
+ bodyB: 28202
+ bodyA: 5350
+ id: docking434
localAnchorB: 0.49999997,0
localAnchorA: -62.5,39
- damping: 77.5519
- stiffness: 696.1043
- - uid: 28213
+ damping: 51.53661
+ stiffness: 462.59152
+ - uid: 28202
components:
- type: MetaData
name: grid
- type: Transform
- pos: -60.740906,38.52563
+ pos: -60.629192,37.789837
parent: 951
- type: MapGrid
chunks:
0,0:
ind: 0,0
- tiles: aAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: eAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-1,0:
ind: -1,0
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
- type: Broadphase
- type: Physics
@@ -8954,21 +8692,16 @@ entities:
version: 2
nodes: []
- type: RadiationGridResistance
- - type: GridAtmosphere
- version: 2
- data:
- chunkSize: 4
- - type: GasTileOverlay
- type: Joint
joints:
- docking31405: !type:WeldJoint
- bodyB: 5350
- bodyA: 28213
- id: docking31405
- localAnchorB: -62.5,39
- localAnchorA: 0.49999997,0
- damping: 77.55168
- stiffness: 696.10236
+ docking434: !type:WeldJoint
+ bodyB: 28202
+ bodyA: 5350
+ id: docking434
+ localAnchorB: 0.49999997,0
+ localAnchorA: -62.5,39
+ damping: 51.53661
+ stiffness: 462.59152
- proto: AcousticGuitarInstrument
entities:
- uid: 3945
@@ -9015,20 +8748,6 @@ entities:
- type: InstantAction
originalIconColor: '#FFFFFFFF'
container: 9284
- - uid: 15198
- components:
- - type: Transform
- parent: 15120
- - type: InstantAction
- originalIconColor: '#FFFFFFFF'
- container: 15120
- - uid: 15592
- components:
- - type: Transform
- parent: 15483
- - type: InstantAction
- originalIconColor: '#FFFFFFFF'
- container: 15483
- uid: 16296
components:
- type: Transform
@@ -9043,13 +8762,13 @@ entities:
- type: InstantAction
originalIconColor: '#FFFFFFFF'
container: 16297
- - uid: 18711
+ - uid: 23604
components:
- type: Transform
- parent: 18691
+ parent: 23603
- type: InstantAction
originalIconColor: '#FFFFFFFF'
- container: 18691
+ container: 23603
- proto: ActionToggleJetpack
entities:
- uid: 7200
@@ -9059,27 +8778,6 @@ entities:
- type: InstantAction
originalIconColor: '#FFFFFFFF'
container: 7614
- - uid: 15196
- components:
- - type: Transform
- parent: 15120
- - type: InstantAction
- originalIconColor: '#FFFFFFFF'
- container: 15120
- - uid: 15521
- components:
- - type: Transform
- parent: 15483
- - type: InstantAction
- originalIconColor: '#FFFFFFFF'
- container: 15483
- - uid: 18692
- components:
- - type: Transform
- parent: 18691
- - type: InstantAction
- originalIconColor: '#FFFFFFFF'
- container: 18691
- proto: ActionToggleLight
entities:
- uid: 7435
@@ -9184,19 +8882,6 @@ entities:
- 9292
- 9239
- 24322
- - uid: 872
- components:
- - type: MetaData
- name: Restrooms East Air Alarm
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 18.5,6.5
- parent: 5350
- - type: DeviceList
- devices:
- - 21141
- - 12104
- - 21143
- uid: 928
components:
- type: Transform
@@ -9211,7 +8896,7 @@ entities:
- uid: 1072
components:
- type: MetaData
- name: Main Loop - SE Air Alarm
+ name: SE Loop Air Alarm
- type: Transform
pos: 14.5,-17.5
parent: 5350
@@ -9288,6 +8973,19 @@ entities:
- 9676
- 21638
- 23103
+ - uid: 1913
+ components:
+ - type: MetaData
+ name: Washroom Air Alarm
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,6.5
+ parent: 5350
+ - type: DeviceList
+ devices:
+ - 21141
+ - 21143
+ - 12104
- uid: 2004
components:
- type: Transform
@@ -9302,7 +9000,7 @@ entities:
- uid: 3141
components:
- type: MetaData
- name: Main Loop SW Air Alarm
+ name: SW Loop Air Alarm
- type: Transform
pos: -19.5,-17.5
parent: 5350
@@ -9495,6 +9193,7 @@ entities:
- 9640
- 22391
- 22390
+ - 28218
- uid: 6405
components:
- type: MetaData
@@ -9544,6 +9243,7 @@ entities:
- type: DeviceList
devices:
- 6946
+ - 28218
- 6806
- 7773
- 7791
@@ -9565,8 +9265,6 @@ entities:
- 7075
- uid: 7196
components:
- - type: MetaData
- name: North Corridor Air Alarm
- type: Transform
rot: -1.5707963267948966 rad
pos: -0.5,18.5
@@ -9587,6 +9285,8 @@ entities:
- 15169
- uid: 7315
components:
+ - type: MetaData
+ name: North Security Lockers Air Alarm
- type: Transform
pos: 2.5,46.5
parent: 5350
@@ -9609,6 +9309,8 @@ entities:
parent: 5350
- uid: 8409
components:
+ - type: MetaData
+ name: South Security Lockers Air Alarm
- type: Transform
rot: -1.5707963267948966 rad
pos: 3.5,40.5
@@ -9622,18 +9324,6 @@ entities:
- 7106
- 7345
- 22373
- - uid: 9130
- components:
- - type: MetaData
- name: Engi Suit Room Air Alarm
- - type: Transform
- pos: 50.5,31.5
- parent: 5350
- - type: DeviceList
- devices:
- - 23179
- - 24003
- - 11361
- uid: 9586
components:
- type: MetaData
@@ -9893,10 +9583,12 @@ entities:
parent: 5350
- type: DeviceList
devices:
- - 239
- - 28373
- - 22149
- - 16292
+ - 23908
+ - 23372
+ - 23383
+ - 23384
+ - 23385
+ - 23379
- 11440
- 989
- 15357
@@ -10035,7 +9727,7 @@ entities:
- uid: 16587
components:
- type: MetaData
- name: Main Loop South Air Alarm
+ name: South Loop Air Alarm
- type: Transform
pos: -0.5,-17.5
parent: 5350
@@ -10591,8 +10283,6 @@ entities:
- 27078
- uid: 23602
components:
- - type: MetaData
- name: AME Air Alarm
- type: Transform
pos: 74.5,9.5
parent: 5350
@@ -10603,19 +10293,19 @@ entities:
- 12383
- 12382
- 12371
- - uid: 23651
+ - uid: 23906
components:
- type: MetaData
name: Secure Storage Air Alarm
- type: Transform
rot: 1.5707963267948966 rad
- pos: 41.5,25.5
+ pos: 41.5,21.5
parent: 5350
- type: DeviceList
devices:
- - 23613
- - 19405
- - 16670
+ - 23381
+ - 23909
+ - 23380
- uid: 23907
components:
- type: MetaData
@@ -10695,8 +10385,6 @@ entities:
- 8379
- uid: 24340
components:
- - type: MetaData
- name: Main Loop - North Air Alarm
- type: Transform
pos: -7.5,12.5
parent: 5350
@@ -10895,6 +10583,8 @@ entities:
- 4207
- uid: 24431
components:
+ - type: MetaData
+ name: HoS's Office Air Alarm
- type: Transform
pos: 12.5,48.5
parent: 5350
@@ -10967,8 +10657,6 @@ entities:
- 11218
- uid: 24451
components:
- - type: MetaData
- name: Captain's Office Air Alarm
- type: Transform
rot: -1.5707963267948966 rad
pos: 12.5,-2.5
@@ -10993,7 +10681,7 @@ entities:
- uid: 24458
components:
- type: MetaData
- name: Main Loop - East Air Alarm
+ name: Loop East Air Alarm
- type: Transform
rot: 1.5707963267948966 rad
pos: 14.5,-5.5
@@ -11151,6 +10839,7 @@ entities:
- 11440
- 19001
- 989
+ - 23908
- uid: 24510
components:
- type: MetaData
@@ -11474,7 +11163,7 @@ entities:
- uid: 25987
components:
- type: MetaData
- name: Main Loop - NW Air Alarm
+ name: NW Loop Air Alarm
- type: Transform
rot: 3.141592653589793 rad
pos: -17.5,7.5
@@ -11591,6 +11280,24 @@ entities:
- type: DeviceList
devices:
- 27127
+ - uid: 27662
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -14.5,7.5
+ parent: 5350
+ - type: DeviceList
+ devices:
+ - 2125
+ - 2127
+ - 2126
+ - 15021
+ - 15179
+ - 21875
+ - 15169
+ - 5667
+ - 5666
+ - 5665
- uid: 28012
components:
- type: MetaData
@@ -11639,22 +11346,6 @@ entities:
- 15591
- 28347
- 19500
- - uid: 28423
- components:
- - type: MetaData
- name: SMES Bank Air Alarm
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 41.5,17.5
- parent: 5350
- - type: DeviceList
- devices:
- - 24302
- - 23567
- - 28424
- - 28425
- - 28426
- - 28427
- proto: AirCanister
entities:
- uid: 2431
@@ -11662,16 +11353,11 @@ entities:
- type: Transform
pos: 45.5,0.5
parent: 5350
- - uid: 21247
+ - uid: 4235
components:
- type: Transform
- anchored: True
pos: -41.5,41.5
parent: 5350
- - type: GasCanister
- releasePressure: 100
- - type: Physics
- bodyType: Static
- uid: 22860
components:
- type: Transform
@@ -11721,6 +11407,7 @@ entities:
- uid: 562
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 30.5,33.5
parent: 5350
- uid: 788
@@ -11779,9 +11466,8 @@ entities:
parent: 5350
- uid: 10406
components:
- - type: MetaData
- name: Restroom
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 5.5,-55.5
parent: 5350
- uid: 12890
@@ -11877,12 +11563,11 @@ entities:
parent: 5350
- proto: AirlockArmoryGlassLocked
entities:
- - uid: 17516
+ - uid: 4742
components:
- type: MetaData
name: Warden's Office
- type: Transform
- rot: 3.141592653589793 rad
pos: -4.5,39.5
parent: 5350
- proto: AirlockArmoryLocked
@@ -12419,12 +12104,6 @@ entities:
parent: 5350
- proto: AirlockEngineeringGlassLocked
entities:
- - uid: 1598
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 54.5,20.5
- parent: 5350
- uid: 4938
components:
- type: MetaData
@@ -12618,6 +12297,13 @@ entities:
- type: Transform
pos: 54.5,31.5
parent: 5350
+ - uid: 15430
+ components:
+ - type: MetaData
+ name: PA
+ - type: Transform
+ pos: 54.5,20.5
+ parent: 5350
- uid: 15788
components:
- type: MetaData
@@ -12656,7 +12342,7 @@ entities:
- uid: 22414
components:
- type: MetaData
- name: SE Solars
+ name: South East Solars
- type: Transform
pos: 38.5,-57.5
parent: 5350
@@ -12769,14 +12455,6 @@ entities:
- DoorStatus: DoorBolt
- proto: AirlockExternalGlass
entities:
- - uid: 1485
- components:
- - type: MetaData
- name: SW Escape Pod
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -40.5,-46.5
- parent: 5350
- uid: 5079
components:
- type: MetaData
@@ -12847,14 +12525,6 @@ entities:
- type: Transform
pos: -0.5,-73.5
parent: 5350
- - uid: 22350
- components:
- - type: MetaData
- name: Escape Pod
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-58.5
- parent: 5350
- proto: AirlockExternalGlassAtmosphericsLocked
entities:
- uid: 11257
@@ -13159,7 +12829,7 @@ entities:
- uid: 13922
components:
- type: MetaData
- name: NE Airlock
+ name: North East Airlock
- type: Transform
pos: 48.5,38.5
parent: 5350
@@ -13224,7 +12894,7 @@ entities:
- uid: 20029
components:
- type: MetaData
- name: SE Solars Airlock
+ name: South East Solars Airlock
- type: Transform
pos: 38.5,-64.5
parent: 5350
@@ -13237,7 +12907,7 @@ entities:
- uid: 20030
components:
- type: MetaData
- name: SE Solars Airlock
+ name: South East Solars Airlock
- type: Transform
pos: 38.5,-61.5
parent: 5350
@@ -13321,10 +12991,14 @@ entities:
radarColor: '#990000FF'
- proto: AirlockExternalGlassShuttleEscape
entities:
+ - uid: 504
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -40.5,-46.5
+ parent: 5350
- uid: 5080
components:
- - type: MetaData
- name: North Escape Pod
- type: Transform
rot: 1.5707963267948966 rad
pos: 41.5,47.5
@@ -13335,18 +13009,8 @@ entities:
rot: -1.5707963267948966 rad
pos: -64.5,-13.5
parent: 5350
- - uid: 7048
- components:
- - type: MetaData
- name: SW Escape Pod
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -43.5,-46.5
- parent: 5350
- uid: 22330
components:
- - type: MetaData
- name: Escape Pod
- type: Transform
pos: 17.5,-62.5
parent: 5350
@@ -13407,7 +13071,7 @@ entities:
- uid: 13921
components:
- type: MetaData
- name: NE Airlock
+ name: North East Airlock
- type: Transform
pos: 49.5,39.5
parent: 5350
@@ -13469,14 +13133,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 27.5,20.5
parent: 5350
- - uid: 1486
- components:
- - type: MetaData
- name: North Corridor
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,12.5
- parent: 5350
- uid: 1554
components:
- type: Transform
@@ -13597,11 +13253,14 @@ entities:
parent: 5350
- uid: 5870
components:
- - type: MetaData
- name: North Corridor
- type: Transform
pos: -3.5,12.5
parent: 5350
+ - uid: 5872
+ components:
+ - type: Transform
+ pos: -1.5,12.5
+ parent: 5350
- uid: 6710
components:
- type: MetaData
@@ -13721,8 +13380,6 @@ entities:
parent: 5350
- uid: 12601
components:
- - type: MetaData
- name: North Corridor
- type: Transform
rot: 1.5707963267948966 rad
pos: -2.5,12.5
@@ -13862,21 +13519,21 @@ entities:
- type: Door
changeAirtight: False
- type: Docking
- dockJointId: docking31405
- dockedWith: 28214
+ dockJointId: docking434
+ dockedWith: 28203
- type: DeviceLinkSource
lastSignals:
DoorStatus: False
DockStatus: True
- - uid: 28214
+ - uid: 28203
components:
- type: Transform
pos: 0.5,0.5
- parent: 28213
+ parent: 28202
- type: Door
changeAirtight: False
- type: Docking
- dockJointId: docking31405
+ dockJointId: docking434
dockedWith: 1455
- type: DeviceLinkSource
lastSignals:
@@ -14644,13 +14301,6 @@ entities:
- - Security
- proto: AirlockMedicalLocked
entities:
- - uid: 1517
- components:
- - type: MetaData
- name: Morgue
- - type: Transform
- pos: -18.5,-48.5
- parent: 5350
- uid: 15278
components:
- type: MetaData
@@ -14688,6 +14338,13 @@ entities:
- type: Transform
pos: -17.5,26.5
parent: 5350
+ - uid: 1749
+ components:
+ - type: MetaData
+ name: Morgue
+ - type: Transform
+ pos: -18.5,-48.5
+ parent: 5350
- proto: AirlockQuartermasterGlassLocked
entities:
- uid: 4309
@@ -14707,7 +14364,7 @@ entities:
pos: -29.5,15.5
parent: 5350
- type: Door
- secondsUntilStateChange: -252063.2
+ secondsUntilStateChange: -232830.38
state: Opening
- type: DeviceLinkSource
lastSignals:
@@ -14771,13 +14428,6 @@ entities:
rot: 3.141592653589793 rad
pos: -0.5,-38.5
parent: 5350
- - uid: 1488
- components:
- - type: MetaData
- name: Breakroom
- - type: Transform
- pos: 2.5,-41.5
- parent: 5350
- uid: 4708
components:
- type: MetaData
@@ -14806,6 +14456,13 @@ entities:
rot: 3.141592653589793 rad
pos: -0.5,-40.5
parent: 5350
+ - uid: 15601
+ components:
+ - type: MetaData
+ name: Anomaly Lab
+ - type: Transform
+ pos: 23.5,-36.5
+ parent: 5350
- uid: 16470
components:
- type: Transform
@@ -14826,8 +14483,6 @@ entities:
- - Security
- uid: 17554
components:
- - type: MetaData
- name: R&D
- type: Transform
rot: 1.5707963267948966 rad
pos: 5.5,-34.5
@@ -14840,15 +14495,35 @@ entities:
rot: 3.141592653589793 rad
pos: 14.5,-46.5
parent: 5350
- - uid: 23758
+- proto: AirlockScienceLocked
+ entities:
+ - uid: 1598
components:
- type: MetaData
- name: Anomaly Lab
+ name: Server Room
- type: Transform
- pos: 23.5,-36.5
+ pos: 28.5,-37.5
parent: 5350
-- proto: AirlockScienceLocked
- entities:
+ - uid: 2187
+ components:
+ - type: MetaData
+ name: Breakroom
+ - type: Transform
+ pos: 2.5,-41.5
+ parent: 5350
+ - uid: 14149
+ components:
+ - type: MetaData
+ name: Chamber 2
+ - type: Transform
+ pos: 21.5,-48.5
+ parent: 5350
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 14186:
+ - DoorStatus: DoorBolt
- uid: 14186
components:
- type: MetaData
@@ -14858,6 +14533,10 @@ entities:
parent: 5350
- type: DeviceLinkSink
invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 14149:
+ - DoorStatus: DoorBolt
- uid: 14850
components:
- type: MetaData
@@ -14871,25 +14550,6 @@ entities:
linkedPorts:
19185:
- DoorStatus: DoorBolt
- - uid: 15115
- components:
- - type: MetaData
- name: Server Room
- - type: Transform
- pos: 28.5,-37.5
- parent: 5350
- - uid: 15430
- components:
- - type: Transform
- pos: 21.5,-48.5
- parent: 5350
- - uid: 18714
- components:
- - type: MetaData
- name: XenoArch
- - type: Transform
- pos: 16.5,-41.5
- parent: 5350
- uid: 19185
components:
- type: MetaData
@@ -14903,6 +14563,13 @@ entities:
linkedPorts:
14850:
- DoorStatus: DoorBolt
+ - uid: 19481
+ components:
+ - type: MetaData
+ name: Xeno Archeology Lab
+ - type: Transform
+ pos: 16.5,-41.5
+ parent: 5350
- uid: 20286
components:
- type: MetaData
@@ -14971,7 +14638,7 @@ entities:
pos: -4.5,53.5
parent: 5350
- type: Door
- secondsUntilStateChange: -106716.95
+ secondsUntilStateChange: -87484.13
state: Opening
- type: DeviceLinkSink
invokeCounter: 2
@@ -15191,14 +14858,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 176
- - uid: 239
- components:
- - type: Transform
- pos: 51.5,19.5
- parent: 5350
- - type: DeviceNetwork
- deviceLists:
- - 15447
- uid: 307
components:
- type: Transform
@@ -15741,7 +15400,7 @@ entities:
parent: 5350
- type: DeviceNetwork
deviceLists:
- - 872
+ - 1913
- uid: 12371
components:
- type: Transform
@@ -15843,6 +15502,7 @@ entities:
parent: 5350
- type: DeviceNetwork
deviceLists:
+ - 27662
- 24342
- 24443
- 20627
@@ -16057,14 +15717,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 15738
- - uid: 19405
- components:
- - type: Transform
- pos: 45.5,23.5
- parent: 5350
- - type: DeviceNetwork
- deviceLists:
- - 23651
- uid: 19630
components:
- type: Transform
@@ -16207,6 +15859,23 @@ entities:
deviceLists:
- 22592
- 22543
+ - uid: 23908
+ components:
+ - type: Transform
+ pos: 50.5,14.5
+ parent: 5350
+ - type: DeviceNetwork
+ deviceLists:
+ - 15447
+ - 24506
+ - uid: 23909
+ components:
+ - type: Transform
+ pos: 44.5,22.5
+ parent: 5350
+ - type: DeviceNetwork
+ deviceLists:
+ - 23906
- uid: 23910
components:
- type: Transform
@@ -16227,14 +15896,6 @@ entities:
deviceLists:
- 24697
- 25995
- - uid: 24003
- components:
- - type: Transform
- pos: 50.5,28.5
- parent: 5350
- - type: DeviceNetwork
- deviceLists:
- - 9130
- uid: 24271
components:
- type: Transform
@@ -16573,6 +16234,16 @@ entities:
- type: DeviceNetwork
deviceLists:
- 28012
+ - uid: 28218
+ components:
+ - type: Transform
+ pos: -7.5,37.5
+ parent: 5350
+ - type: DeviceNetwork
+ deviceLists:
+ - 6384
+ - 7810
+ - 6735
- uid: 28347
components:
- type: Transform
@@ -16589,15 +16260,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 3881
- - uid: 28424
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 42.5,16.5
- parent: 5350
- - type: DeviceNetwork
- deviceLists:
- - 28423
- proto: AirSensorVox
entities:
- uid: 14658
@@ -16626,94 +16288,99 @@ entities:
parent: 5350
- proto: AmeController
entities:
- - uid: 1749
+ - uid: 21812
components:
- type: Transform
- pos: 76.5,5.5
+ pos: 71.5,8.5
parent: 5350
- proto: AmeJar
entities:
- - uid: 28642
+ - uid: 23812
components:
- type: Transform
- pos: 76.515335,7.632393
+ pos: 73.69259,8.599899
+ parent: 5350
+ - uid: 28194
+ components:
+ - type: Transform
+ pos: 73.41134,8.537399
parent: 5350
- proto: AmePartFlatpack
entities:
- uid: 14093
components:
- type: Transform
- parent: 17029
+ parent: 21813
- type: Physics
canCollide: False
- type: InsideEntityStorage
- uid: 15326
components:
- type: Transform
- parent: 17029
+ parent: 21813
- type: Physics
canCollide: False
- type: InsideEntityStorage
- uid: 16554
components:
- type: Transform
- parent: 17029
+ parent: 21813
- type: Physics
canCollide: False
- type: InsideEntityStorage
- uid: 23357
components:
- type: Transform
- parent: 17029
+ parent: 21813
- type: Physics
canCollide: False
- type: InsideEntityStorage
- uid: 23358
components:
- type: Transform
- parent: 17029
+ parent: 21813
- type: Physics
canCollide: False
- type: InsideEntityStorage
- uid: 23359
components:
- type: Transform
- parent: 17029
+ parent: 21813
- type: Physics
canCollide: False
- type: InsideEntityStorage
- uid: 23504
components:
- type: Transform
- parent: 17029
+ parent: 21813
- type: Physics
canCollide: False
- type: InsideEntityStorage
- uid: 23505
components:
- type: Transform
- parent: 17029
+ parent: 21813
- type: Physics
canCollide: False
- type: InsideEntityStorage
- uid: 23506
components:
- type: Transform
- parent: 17029
+ parent: 21813
- type: Physics
canCollide: False
- type: InsideEntityStorage
- uid: 23507
components:
- type: Transform
- parent: 17029
+ parent: 21813
- type: Physics
canCollide: False
- type: InsideEntityStorage
- uid: 23508
components:
- type: Transform
- parent: 17029
+ parent: 21813
- type: Physics
canCollide: False
- type: InsideEntityStorage
@@ -16741,7 +16408,7 @@ entities:
- uid: 143
components:
- type: MetaData
- name: Main Loop - West APC
+ name: Main Loop West APC
- type: Transform
rot: -1.5707963267948966 rad
pos: -19.5,-0.5
@@ -16841,7 +16508,7 @@ entities:
- uid: 2050
components:
- type: MetaData
- name: Main Loop South APC
+ name: South Loop APC
- type: Transform
pos: -8.5,-17.5
parent: 5350
@@ -17299,7 +16966,7 @@ entities:
- uid: 21373
components:
- type: MetaData
- name: Solars SE APC
+ name: SE Solars APC
- type: Transform
rot: 1.5707963267948966 rad
pos: 36.5,-60.5
@@ -17327,6 +16994,13 @@ entities:
rot: 1.5707963267948966 rad
pos: 41.5,24.5
parent: 5350
+ - uid: 22149
+ components:
+ - type: MetaData
+ name: Engineering Lobby APC
+ - type: Transform
+ pos: 52.5,6.5
+ parent: 5350
- uid: 22342
components:
- type: MetaData
@@ -17435,26 +17109,6 @@ entities:
rot: 3.141592653589793 rad
pos: 1.5,-37.5
parent: 5350
- - uid: 28405
- components:
- - type: MetaData
- name: Engineering Lobby APC
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.5,4.5
- parent: 5350
-- proto: APCElectronics
- entities:
- - uid: 23176
- components:
- - type: Transform
- pos: 37.664337,6.747689
- parent: 5350
- - uid: 23750
- components:
- - type: Transform
- pos: 37.539337,6.482064
- parent: 5350
- proto: APCHighCapacity
entities:
- uid: 913
@@ -17505,12 +17159,6 @@ entities:
- type: Transform
pos: 77.23837,-25.611265
parent: 5350
- - uid: 28390
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 54.226982,14.23296
- parent: 5350
- proto: AsimovCircuitBoard
entities:
- uid: 26872
@@ -17621,6 +17269,12 @@ entities:
- type: Transform
pos: -70.5,4.5
parent: 5350
+ - uid: 15521
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -40.5,-46.5
+ parent: 5350
- uid: 21071
components:
- type: Transform
@@ -19173,9 +18827,8 @@ entities:
- uid: 26644
components:
- type: Transform
- anchored: False
- pos: -55.22899,-73.91482
- parent: 951
+ pos: -57.5,-71.5
+ parent: 5350
- uid: 26648
components:
- type: Transform
@@ -19304,21 +18957,18 @@ entities:
- uid: 26689
components:
- type: Transform
- anchored: False
- pos: -51.22899,-73.91482
- parent: 951
+ pos: -53.5,-71.5
+ parent: 5350
- uid: 26691
components:
- type: Transform
- anchored: False
- pos: -47.22899,-73.91482
- parent: 951
+ pos: -49.5,-71.5
+ parent: 5350
- uid: 26694
components:
- type: Transform
- anchored: False
- pos: -43.22899,-73.91482
- parent: 951
+ pos: -45.5,-71.5
+ parent: 5350
- uid: 26695
components:
- type: Transform
@@ -21834,7 +21484,7 @@ entities:
- type: Transform
pos: 0.5,-34.5
parent: 5350
- - uid: 19901
+ - uid: 24003
components:
- type: Transform
pos: 54.5,5.5
@@ -22106,8 +21756,6 @@ entities:
entities:
- uid: 1740
components:
- - type: MetaData
- desc: Defintely not a relabeled brigmedic bedsheet, nope.
- type: Transform
pos: -1.5,40.5
parent: 5350
@@ -22383,26 +22031,11 @@ entities:
- type: Transform
pos: -45.5,19.5
parent: 5350
- - uid: 9185
- components:
- - type: Transform
- pos: 70.5,-28.5
- parent: 5350
- - uid: 9188
- components:
- - type: Transform
- pos: 71.5,-28.5
- parent: 5350
- uid: 9289
components:
- type: Transform
pos: -38.5,29.5
parent: 5350
- - uid: 12418
- components:
- - type: Transform
- pos: 72.5,-28.5
- parent: 5350
- uid: 13163
components:
- type: Transform
@@ -22480,18 +22113,24 @@ entities:
parent: 5350
- uid: 22904
components:
- - type: MetaData
- name: Secure Armory Blast Doors
- type: Transform
pos: -7.5,41.5
parent: 5350
- - uid: 23391
+ - uid: 23565
+ components:
+ - type: Transform
+ pos: 48.5,21.5
+ parent: 5350
+ - uid: 23566
+ components:
+ - type: Transform
+ pos: 48.5,22.5
+ parent: 5350
+ - uid: 23567
components:
- type: Transform
pos: 48.5,23.5
parent: 5350
- - type: DeviceLinkSink
- invokeCounter: 1
- uid: 27135
components:
- type: Transform
@@ -22506,20 +22145,6 @@ entities:
parent: 5350
- type: DeviceLinkSink
invokeCounter: 2
- - uid: 28365
- components:
- - type: Transform
- pos: 48.5,22.5
- parent: 5350
- - type: DeviceLinkSink
- invokeCounter: 1
- - uid: 28382
- components:
- - type: Transform
- pos: 48.5,24.5
- parent: 5350
- - type: DeviceLinkSink
- invokeCounter: 1
- proto: BlastDoorExterior1Open
entities:
- uid: 24634
@@ -22811,10 +22436,10 @@ entities:
parent: 5350
- proto: BookSpaceLaw
entities:
- - uid: 1376
+ - uid: 1972
components:
- type: Transform
- pos: -3.484253,37.5611
+ pos: -3.512158,38.516827
parent: 5350
- proto: BoozeDispenser
entities:
@@ -23021,7 +22646,7 @@ entities:
- uid: 8085
components:
- type: Transform
- pos: -19.518959,40.53281
+ pos: -19.498852,40.61381
parent: 5350
- proto: BoxEncryptionKeySecurity
entities:
@@ -23209,7 +22834,7 @@ entities:
- uid: 11174
components:
- type: Transform
- pos: -7.767823,-27.351887
+ pos: -7.919447,-27.326408
parent: 5350
- uid: 16240
components:
@@ -23218,6 +22843,11 @@ entities:
parent: 5350
- proto: BoxFolderYellow
entities:
+ - uid: 3939
+ components:
+ - type: Transform
+ pos: -27.494276,8.585135
+ parent: 5350
- uid: 17784
components:
- type: Transform
@@ -23228,13 +22858,6 @@ entities:
- type: Transform
pos: -30.686172,13.643055
parent: 5350
-- proto: BoxHandcuff
- entities:
- - uid: 19932
- components:
- - type: Transform
- pos: 8.583343,28.732727
- parent: 5350
- proto: BoxHeadset
entities:
- uid: 6801
@@ -23256,13 +22879,18 @@ entities:
parent: 5350
- proto: BoxLethalshot
entities:
- - uid: 3056
+ - uid: 14878
components:
- type: Transform
- parent: 11588
+ parent: 13851
- type: Physics
canCollide: False
- type: InsideEntityStorage
+ - uid: 28210
+ components:
+ - type: Transform
+ pos: -3.559033,37.59495
+ parent: 5350
- proto: BoxLightbulb
entities:
- uid: 3949
@@ -23489,6 +23117,11 @@ entities:
parent: 5350
- proto: ButtonFrameCaution
entities:
+ - uid: 2565
+ components:
+ - type: Transform
+ pos: 48.5,24.5
+ parent: 5350
- uid: 3064
components:
- type: Transform
@@ -23506,12 +23139,6 @@ entities:
- type: Transform
pos: -35.5,36.5
parent: 5350
- - uid: 5095
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 48.5,21.5
- parent: 5350
- uid: 5405
components:
- type: Transform
@@ -23524,12 +23151,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -10.5,53.5
parent: 5350
- - uid: 10835
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 73.5,-28.5
- parent: 5350
- uid: 10965
components:
- type: Transform
@@ -23560,6 +23181,12 @@ entities:
rot: 1.5707963267948966 rad
pos: -43.5,7.5
parent: 5350
+ - uid: 16457
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,-58.5
+ parent: 5350
- uid: 16494
components:
- type: Transform
@@ -23595,11 +23222,6 @@ entities:
rot: 3.141592653589793 rad
pos: -40.5,36.5
parent: 5350
- - uid: 23569
- components:
- - type: Transform
- pos: 73.5,-28.5
- parent: 5350
- uid: 23966
components:
- type: Transform
@@ -23626,11 +23248,11 @@ entities:
rot: 3.141592653589793 rad
pos: 0.5,41.5
parent: 5350
- - uid: 7538
+ - uid: 14858
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -7.2534924,35.495472
+ pos: -7.5,35.5
parent: 5350
- uid: 22351
components:
@@ -23638,12 +23260,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -17.5,45.5
parent: 5350
- - uid: 22612
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -7.763909,35.495472
- parent: 5350
- proto: ButtonFrameExit
entities:
- uid: 7125
@@ -23664,6 +23280,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -10.5,-28.5
parent: 5350
+ - uid: 21681
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 15.5,-59.5
+ parent: 5350
- proto: ButtonFrameGrey
entities:
- uid: 3005
@@ -24592,16 +24214,6 @@ entities:
- type: Transform
pos: 8.5,32.5
parent: 5350
- - uid: 1525
- components:
- - type: Transform
- pos: 72.5,5.5
- parent: 5350
- - uid: 1527
- components:
- - type: Transform
- pos: 74.5,5.5
- parent: 5350
- uid: 1544
components:
- type: Transform
@@ -25742,6 +25354,11 @@ entities:
- type: Transform
pos: 32.5,-45.5
parent: 5350
+ - uid: 2999
+ components:
+ - type: Transform
+ pos: 72.5,6.5
+ parent: 5350
- uid: 3001
components:
- type: Transform
@@ -25887,6 +25504,11 @@ entities:
- type: Transform
pos: 36.5,-60.5
parent: 5350
+ - uid: 3056
+ components:
+ - type: Transform
+ pos: 69.5,6.5
+ parent: 5350
- uid: 3068
components:
- type: Transform
@@ -26927,11 +26549,6 @@ entities:
- type: Transform
pos: 60.5,-19.5
parent: 5350
- - uid: 5329
- components:
- - type: Transform
- pos: 70.5,5.5
- parent: 5350
- uid: 5334
components:
- type: Transform
@@ -27882,11 +27499,6 @@ entities:
- type: Transform
pos: -8.5,41.5
parent: 5350
- - uid: 6762
- components:
- - type: Transform
- pos: 45.5,25.5
- parent: 5350
- uid: 6779
components:
- type: Transform
@@ -27902,11 +27514,6 @@ entities:
- type: Transform
pos: 8.5,-61.5
parent: 5350
- - uid: 6818
- components:
- - type: Transform
- pos: 45.5,26.5
- parent: 5350
- uid: 6863
components:
- type: Transform
@@ -28587,11 +28194,6 @@ entities:
- type: Transform
pos: 9.5,47.5
parent: 5350
- - uid: 7730
- components:
- - type: Transform
- pos: -50.5,2.5
- parent: 5350
- uid: 7731
components:
- type: Transform
@@ -28687,11 +28289,6 @@ entities:
- type: Transform
pos: 60.5,-14.5
parent: 5350
- - uid: 7940
- components:
- - type: Transform
- pos: 75.5,5.5
- parent: 5350
- uid: 7941
components:
- type: Transform
@@ -28742,6 +28339,11 @@ entities:
- type: Transform
pos: 53.5,-11.5
parent: 5350
+ - uid: 8311
+ components:
+ - type: Transform
+ pos: 71.5,6.5
+ parent: 5350
- uid: 8351
components:
- type: Transform
@@ -38557,6 +38159,16 @@ entities:
- type: Transform
pos: 45.5,24.5
parent: 5350
+ - uid: 23222
+ components:
+ - type: Transform
+ pos: 47.5,24.5
+ parent: 5350
+ - uid: 23229
+ components:
+ - type: Transform
+ pos: 46.5,24.5
+ parent: 5350
- uid: 23234
components:
- type: Transform
@@ -38572,6 +38184,16 @@ entities:
- type: Transform
pos: 45.5,21.5
parent: 5350
+ - uid: 23239
+ components:
+ - type: Transform
+ pos: 47.5,23.5
+ parent: 5350
+ - uid: 23240
+ components:
+ - type: Transform
+ pos: 47.5,22.5
+ parent: 5350
- uid: 23242
components:
- type: Transform
@@ -38625,12 +38247,12 @@ entities:
- uid: 23256
components:
- type: Transform
- pos: 44.5,14.5
+ pos: 44.5,15.5
parent: 5350
- uid: 23257
components:
- type: Transform
- pos: 42.5,13.5
+ pos: 43.5,15.5
parent: 5350
- uid: 23258
components:
@@ -38787,6 +38409,11 @@ entities:
- type: Transform
pos: 52.5,6.5
parent: 5350
+ - uid: 23312
+ components:
+ - type: Transform
+ pos: 52.5,5.5
+ parent: 5350
- uid: 23313
components:
- type: Transform
@@ -38922,6 +38549,11 @@ entities:
- type: Transform
pos: 104.5,-13.5
parent: 5350
+ - uid: 23356
+ components:
+ - type: Transform
+ pos: 76.5,6.5
+ parent: 5350
- uid: 23364
components:
- type: Transform
@@ -39107,16 +38739,6 @@ entities:
- type: Transform
pos: 31.5,37.5
parent: 5350
- - uid: 23612
- components:
- - type: Transform
- pos: 71.5,5.5
- parent: 5350
- - uid: 23615
- components:
- - type: Transform
- pos: 73.5,5.5
- parent: 5350
- uid: 23813
components:
- type: Transform
@@ -39162,6 +38784,11 @@ entities:
- type: Transform
pos: -60.5,-15.5
parent: 5350
+ - uid: 23973
+ components:
+ - type: Transform
+ pos: 73.5,6.5
+ parent: 5350
- uid: 23991
components:
- type: Transform
@@ -39362,11 +38989,6 @@ entities:
- type: Transform
pos: -25.5,-56.5
parent: 5350
- - uid: 24594
- components:
- - type: Transform
- pos: 17.5,-61.5
- parent: 5350
- uid: 24637
components:
- type: Transform
@@ -40427,6 +40049,11 @@ entities:
- type: Transform
pos: 10.5,-14.5
parent: 5350
+ - uid: 26842
+ components:
+ - type: Transform
+ pos: 74.5,6.5
+ parent: 5350
- uid: 26980
components:
- type: Transform
@@ -41117,6 +40744,11 @@ entities:
- type: Transform
pos: 7.5,-26.5
parent: 5350
+ - uid: 28216
+ components:
+ - type: Transform
+ pos: 75.5,6.5
+ parent: 5350
- uid: 28247
components:
- type: Transform
@@ -41222,61 +40854,6 @@ entities:
- type: Transform
pos: 3.5,-46.5
parent: 5350
- - uid: 28406
- components:
- - type: Transform
- pos: 53.5,4.5
- parent: 5350
- - uid: 28407
- components:
- - type: Transform
- pos: 54.5,4.5
- parent: 5350
- - uid: 28408
- components:
- - type: Transform
- pos: 55.5,4.5
- parent: 5350
- - uid: 28409
- components:
- - type: Transform
- pos: 56.5,4.5
- parent: 5350
- - uid: 28439
- components:
- - type: Transform
- pos: 44.5,15.5
- parent: 5350
- - uid: 28440
- components:
- - type: Transform
- pos: 44.5,13.5
- parent: 5350
- - uid: 28441
- components:
- - type: Transform
- pos: 43.5,13.5
- parent: 5350
- - uid: 28442
- components:
- - type: Transform
- pos: 42.5,14.5
- parent: 5350
- - uid: 28443
- components:
- - type: Transform
- pos: 42.5,16.5
- parent: 5350
- - uid: 28444
- components:
- - type: Transform
- pos: 42.5,17.5
- parent: 5350
- - uid: 28445
- components:
- - type: Transform
- pos: 42.5,18.5
- parent: 5350
- proto: CableApcStack
entities:
- uid: 1550
@@ -41616,15 +41193,15 @@ entities:
- type: Transform
pos: 22.5,3.5
parent: 5350
- - uid: 2150
+ - uid: 2143
components:
- type: Transform
- pos: 15.5,9.5
+ pos: 47.5,-20.5
parent: 5350
- - uid: 2565
+ - uid: 2150
components:
- type: Transform
- pos: -54.5,-62.5
+ pos: 15.5,9.5
parent: 5350
- uid: 2710
components:
@@ -41701,16 +41278,6 @@ entities:
- type: Transform
pos: -27.5,23.5
parent: 5350
- - uid: 3602
- components:
- - type: Transform
- pos: -54.5,-60.5
- parent: 5350
- - uid: 3763
- components:
- - type: Transform
- pos: -54.5,-61.5
- parent: 5350
- uid: 3835
components:
- type: Transform
@@ -43046,6 +42613,11 @@ entities:
- type: Transform
pos: 31.5,-38.5
parent: 5350
+ - uid: 6362
+ components:
+ - type: Transform
+ pos: 70.5,3.5
+ parent: 5350
- uid: 6401
components:
- type: Transform
@@ -43131,11 +42703,6 @@ entities:
- type: Transform
pos: -16.5,34.5
parent: 5350
- - uid: 7047
- components:
- - type: Transform
- pos: 69.5,54.5
- parent: 5350
- uid: 7129
components:
- type: Transform
@@ -43206,11 +42773,6 @@ entities:
- type: Transform
pos: -25.5,52.5
parent: 5350
- - uid: 8087
- components:
- - type: Transform
- pos: -54.5,-59.5
- parent: 5350
- uid: 8089
components:
- type: Transform
@@ -43226,11 +42788,6 @@ entities:
- type: Transform
pos: -25.5,54.5
parent: 5350
- - uid: 8311
- components:
- - type: Transform
- pos: 63.5,29.5
- parent: 5350
- uid: 8369
components:
- type: Transform
@@ -43246,11 +42803,6 @@ entities:
- type: Transform
pos: -30.5,60.5
parent: 5350
- - uid: 8575
- components:
- - type: Transform
- pos: 70.5,12.5
- parent: 5350
- uid: 8589
components:
- type: Transform
@@ -43266,26 +42818,6 @@ entities:
- type: Transform
pos: 25.5,46.5
parent: 5350
- - uid: 8598
- components:
- - type: Transform
- pos: 70.5,11.5
- parent: 5350
- - uid: 8599
- components:
- - type: Transform
- pos: 65.5,29.5
- parent: 5350
- - uid: 8600
- components:
- - type: Transform
- pos: 67.5,29.5
- parent: 5350
- - uid: 8601
- components:
- - type: Transform
- pos: 69.5,29.5
- parent: 5350
- uid: 8621
components:
- type: Transform
@@ -43304,52 +42836,27 @@ entities:
- uid: 9032
components:
- type: Transform
- pos: 67.5,-29.5
+ pos: 51.5,-0.5
parent: 5350
- uid: 9036
components:
- type: Transform
- pos: 55.5,8.5
+ pos: 51.5,1.5
parent: 5350
- uid: 9037
components:
- type: Transform
- pos: 55.5,7.5
+ pos: 51.5,3.5
parent: 5350
- uid: 9082
components:
- type: Transform
pos: 51.5,2.5
parent: 5350
- - uid: 9093
- components:
- - type: Transform
- pos: 55.5,6.5
- parent: 5350
- - uid: 9094
- components:
- - type: Transform
- pos: 44.5,15.5
- parent: 5350
- - uid: 9095
- components:
- - type: Transform
- pos: 44.5,17.5
- parent: 5350
- - uid: 9097
- components:
- - type: Transform
- pos: 43.5,13.5
- parent: 5350
- - uid: 9098
- components:
- - type: Transform
- pos: 43.5,12.5
- parent: 5350
- - uid: 9103
+ - uid: 9122
components:
- type: Transform
- pos: 43.5,14.5
+ pos: 44.5,18.5
parent: 5350
- uid: 9123
components:
@@ -43381,6 +42888,16 @@ entities:
- type: Transform
pos: 43.5,18.5
parent: 5350
+ - uid: 9129
+ components:
+ - type: Transform
+ pos: 44.5,16.5
+ parent: 5350
+ - uid: 9130
+ components:
+ - type: Transform
+ pos: 44.5,17.5
+ parent: 5350
- uid: 9131
components:
- type: Transform
@@ -43396,10 +42913,25 @@ entities:
- type: Transform
pos: 42.5,13.5
parent: 5350
+ - uid: 9136
+ components:
+ - type: Transform
+ pos: 43.5,13.5
+ parent: 5350
+ - uid: 9137
+ components:
+ - type: Transform
+ pos: 44.5,13.5
+ parent: 5350
- uid: 9138
components:
- type: Transform
- pos: 67.5,-28.5
+ pos: 45.5,13.5
+ parent: 5350
+ - uid: 9139
+ components:
+ - type: Transform
+ pos: 46.5,13.5
parent: 5350
- uid: 9141
components:
@@ -43476,56 +43008,6 @@ entities:
- type: Transform
pos: 48.5,13.5
parent: 5350
- - uid: 9183
- components:
- - type: Transform
- pos: 69.5,-29.5
- parent: 5350
- - uid: 9184
- components:
- - type: Transform
- pos: 56.5,8.5
- parent: 5350
- - uid: 9189
- components:
- - type: Transform
- pos: 70.5,28.5
- parent: 5350
- - uid: 9190
- components:
- - type: Transform
- pos: 70.5,29.5
- parent: 5350
- - uid: 9194
- components:
- - type: Transform
- pos: 67.5,49.5
- parent: 5350
- - uid: 9195
- components:
- - type: Transform
- pos: 67.5,46.5
- parent: 5350
- - uid: 9198
- components:
- - type: Transform
- pos: 67.5,55.5
- parent: 5350
- - uid: 9202
- components:
- - type: Transform
- pos: 67.5,56.5
- parent: 5350
- - uid: 9203
- components:
- - type: Transform
- pos: 73.5,56.5
- parent: 5350
- - uid: 9204
- components:
- - type: Transform
- pos: 67.5,47.5
- parent: 5350
- uid: 9290
components:
- type: Transform
@@ -43621,11 +43103,6 @@ entities:
- type: Transform
pos: 17.5,-56.5
parent: 5350
- - uid: 9537
- components:
- - type: Transform
- pos: 73.5,46.5
- parent: 5350
- uid: 9549
components:
- type: Transform
@@ -43661,11 +43138,6 @@ entities:
- type: Transform
pos: -21.5,33.5
parent: 5350
- - uid: 10131
- components:
- - type: Transform
- pos: 73.5,47.5
- parent: 5350
- uid: 10137
components:
- type: Transform
@@ -43761,11 +43233,6 @@ entities:
- type: Transform
pos: -26.5,62.5
parent: 5350
- - uid: 10416
- components:
- - type: Transform
- pos: 73.5,49.5
- parent: 5350
- uid: 10432
components:
- type: Transform
@@ -44226,6 +43693,11 @@ entities:
- type: Transform
pos: 27.5,-56.5
parent: 5350
+ - uid: 10832
+ components:
+ - type: Transform
+ pos: 69.5,-26.5
+ parent: 5350
- uid: 10834
components:
- type: Transform
@@ -44251,25 +43723,10 @@ entities:
- type: Transform
pos: 54.5,32.5
parent: 5350
- - uid: 11600
- components:
- - type: Transform
- pos: 44.5,14.5
- parent: 5350
- - uid: 11646
- components:
- - type: Transform
- pos: -44.5,-63.5
- parent: 5350
- - uid: 11665
- components:
- - type: Transform
- pos: 73.5,53.5
- parent: 5350
- - uid: 11753
+ - uid: 11474
components:
- type: Transform
- pos: 44.5,18.5
+ pos: 43.5,-20.5
parent: 5350
- uid: 11877
components:
@@ -44466,15 +43923,10 @@ entities:
- type: Transform
pos: 42.5,-17.5
parent: 5350
- - uid: 11924
- components:
- - type: Transform
- pos: 44.5,16.5
- parent: 5350
- - uid: 11952
+ - uid: 12022
components:
- type: Transform
- pos: 73.5,55.5
+ pos: 68.5,-26.5
parent: 5350
- uid: 12043
components:
@@ -44506,11 +43958,6 @@ entities:
- type: Transform
pos: 16.5,5.5
parent: 5350
- - uid: 12297
- components:
- - type: Transform
- pos: -52.5,-60.5
- parent: 5350
- uid: 12364
components:
- type: Transform
@@ -44576,11 +44023,6 @@ entities:
- type: Transform
pos: 48.5,3.5
parent: 5350
- - uid: 12411
- components:
- - type: Transform
- pos: 73.5,52.5
- parent: 5350
- uid: 12420
components:
- type: Transform
@@ -44691,20 +44133,45 @@ entities:
- type: Transform
pos: 52.5,-20.5
parent: 5350
+ - uid: 12442
+ components:
+ - type: Transform
+ pos: 51.5,-20.5
+ parent: 5350
- uid: 12443
components:
- type: Transform
- pos: 67.5,-27.5
+ pos: 50.5,-20.5
parent: 5350
- - uid: 12446
+ - uid: 12444
components:
- type: Transform
- pos: 68.5,-29.5
+ pos: 49.5,-20.5
+ parent: 5350
+ - uid: 12445
+ components:
+ - type: Transform
+ pos: 48.5,-20.5
+ parent: 5350
+ - uid: 12447
+ components:
+ - type: Transform
+ pos: 46.5,-20.5
+ parent: 5350
+ - uid: 12448
+ components:
+ - type: Transform
+ pos: 45.5,-20.5
parent: 5350
- uid: 12449
components:
- type: Transform
- pos: 67.5,53.5
+ pos: 44.5,-20.5
+ parent: 5350
+ - uid: 12451
+ components:
+ - type: Transform
+ pos: 42.5,-20.5
parent: 5350
- uid: 12465
components:
@@ -44776,6 +44243,11 @@ entities:
- type: Transform
pos: 57.5,8.5
parent: 5350
+ - uid: 12480
+ components:
+ - type: Transform
+ pos: 56.5,8.5
+ parent: 5350
- uid: 12482
components:
- type: Transform
@@ -44891,16 +44363,6 @@ entities:
- type: Transform
pos: 51.5,17.5
parent: 5350
- - uid: 12541
- components:
- - type: Transform
- pos: 67.5,52.5
- parent: 5350
- - uid: 12666
- components:
- - type: Transform
- pos: 67.5,50.5
- parent: 5350
- uid: 13118
components:
- type: Transform
@@ -45716,11 +45178,6 @@ entities:
- type: Transform
pos: 8.5,-62.5
parent: 5350
- - uid: 14728
- components:
- - type: Transform
- pos: -58.5,-64.5
- parent: 5350
- uid: 15073
components:
- type: Transform
@@ -45731,11 +45188,6 @@ entities:
- type: Transform
pos: -29.5,30.5
parent: 5350
- - uid: 15132
- components:
- - type: Transform
- pos: -54.5,-64.5
- parent: 5350
- uid: 15341
components:
- type: Transform
@@ -45881,11 +45333,6 @@ entities:
- type: Transform
pos: 29.5,-49.5
parent: 5350
- - uid: 16263
- components:
- - type: Transform
- pos: -50.5,-64.5
- parent: 5350
- uid: 16284
components:
- type: Transform
@@ -45941,21 +45388,6 @@ entities:
- type: Transform
pos: 6.5,-62.5
parent: 5350
- - uid: 16730
- components:
- - type: Transform
- pos: -58.5,-59.5
- parent: 5350
- - uid: 16931
- components:
- - type: Transform
- pos: -58.5,-61.5
- parent: 5350
- - uid: 16938
- components:
- - type: Transform
- pos: -43.5,-63.5
- parent: 5350
- uid: 16958
components:
- type: Transform
@@ -45986,6 +45418,11 @@ entities:
- type: Transform
pos: -58.5,-65.5
parent: 5350
+ - uid: 16964
+ components:
+ - type: Transform
+ pos: -58.5,-64.5
+ parent: 5350
- uid: 16965
components:
- type: Transform
@@ -46016,10 +45453,20 @@ entities:
- type: Transform
pos: -56.5,-65.5
parent: 5350
+ - uid: 16971
+ components:
+ - type: Transform
+ pos: -56.5,-64.5
+ parent: 5350
+ - uid: 16972
+ components:
+ - type: Transform
+ pos: -57.5,-71.5
+ parent: 5350
- uid: 16973
components:
- type: Transform
- pos: -59.5,-63.5
+ pos: -53.5,-71.5
parent: 5350
- uid: 16974
components:
@@ -46051,6 +45498,11 @@ entities:
- type: Transform
pos: -54.5,-65.5
parent: 5350
+ - uid: 16980
+ components:
+ - type: Transform
+ pos: -54.5,-64.5
+ parent: 5350
- uid: 16981
components:
- type: Transform
@@ -46081,6 +45533,11 @@ entities:
- type: Transform
pos: -52.5,-65.5
parent: 5350
+ - uid: 16987
+ components:
+ - type: Transform
+ pos: -52.5,-64.5
+ parent: 5350
- uid: 16988
components:
- type: Transform
@@ -46111,10 +45568,15 @@ entities:
- type: Transform
pos: -50.5,-65.5
parent: 5350
+ - uid: 16994
+ components:
+ - type: Transform
+ pos: -50.5,-64.5
+ parent: 5350
- uid: 16995
components:
- type: Transform
- pos: -44.5,-64.5
+ pos: -49.5,-71.5
parent: 5350
- uid: 16996
components:
@@ -46149,7 +45611,7 @@ entities:
- uid: 17002
components:
- type: Transform
- pos: -46.5,-64.5
+ pos: -48.5,-64.5
parent: 5350
- uid: 17003
components:
@@ -46184,7 +45646,7 @@ entities:
- uid: 17009
components:
- type: Transform
- pos: -56.5,-62.5
+ pos: -46.5,-64.5
parent: 5350
- uid: 17010
components:
@@ -46219,157 +45681,142 @@ entities:
- uid: 17016
components:
- type: Transform
- pos: 38.5,-77.5
- parent: 5350
- - uid: 17034
- components:
- - type: Transform
- pos: -57.5,-70.5
- parent: 5350
- - uid: 17035
- components:
- - type: Transform
- pos: -53.5,-70.5
+ pos: -44.5,-64.5
parent: 5350
- - uid: 17036
+ - uid: 17017
components:
- type: Transform
- pos: -49.5,-70.5
+ pos: -45.5,-71.5
parent: 5350
- - uid: 17037
- components:
- - type: Transform
- pos: -45.5,-70.5
- parent: 5350
- - uid: 17042
+ - uid: 17018
components:
- type: Transform
- pos: -60.5,-63.5
+ pos: -46.5,-62.5
parent: 5350
- - uid: 17043
+ - uid: 17019
components:
- type: Transform
- pos: -61.5,-63.5
+ pos: -45.5,-61.5
parent: 5350
- - uid: 17065
+ - uid: 17020
components:
- type: Transform
- pos: -52.5,-62.5
+ pos: -44.5,-62.5
parent: 5350
- - uid: 17066
+ - uid: 17021
components:
- type: Transform
- pos: -58.5,-62.5
+ pos: -45.5,-62.5
parent: 5350
- - uid: 17067
+ - uid: 17022
components:
- type: Transform
- pos: -56.5,-61.5
+ pos: -48.5,-62.5
parent: 5350
- - uid: 17068
+ - uid: 17023
components:
- type: Transform
- pos: -56.5,-59.5
+ pos: -49.5,-62.5
parent: 5350
- - uid: 17069
+ - uid: 17024
components:
- type: Transform
- pos: -56.5,-60.5
+ pos: -50.5,-62.5
parent: 5350
- - uid: 17070
+ - uid: 17025
components:
- type: Transform
- pos: -48.5,-62.5
+ pos: -49.5,-61.5
parent: 5350
- - uid: 17071
+ - uid: 17026
components:
- type: Transform
- pos: -48.5,-61.5
+ pos: -52.5,-62.5
parent: 5350
- - uid: 17078
+ - uid: 17027
components:
- type: Transform
- pos: -48.5,-59.5
+ pos: -53.5,-62.5
parent: 5350
- - uid: 17079
+ - uid: 17028
components:
- type: Transform
- pos: -48.5,-60.5
+ pos: -54.5,-62.5
parent: 5350
- - uid: 17092
+ - uid: 17029
components:
- type: Transform
- pos: -44.5,-59.5
+ pos: -53.5,-61.5
parent: 5350
- - uid: 17093
+ - uid: 17030
components:
- type: Transform
- pos: -44.5,-61.5
+ pos: -56.5,-62.5
parent: 5350
- - uid: 17106
+ - uid: 17031
components:
- type: Transform
- pos: -44.5,-62.5
+ pos: -57.5,-62.5
parent: 5350
- - uid: 17107
+ - uid: 17032
components:
- type: Transform
- pos: -46.5,-61.5
+ pos: -58.5,-62.5
parent: 5350
- - uid: 17114
+ - uid: 17033
components:
- type: Transform
- pos: -46.5,-62.5
+ pos: -57.5,-61.5
parent: 5350
- - uid: 17115
+ - uid: 17034
components:
- type: Transform
- pos: -46.5,-60.5
+ pos: -57.5,-70.5
parent: 5350
- - uid: 17116
+ - uid: 17035
components:
- type: Transform
- pos: -46.5,-59.5
+ pos: -53.5,-70.5
parent: 5350
- - uid: 17123
+ - uid: 17036
components:
- type: Transform
- pos: -50.5,-62.5
+ pos: -49.5,-70.5
parent: 5350
- - uid: 17125
+ - uid: 17037
components:
- type: Transform
- pos: -58.5,-63.5
+ pos: -45.5,-70.5
parent: 5350
- - uid: 17132
+ - uid: 17038
components:
- type: Transform
- pos: -50.5,-61.5
+ pos: -57.5,-64.5
parent: 5350
- - uid: 17134
+ - uid: 17039
components:
- type: Transform
- pos: -50.5,-59.5
+ pos: -53.5,-64.5
parent: 5350
- - uid: 17150
+ - uid: 17040
components:
- type: Transform
- pos: -50.5,-60.5
+ pos: -49.5,-64.5
parent: 5350
- - uid: 17151
+ - uid: 17041
components:
- type: Transform
- pos: 38.5,-76.5
+ pos: -45.5,-64.5
parent: 5350
- - uid: 17166
+ - uid: 17042
components:
- type: Transform
- pos: 38.5,-66.5
+ pos: -60.5,-63.5
parent: 5350
- - uid: 17167
+ - uid: 17043
components:
- type: Transform
- pos: 38.5,-72.5
+ pos: -61.5,-63.5
parent: 5350
- uid: 17173
components:
@@ -46414,7 +45861,7 @@ entities:
- uid: 17206
components:
- type: Transform
- pos: 38.5,-71.5
+ pos: -43.5,-63.5
parent: 5350
- uid: 17347
components:
@@ -47466,6 +46913,26 @@ entities:
- type: Transform
pos: 63.5,44.5
parent: 5350
+ - uid: 18856
+ components:
+ - type: Transform
+ pos: 63.5,45.5
+ parent: 5350
+ - uid: 18857
+ components:
+ - type: Transform
+ pos: 63.5,46.5
+ parent: 5350
+ - uid: 18858
+ components:
+ - type: Transform
+ pos: 63.5,47.5
+ parent: 5350
+ - uid: 18859
+ components:
+ - type: Transform
+ pos: 63.5,48.5
+ parent: 5350
- uid: 18860
components:
- type: Transform
@@ -47536,11 +47003,6 @@ entities:
- type: Transform
pos: -29.5,24.5
parent: 5350
- - uid: 19851
- components:
- - type: Transform
- pos: -44.5,-60.5
- parent: 5350
- uid: 19887
components:
- type: Transform
@@ -47556,6 +47018,11 @@ entities:
- type: Transform
pos: 34.5,-69.5
parent: 5350
+ - uid: 19890
+ components:
+ - type: Transform
+ pos: 33.5,-68.5
+ parent: 5350
- uid: 19891
components:
- type: Transform
@@ -47586,6 +47053,11 @@ entities:
- type: Transform
pos: 42.5,-69.5
parent: 5350
+ - uid: 19897
+ components:
+ - type: Transform
+ pos: 43.5,-68.5
+ parent: 5350
- uid: 19898
components:
- type: Transform
@@ -47601,6 +47073,16 @@ entities:
- type: Transform
pos: 40.5,-67.5
parent: 5350
+ - uid: 19901
+ components:
+ - type: Transform
+ pos: 42.5,-68.5
+ parent: 5350
+ - uid: 19902
+ components:
+ - type: Transform
+ pos: 34.5,-68.5
+ parent: 5350
- uid: 19903
components:
- type: Transform
@@ -47636,6 +47118,16 @@ entities:
- type: Transform
pos: 42.5,-73.5
parent: 5350
+ - uid: 19910
+ components:
+ - type: Transform
+ pos: 42.5,-72.5
+ parent: 5350
+ - uid: 19911
+ components:
+ - type: Transform
+ pos: 43.5,-72.5
+ parent: 5350
- uid: 19912
components:
- type: Transform
@@ -47686,6 +47178,16 @@ entities:
- type: Transform
pos: 34.5,-73.5
parent: 5350
+ - uid: 19922
+ components:
+ - type: Transform
+ pos: 34.5,-72.5
+ parent: 5350
+ - uid: 19923
+ components:
+ - type: Transform
+ pos: 33.5,-72.5
+ parent: 5350
- uid: 19924
components:
- type: Transform
@@ -47726,6 +47228,16 @@ entities:
- type: Transform
pos: 34.5,-77.5
parent: 5350
+ - uid: 19932
+ components:
+ - type: Transform
+ pos: 34.5,-76.5
+ parent: 5350
+ - uid: 19933
+ components:
+ - type: Transform
+ pos: 33.5,-76.5
+ parent: 5350
- uid: 19934
components:
- type: Transform
@@ -47766,6 +47278,16 @@ entities:
- type: Transform
pos: 42.5,-75.5
parent: 5350
+ - uid: 19942
+ components:
+ - type: Transform
+ pos: 42.5,-76.5
+ parent: 5350
+ - uid: 19943
+ components:
+ - type: Transform
+ pos: 43.5,-76.5
+ parent: 5350
- uid: 19944
components:
- type: Transform
@@ -47851,16 +47373,6 @@ entities:
- type: Transform
pos: 38.5,-56.5
parent: 5350
- - uid: 19985
- components:
- - type: Transform
- pos: -58.5,-60.5
- parent: 5350
- - uid: 19999
- components:
- - type: Transform
- pos: -57.5,-63.5
- parent: 5350
- uid: 20023
components:
- type: Transform
@@ -47896,11 +47408,6 @@ entities:
- type: Transform
pos: -2.5,1.5
parent: 5350
- - uid: 21164
- components:
- - type: Transform
- pos: -48.5,-64.5
- parent: 5350
- uid: 21277
components:
- type: Transform
@@ -48421,30 +47928,15 @@ entities:
- type: Transform
pos: 95.5,0.5
parent: 5350
- - uid: 23069
- components:
- - type: Transform
- pos: -52.5,-64.5
- parent: 5350
- uid: 23129
components:
- type: Transform
pos: 96.5,0.5
parent: 5350
- - uid: 23145
- components:
- - type: Transform
- pos: -56.5,-64.5
- parent: 5350
- - uid: 23385
- components:
- - type: Transform
- pos: 70.5,48.5
- parent: 5350
- - uid: 23565
+ - uid: 23612
components:
- type: Transform
- pos: 43.5,15.5
+ pos: 63.5,29.5
parent: 5350
- uid: 23618
components:
@@ -48501,36 +47993,6 @@ entities:
- type: Transform
pos: 63.5,11.5
parent: 5350
- - uid: 23629
- components:
- - type: Transform
- pos: 64.5,11.5
- parent: 5350
- - uid: 23630
- components:
- - type: Transform
- pos: 65.5,11.5
- parent: 5350
- - uid: 23631
- components:
- - type: Transform
- pos: 66.5,11.5
- parent: 5350
- - uid: 23632
- components:
- - type: Transform
- pos: 67.5,11.5
- parent: 5350
- - uid: 23633
- components:
- - type: Transform
- pos: 68.5,11.5
- parent: 5350
- - uid: 23634
- components:
- - type: Transform
- pos: 69.5,11.5
- parent: 5350
- uid: 23642
components:
- type: Transform
@@ -48636,16 +48098,6 @@ entities:
- type: Transform
pos: 56.5,30.5
parent: 5350
- - uid: 23733
- components:
- - type: Transform
- pos: 64.5,54.5
- parent: 5350
- - uid: 23760
- components:
- - type: Transform
- pos: 71.5,48.5
- parent: 5350
- uid: 23794
components:
- type: Transform
@@ -48726,21 +48178,6 @@ entities:
- type: Transform
pos: 54.5,29.5
parent: 5350
- - uid: 23906
- components:
- - type: Transform
- pos: 64.5,29.5
- parent: 5350
- - uid: 23908
- components:
- - type: Transform
- pos: 66.5,29.5
- parent: 5350
- - uid: 23909
- components:
- - type: Transform
- pos: 68.5,29.5
- parent: 5350
- uid: 24059
components:
- type: Transform
@@ -48916,6 +48353,11 @@ entities:
- type: Transform
pos: 52.5,-21.5
parent: 5350
+ - uid: 24302
+ components:
+ - type: Transform
+ pos: 70.5,-28.5
+ parent: 5350
- uid: 24303
components:
- type: Transform
@@ -49156,260 +48598,100 @@ entities:
- type: Transform
pos: 71.5,-31.5
parent: 5350
- - uid: 28021
- components:
- - type: Transform
- pos: 71.5,-29.5
- parent: 5350
- - uid: 28022
- components:
- - type: Transform
- pos: 73.5,-29.5
- parent: 5350
- - uid: 28023
- components:
- - type: Transform
- pos: 74.5,-29.5
- parent: 5350
- - uid: 28024
- components:
- - type: Transform
- pos: 75.5,-29.5
- parent: 5350
- - uid: 28025
- components:
- - type: Transform
- pos: 72.5,-29.5
- parent: 5350
- - uid: 28026
- components:
- - type: Transform
- pos: 75.5,-30.5
- parent: 5350
- - uid: 28027
- components:
- - type: Transform
- pos: 76.5,-30.5
- parent: 5350
- - uid: 28028
- components:
- - type: Transform
- pos: 77.5,-30.5
- parent: 5350
- - uid: 28193
- components:
- - type: Transform
- pos: 52.5,18.5
- parent: 5350
- - uid: 28403
- components:
- - type: Transform
- pos: 41.5,14.5
- parent: 5350
- - uid: 28413
- components:
- - type: Transform
- pos: 55.5,5.5
- parent: 5350
- - uid: 28414
- components:
- - type: Transform
- pos: 55.5,4.5
- parent: 5350
- - uid: 28415
- components:
- - type: Transform
- pos: 55.5,3.5
- parent: 5350
- - uid: 28416
- components:
- - type: Transform
- pos: 55.5,2.5
- parent: 5350
- - uid: 28417
- components:
- - type: Transform
- pos: 55.5,1.5
- parent: 5350
- - uid: 28418
- components:
- - type: Transform
- pos: 55.5,0.5
- parent: 5350
- - uid: 28419
- components:
- - type: Transform
- pos: 55.5,-0.5
- parent: 5350
- - uid: 28495
- components:
- - type: Transform
- pos: 73.5,50.5
- parent: 5350
- - uid: 28499
- components:
- - type: Transform
- pos: 69.5,48.5
- parent: 5350
- - uid: 28503
- components:
- - type: Transform
- pos: 65.5,54.5
- parent: 5350
- - uid: 28513
- components:
- - type: Transform
- pos: -52.5,-59.5
- parent: 5350
- - uid: 28514
- components:
- - type: Transform
- pos: -52.5,-61.5
- parent: 5350
- - uid: 28532
- components:
- - type: Transform
- pos: 38.5,-75.5
- parent: 5350
- - uid: 28548
- components:
- - type: Transform
- pos: 33.5,-71.5
- parent: 5350
- - uid: 28549
- components:
- - type: Transform
- pos: 32.5,-71.5
- parent: 5350
- - uid: 28550
- components:
- - type: Transform
- pos: 32.5,-73.5
- parent: 5350
- - uid: 28551
- components:
- - type: Transform
- pos: 33.5,-73.5
- parent: 5350
- - uid: 28552
- components:
- - type: Transform
- pos: 33.5,-77.5
- parent: 5350
- - uid: 28553
- components:
- - type: Transform
- pos: 32.5,-77.5
- parent: 5350
- - uid: 28554
- components:
- - type: Transform
- pos: 33.5,-75.5
- parent: 5350
- - uid: 28555
- components:
- - type: Transform
- pos: 32.5,-75.5
- parent: 5350
- - uid: 28556
- components:
- - type: Transform
- pos: 33.5,-67.5
- parent: 5350
- - uid: 28557
+ - uid: 27996
components:
- type: Transform
- pos: 32.5,-67.5
+ pos: 70.5,-27.5
parent: 5350
- - uid: 28558
+ - uid: 27997
components:
- type: Transform
- pos: 33.5,-69.5
+ pos: 71.5,-27.5
parent: 5350
- - uid: 28559
+ - uid: 27998
components:
- type: Transform
- pos: 32.5,-69.5
+ pos: 72.5,-27.5
parent: 5350
- - uid: 28561
+ - uid: 28005
components:
- type: Transform
- pos: 43.5,-67.5
+ pos: 69.5,-25.5
parent: 5350
- - uid: 28562
+ - uid: 28006
components:
- type: Transform
- pos: 44.5,-67.5
+ pos: 70.5,-25.5
parent: 5350
- - uid: 28563
+ - uid: 28007
components:
- type: Transform
- pos: 44.5,-69.5
+ pos: 71.5,-25.5
parent: 5350
- - uid: 28564
+ - uid: 28008
components:
- type: Transform
- pos: 43.5,-69.5
+ pos: 72.5,-25.5
parent: 5350
- - uid: 28565
+ - uid: 28009
components:
- type: Transform
- pos: 44.5,-73.5
+ pos: 72.5,-26.5
parent: 5350
- - uid: 28566
+ - uid: 28010
components:
- type: Transform
- pos: 43.5,-73.5
+ pos: 71.5,-26.5
parent: 5350
- - uid: 28567
+ - uid: 28011
components:
- type: Transform
- pos: 44.5,-71.5
+ pos: 70.5,-26.5
parent: 5350
- - uid: 28568
+ - uid: 28021
components:
- type: Transform
- pos: 43.5,-71.5
+ pos: 71.5,-29.5
parent: 5350
- - uid: 28569
+ - uid: 28022
components:
- type: Transform
- pos: 44.5,-77.5
+ pos: 73.5,-29.5
parent: 5350
- - uid: 28570
+ - uid: 28023
components:
- type: Transform
- pos: 43.5,-77.5
+ pos: 74.5,-29.5
parent: 5350
- - uid: 28571
+ - uid: 28024
components:
- type: Transform
- pos: 44.5,-75.5
+ pos: 75.5,-29.5
parent: 5350
- - uid: 28572
+ - uid: 28025
components:
- type: Transform
- pos: 43.5,-75.5
+ pos: 72.5,-29.5
parent: 5350
- - uid: 28593
+ - uid: 28026
components:
- type: Transform
- pos: -52.5,-63.5
+ pos: 75.5,-30.5
parent: 5350
- - uid: 28594
+ - uid: 28027
components:
- type: Transform
- pos: -53.5,-63.5
+ pos: 76.5,-30.5
parent: 5350
- - uid: 28595
+ - uid: 28028
components:
- type: Transform
- pos: -54.5,-63.5
+ pos: 77.5,-30.5
parent: 5350
- - uid: 28596
+ - uid: 28193
components:
- type: Transform
- pos: -51.5,-63.5
+ pos: 52.5,18.5
parent: 5350
- proto: CableHVStack
entities:
@@ -51415,11 +50697,6 @@ entities:
- type: Transform
pos: 15.5,41.5
parent: 5350
- - uid: 5098
- components:
- - type: Transform
- pos: 55.5,4.5
- parent: 5350
- uid: 5100
components:
- type: Transform
@@ -51955,6 +51232,11 @@ entities:
- type: Transform
pos: -12.5,9.5
parent: 5350
+ - uid: 6511
+ components:
+ - type: Transform
+ pos: 62.5,29.5
+ parent: 5350
- uid: 6515
components:
- type: Transform
@@ -52715,6 +51997,11 @@ entities:
- type: Transform
pos: -12.5,49.5
parent: 5350
+ - uid: 7538
+ components:
+ - type: Transform
+ pos: 69.5,12.5
+ parent: 5350
- uid: 7552
components:
- type: Transform
@@ -52785,6 +52072,11 @@ entities:
- type: Transform
pos: 22.5,32.5
parent: 5350
+ - uid: 7741
+ components:
+ - type: Transform
+ pos: 71.5,12.5
+ parent: 5350
- uid: 7753
components:
- type: Transform
@@ -52900,6 +52192,11 @@ entities:
- type: Transform
pos: 12.5,41.5
parent: 5350
+ - uid: 7939
+ components:
+ - type: Transform
+ pos: 64.5,29.5
+ parent: 5350
- uid: 7952
components:
- type: Transform
@@ -52995,16 +52292,6 @@ entities:
- type: Transform
pos: -18.5,26.5
parent: 5350
- - uid: 9192
- components:
- - type: Transform
- pos: 48.5,24.5
- parent: 5350
- - uid: 9193
- components:
- - type: Transform
- pos: 49.5,24.5
- parent: 5350
- uid: 9213
components:
- type: Transform
@@ -53760,11 +53047,6 @@ entities:
- type: Transform
pos: -4.5,60.5
parent: 5350
- - uid: 11474
- components:
- - type: Transform
- pos: 56.5,4.5
- parent: 5350
- uid: 11565
components:
- type: Transform
@@ -56590,6 +55872,11 @@ entities:
- type: Transform
pos: 74.5,28.5
parent: 5350
+ - uid: 23408
+ components:
+ - type: Transform
+ pos: 52.5,5.5
+ parent: 5350
- uid: 23410
components:
- type: Transform
@@ -56835,6 +56122,11 @@ entities:
- type: Transform
pos: 30.5,49.5
parent: 5350
+ - uid: 23613
+ components:
+ - type: Transform
+ pos: 63.5,29.5
+ parent: 5350
- uid: 23641
components:
- type: Transform
@@ -57350,6 +56642,21 @@ entities:
- type: Transform
pos: 47.5,24.5
parent: 5350
+ - uid: 24048
+ components:
+ - type: Transform
+ pos: 47.5,23.5
+ parent: 5350
+ - uid: 24049
+ components:
+ - type: Transform
+ pos: 48.5,23.5
+ parent: 5350
+ - uid: 24050
+ components:
+ - type: Transform
+ pos: 49.5,23.5
+ parent: 5350
- uid: 24061
components:
- type: Transform
@@ -57740,31 +57047,6 @@ entities:
- type: Transform
pos: 2.5,-42.5
parent: 5350
- - uid: 28490
- components:
- - type: Transform
- pos: -8.5,45.5
- parent: 5350
- - uid: 28491
- components:
- - type: Transform
- pos: -8.5,46.5
- parent: 5350
- - uid: 28492
- components:
- - type: Transform
- pos: -8.5,47.5
- parent: 5350
- - uid: 28493
- components:
- - type: Transform
- pos: -7.5,47.5
- parent: 5350
- - uid: 28494
- components:
- - type: Transform
- pos: -6.5,47.5
- parent: 5350
- proto: CableMVStack
entities:
- uid: 1548
@@ -57789,7 +57071,19 @@ entities:
parent: 5350
- proto: CableTerminal
entities:
- - uid: 9096
+ - uid: 9093
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,18.5
+ parent: 5350
+ - uid: 9132
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,16.5
+ parent: 5350
+ - uid: 9133
components:
- type: Transform
rot: -1.5707963267948966 rad
@@ -57829,12 +57123,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 38.5,-60.5
parent: 5350
- - uid: 23593
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 44.5,15.5
- parent: 5350
- uid: 25869
components:
- type: Transform
@@ -57853,29 +57141,29 @@ entities:
rot: 1.5707963267948966 rad
pos: 54.5,30.5
parent: 5350
- - uid: 28029
+ - uid: 27999
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 75.5,-30.5
+ rot: 3.141592653589793 rad
+ pos: 70.5,-27.5
parent: 5350
- - uid: 28361
+ - uid: 28000
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 44.5,16.5
+ rot: 3.141592653589793 rad
+ pos: 71.5,-27.5
parent: 5350
- - uid: 28362
+ - uid: 28001
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 44.5,18.5
+ rot: 3.141592653589793 rad
+ pos: 72.5,-27.5
parent: 5350
- - uid: 28363
+ - uid: 28029
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 44.5,14.5
+ rot: 1.5707963267948966 rad
+ pos: 75.5,-30.5
parent: 5350
- proto: CannabisSeeds
entities:
@@ -59854,12 +59142,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 33.5,-26.5
parent: 5350
- - uid: 3760
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -49.5,-61.5
- parent: 5350
- uid: 3821
components:
- type: Transform
@@ -59940,6 +59222,12 @@ entities:
rot: 1.5707963267948966 rad
pos: 31.5,-30.5
parent: 5350
+ - uid: 4895
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 43.5,-20.5
+ parent: 5350
- uid: 5389
components:
- type: Transform
@@ -59995,23 +59283,11 @@ entities:
rot: 3.141592653589793 rad
pos: 49.5,-35.5
parent: 5350
- - uid: 6531
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -49.5,-62.5
- parent: 5350
- uid: 6598
components:
- type: Transform
pos: -38.5,-57.5
parent: 5350
- - uid: 6700
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -45.5,-60.5
- parent: 5350
- uid: 6711
components:
- type: Transform
@@ -60225,16 +59501,6 @@ entities:
rot: 3.141592653589793 rad
pos: 49.5,-32.5
parent: 5350
- - uid: 9129
- components:
- - type: Transform
- pos: 43.5,-20.5
- parent: 5350
- - uid: 9139
- components:
- - type: Transform
- pos: 47.5,-20.5
- parent: 5350
- uid: 9149
components:
- type: Transform
@@ -60250,11 +59516,6 @@ entities:
- type: Transform
pos: 79.5,-13.5
parent: 5350
- - uid: 9178
- components:
- - type: Transform
- pos: 45.5,-20.5
- parent: 5350
- uid: 9201
components:
- type: Transform
@@ -60499,6 +59760,12 @@ entities:
rot: -1.5707963267948966 rad
pos: 43.5,-17.5
parent: 5350
+ - uid: 11446
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,-20.5
+ parent: 5350
- uid: 11453
components:
- type: Transform
@@ -60532,6 +59799,12 @@ entities:
rot: 3.141592653589793 rad
pos: 43.5,-34.5
parent: 5350
+ - uid: 11924
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,-20.5
+ parent: 5350
- uid: 12119
components:
- type: Transform
@@ -60933,27 +60206,11 @@ entities:
- type: Transform
pos: -25.5,53.5
parent: 5350
- - uid: 12354
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,-61.5
- parent: 5350
- - uid: 12442
- components:
- - type: Transform
- pos: 44.5,-20.5
- parent: 5350
- - uid: 12444
- components:
- - type: Transform
- pos: 46.5,-20.5
- parent: 5350
- - uid: 12447
+ - uid: 12446
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 44.5,14.5
+ pos: 47.5,-20.5
parent: 5350
- uid: 12641
components:
@@ -61031,12 +60288,6 @@ entities:
rot: 3.141592653589793 rad
pos: 43.5,-33.5
parent: 5350
- - uid: 14064
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -45.5,-62.5
- parent: 5350
- uid: 14141
components:
- type: Transform
@@ -61138,12 +60389,6 @@ entities:
- type: Transform
pos: 68.5,0.5
parent: 5350
- - uid: 15009
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -57.5,-59.5
- parent: 5350
- uid: 15010
components:
- type: Transform
@@ -61227,24 +60472,12 @@ entities:
rot: -1.5707963267948966 rad
pos: 34.5,-49.5
parent: 5350
- - uid: 16262
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,-59.5
- parent: 5350
- uid: 16291
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -42.5,-55.5
parent: 5350
- - uid: 16311
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -57.5,-61.5
- parent: 5350
- uid: 16410
components:
- type: Transform
@@ -61265,12 +60498,6 @@ entities:
- type: Transform
pos: -42.5,-53.5
parent: 5350
- - uid: 16677
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -49.5,-60.5
- parent: 5350
- uid: 16838
components:
- type: Transform
@@ -61336,90 +60563,6 @@ entities:
- type: Transform
pos: -39.5,-77.5
parent: 5350
- - uid: 16930
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -57.5,-62.5
- parent: 5350
- - uid: 16933
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -57.5,-64.5
- parent: 5350
- - uid: 16934
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,-64.5
- parent: 5350
- - uid: 16935
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -49.5,-64.5
- parent: 5350
- - uid: 16936
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -45.5,-64.5
- parent: 5350
- - uid: 16943
- components:
- - type: Transform
- pos: 45.5,-68.5
- parent: 5350
- - uid: 16944
- components:
- - type: Transform
- pos: 44.5,-72.5
- parent: 5350
- - uid: 16964
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,-62.5
- parent: 5350
- - uid: 16971
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -49.5,-59.5
- parent: 5350
- - uid: 16987
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,-60.5
- parent: 5350
- - uid: 16994
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -57.5,-60.5
- parent: 5350
- - uid: 17018
- components:
- - type: Transform
- pos: 41.5,-76.5
- parent: 5350
- - uid: 17020
- components:
- - type: Transform
- pos: 45.5,-72.5
- parent: 5350
- - uid: 17025
- components:
- - type: Transform
- pos: 43.5,-68.5
- parent: 5350
- - uid: 17026
- components:
- - type: Transform
- pos: 44.5,-68.5
- parent: 5350
- uid: 17117
components:
- type: Transform
@@ -61450,11 +60593,21 @@ entities:
- type: Transform
pos: -53.5,-65.5
parent: 5350
+ - uid: 17123
+ components:
+ - type: Transform
+ pos: -53.5,-64.5
+ parent: 5350
- uid: 17124
components:
- type: Transform
pos: -53.5,-63.5
parent: 5350
+ - uid: 17125
+ components:
+ - type: Transform
+ pos: -53.5,-62.5
+ parent: 5350
- uid: 17126
components:
- type: Transform
@@ -61485,11 +60638,21 @@ entities:
- type: Transform
pos: -57.5,-65.5
parent: 5350
+ - uid: 17132
+ components:
+ - type: Transform
+ pos: -57.5,-64.5
+ parent: 5350
- uid: 17133
components:
- type: Transform
pos: -57.5,-63.5
parent: 5350
+ - uid: 17134
+ components:
+ - type: Transform
+ pos: -57.5,-62.5
+ parent: 5350
- uid: 17135
components:
- type: Transform
@@ -61565,10 +60728,25 @@ entities:
- type: Transform
pos: -44.5,-63.5
parent: 5350
+ - uid: 17150
+ components:
+ - type: Transform
+ pos: -43.5,-63.5
+ parent: 5350
+ - uid: 17151
+ components:
+ - type: Transform
+ pos: -45.5,-62.5
+ parent: 5350
- uid: 17152
components:
- type: Transform
- pos: 37.5,-76.5
+ pos: -49.5,-62.5
+ parent: 5350
+ - uid: 17153
+ components:
+ - type: Transform
+ pos: -49.5,-64.5
parent: 5350
- uid: 17154
components:
@@ -61630,6 +60808,22 @@ entities:
- type: Transform
pos: -45.5,-65.5
parent: 5350
+ - uid: 17166
+ components:
+ - type: Transform
+ pos: -45.5,-64.5
+ parent: 5350
+ - uid: 17167
+ components:
+ - type: Transform
+ pos: -63.5,-74.5
+ parent: 5350
+ - uid: 17287
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,-20.5
+ parent: 5350
- uid: 17517
components:
- type: Transform
@@ -61840,6 +61034,11 @@ entities:
- type: Transform
pos: 76.5,49.5
parent: 5350
+ - uid: 18684
+ components:
+ - type: Transform
+ pos: 73.5,49.5
+ parent: 5350
- uid: 18685
components:
- type: Transform
@@ -61850,11 +61049,31 @@ entities:
- type: Transform
pos: 70.5,46.5
parent: 5350
+ - uid: 18687
+ components:
+ - type: Transform
+ pos: 73.5,50.5
+ parent: 5350
- uid: 18688
components:
- type: Transform
pos: 67.5,48.5
parent: 5350
+ - uid: 18689
+ components:
+ - type: Transform
+ pos: 67.5,47.5
+ parent: 5350
+ - uid: 18691
+ components:
+ - type: Transform
+ pos: 67.5,49.5
+ parent: 5350
+ - uid: 18692
+ components:
+ - type: Transform
+ pos: 67.5,50.5
+ parent: 5350
- uid: 18693
components:
- type: Transform
@@ -61945,6 +61164,26 @@ entities:
- type: Transform
pos: 76.5,56.5
parent: 5350
+ - uid: 18711
+ components:
+ - type: Transform
+ pos: 73.5,52.5
+ parent: 5350
+ - uid: 18712
+ components:
+ - type: Transform
+ pos: 73.5,53.5
+ parent: 5350
+ - uid: 18713
+ components:
+ - type: Transform
+ pos: 73.5,55.5
+ parent: 5350
+ - uid: 18714
+ components:
+ - type: Transform
+ pos: 73.5,56.5
+ parent: 5350
- uid: 18715
components:
- type: Transform
@@ -61965,6 +61204,26 @@ entities:
- type: Transform
pos: 70.5,56.5
parent: 5350
+ - uid: 18719
+ components:
+ - type: Transform
+ pos: 67.5,52.5
+ parent: 5350
+ - uid: 18720
+ components:
+ - type: Transform
+ pos: 67.5,53.5
+ parent: 5350
+ - uid: 18721
+ components:
+ - type: Transform
+ pos: 67.5,55.5
+ parent: 5350
+ - uid: 18722
+ components:
+ - type: Transform
+ pos: 67.5,56.5
+ parent: 5350
- uid: 18864
components:
- type: Transform
@@ -62134,6 +61393,11 @@ entities:
rot: -1.5707963267948966 rad
pos: 32.5,-26.5
parent: 5350
+ - uid: 19792
+ components:
+ - type: Transform
+ pos: 37.5,-76.5
+ parent: 5350
- uid: 19793
components:
- type: Transform
@@ -62144,6 +61408,11 @@ entities:
- type: Transform
pos: 35.5,-76.5
parent: 5350
+ - uid: 19795
+ components:
+ - type: Transform
+ pos: 34.5,-76.5
+ parent: 5350
- uid: 19796
components:
- type: Transform
@@ -62154,6 +61423,21 @@ entities:
- type: Transform
pos: 40.5,-76.5
parent: 5350
+ - uid: 19798
+ components:
+ - type: Transform
+ pos: 41.5,-76.5
+ parent: 5350
+ - uid: 19799
+ components:
+ - type: Transform
+ pos: 42.5,-76.5
+ parent: 5350
+ - uid: 19800
+ components:
+ - type: Transform
+ pos: 42.5,-72.5
+ parent: 5350
- uid: 19801
components:
- type: Transform
@@ -62184,6 +61468,16 @@ entities:
- type: Transform
pos: 35.5,-72.5
parent: 5350
+ - uid: 19807
+ components:
+ - type: Transform
+ pos: 34.5,-72.5
+ parent: 5350
+ - uid: 19808
+ components:
+ - type: Transform
+ pos: 34.5,-68.5
+ parent: 5350
- uid: 19809
components:
- type: Transform
@@ -62214,6 +61508,16 @@ entities:
- type: Transform
pos: 41.5,-68.5
parent: 5350
+ - uid: 19815
+ components:
+ - type: Transform
+ pos: 42.5,-68.5
+ parent: 5350
+ - uid: 19816
+ components:
+ - type: Transform
+ pos: 44.5,-68.5
+ parent: 5350
- uid: 19817
components:
- type: Transform
@@ -62224,6 +61528,16 @@ entities:
- type: Transform
pos: 31.5,-68.5
parent: 5350
+ - uid: 19819
+ components:
+ - type: Transform
+ pos: 32.5,-76.5
+ parent: 5350
+ - uid: 19820
+ components:
+ - type: Transform
+ pos: 31.5,-76.5
+ parent: 5350
- uid: 19821
components:
- type: Transform
@@ -62285,17 +61599,6 @@ entities:
- type: Transform
pos: 24.5,-68.5
parent: 5350
- - uid: 19850
- components:
- - type: Transform
- pos: 34.5,-68.5
- parent: 5350
- - uid: 19971
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -45.5,-61.5
- parent: 5350
- uid: 20039
components:
- type: Transform
@@ -62722,17 +62025,6 @@ entities:
rot: 3.141592653589793 rad
pos: 70.5,32.5
parent: 5350
- - uid: 23381
- components:
- - type: Transform
- pos: -43.5,-63.5
- parent: 5350
- - uid: 23570
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 44.5,16.5
- parent: 5350
- uid: 23606
components:
- type: Transform
@@ -63025,6 +62317,11 @@ entities:
- type: Transform
pos: -26.5,19.5
parent: 5350
+ - uid: 24594
+ components:
+ - type: Transform
+ pos: 67.5,46.5
+ parent: 5350
- uid: 24595
components:
- type: Transform
@@ -63040,6 +62337,16 @@ entities:
- type: Transform
pos: 70.5,50.5
parent: 5350
+ - uid: 24610
+ components:
+ - type: Transform
+ pos: 73.5,47.5
+ parent: 5350
+ - uid: 24611
+ components:
+ - type: Transform
+ pos: 73.5,46.5
+ parent: 5350
- uid: 24614
components:
- type: Transform
@@ -63436,18 +62743,6 @@ entities:
- type: Transform
pos: 63.5,32.5
parent: 5350
- - uid: 28009
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 44.5,15.5
- parent: 5350
- - uid: 28010
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 44.5,17.5
- parent: 5350
- uid: 28107
components:
- type: Transform
@@ -63458,154 +62753,6 @@ entities:
- type: Transform
pos: 43.5,-22.5
parent: 5350
- - uid: 28364
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 44.5,18.5
- parent: 5350
- - uid: 28368
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 42.5,14.5
- parent: 5350
- - uid: 28369
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 42.5,15.5
- parent: 5350
- - uid: 28370
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 42.5,16.5
- parent: 5350
- - uid: 28371
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 42.5,17.5
- parent: 5350
- - uid: 28372
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 42.5,18.5
- parent: 5350
- - uid: 28412
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -45.5,-59.5
- parent: 5350
- - uid: 28430
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 67.5,1.5
- parent: 5350
- - uid: 28431
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 67.5,5.5
- parent: 5350
- - uid: 28432
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 67.5,3.5
- parent: 5350
- - uid: 28433
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 67.5,4.5
- parent: 5350
- - uid: 28437
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 70.5,-23.5
- parent: 5350
- - uid: 28438
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 69.5,-23.5
- parent: 5350
- - uid: 28517
- components:
- - type: Transform
- pos: 43.5,-72.5
- parent: 5350
- - uid: 28535
- components:
- - type: Transform
- pos: 42.5,-68.5
- parent: 5350
- - uid: 28536
- components:
- - type: Transform
- pos: 42.5,-72.5
- parent: 5350
- - uid: 28537
- components:
- - type: Transform
- pos: 43.5,-76.5
- parent: 5350
- - uid: 28538
- components:
- - type: Transform
- pos: 42.5,-76.5
- parent: 5350
- - uid: 28539
- components:
- - type: Transform
- pos: 44.5,-76.5
- parent: 5350
- - uid: 28540
- components:
- - type: Transform
- pos: 45.5,-76.5
- parent: 5350
- - uid: 28541
- components:
- - type: Transform
- pos: 34.5,-76.5
- parent: 5350
- - uid: 28542
- components:
- - type: Transform
- pos: 33.5,-76.5
- parent: 5350
- - uid: 28543
- components:
- - type: Transform
- pos: 32.5,-76.5
- parent: 5350
- - uid: 28544
- components:
- - type: Transform
- pos: 32.5,-72.5
- parent: 5350
- - uid: 28545
- components:
- - type: Transform
- pos: 33.5,-72.5
- parent: 5350
- - uid: 28546
- components:
- - type: Transform
- pos: 34.5,-72.5
- parent: 5350
- - uid: 28547
- components:
- - type: Transform
- pos: 33.5,-68.5
- parent: 5350
- proto: Chair
entities:
- uid: 347
@@ -64887,12 +64034,6 @@ entities:
rot: 3.141592653589793 rad
pos: 0.5209484,3.569162
parent: 5350
- - uid: 8003
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5012307,38.59284
- parent: 5350
- uid: 8092
components:
- type: Transform
@@ -64947,6 +64088,12 @@ entities:
- type: Transform
pos: -37.5,-63.5
parent: 5350
+ - uid: 17516
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.499897,38.548077
+ parent: 5350
- uid: 17602
components:
- type: Transform
@@ -65153,6 +64300,12 @@ entities:
rot: 3.141592653589793 rad
pos: -14.984909,-23.468428
parent: 5350
+ - uid: 5098
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 43.5,13.5
+ parent: 5350
- uid: 5545
components:
- type: Transform
@@ -65593,11 +64746,6 @@ entities:
- type: Transform
pos: -32.46505,-23.466705
parent: 5350
- - uid: 28381
- components:
- - type: Transform
- pos: 53.598175,14.412935
- parent: 5350
- proto: ChurchOrganInstrument
entities:
- uid: 22887
@@ -65633,24 +64781,6 @@ entities:
- type: Transform
pos: 23.395086,-60.270504
parent: 5350
- - uid: 28387
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 54.201515,14.598097
- parent: 5350
- - uid: 28388
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 54.482765,14.598097
- parent: 5350
- - uid: 28389
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 54.482765,14.598097
- parent: 5350
- proto: CigarCase
entities:
- uid: 10476
@@ -66247,11 +65377,6 @@ entities:
- 0
- 0
- 0
- - uid: 3939
- components:
- - type: Transform
- pos: 16.5,-59.5
- parent: 5350
- uid: 6051
components:
- type: Transform
@@ -66326,6 +65451,11 @@ entities:
- 0
- 0
- 0
+ - uid: 15120
+ components:
+ - type: Transform
+ pos: 18.5,-59.5
+ parent: 5350
- uid: 15608
components:
- type: Transform
@@ -66477,6 +65607,24 @@ entities:
- type: Transform
pos: -23.5,29.5
parent: 5350
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.14673
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
- uid: 22795
components:
- type: Transform
@@ -67013,6 +66161,25 @@ entities:
- type: Transform
pos: 18.503342,-32.294178
parent: 5350
+ - type: GroupExamine
+ group:
+ - hoverMessage: ""
+ contextText: verb-examine-group-other
+ icon: /Textures/Interface/examine-star.png
+ components:
+ - Armor
+ - ClothingSpeedModifier
+ entries:
+ - message: >-
+ It provides the following protection:
+
+ - [color=orange]Explosion[/color] damage [color=white]to contents[/color] reduced by [color=lightblue]10%[/color].
+ priority: 0
+ component: Armor
+ - message: This decreases your running speed by [color=yellow]10%[/color].
+ priority: 0
+ component: ClothingSpeedModifier
+ title: null
- proto: ClothingBeltChampion
entities:
- uid: 1952
@@ -67068,11 +66235,6 @@ entities:
- type: Transform
pos: 5.489552,-48.32825
parent: 5350
- - uid: 18713
- components:
- - type: Transform
- pos: 5.6363497,-48.51322
- parent: 5350
- uid: 22343
components:
- type: Transform
@@ -67092,20 +66254,25 @@ entities:
parent: 5350
- proto: ClothingEyesBlindfold
entities:
- - uid: 6338
+ - uid: 6519
components:
- type: Transform
- pos: 8.730065,28.203384
+ pos: 8.74664,28.347475
parent: 5350
- - uid: 6362
+ - uid: 6529
components:
- type: Transform
- pos: 8.730065,28.203384
+ pos: 8.74664,28.472475
parent: 5350
- - uid: 6448
+ - uid: 6645
+ components:
+ - type: Transform
+ pos: 8.736223,28.722475
+ parent: 5350
+ - uid: 6690
components:
- type: Transform
- pos: 8.730065,28.203384
+ pos: 8.74664,28.597475
parent: 5350
- proto: ClothingEyesEyepatch
entities:
@@ -67545,25 +66712,25 @@ entities:
parent: 5350
- proto: ClothingHeadHelmetBasic
entities:
- - uid: 6490
+ - uid: 7377
components:
- type: Transform
- pos: -8.654011,44.395737
+ pos: -8.675636,44.33661
parent: 5350
- - uid: 7368
+ - uid: 7380
components:
- type: Transform
- pos: -8.654011,44.614487
+ pos: -8.660011,44.477234
parent: 5350
- - uid: 7377
+ - uid: 7382
components:
- type: Transform
- pos: -8.664427,44.718655
+ pos: -8.675636,44.602234
parent: 5350
- - uid: 7517
+ - uid: 7383
components:
- type: Transform
- pos: -8.654011,44.510323
+ pos: -8.675636,44.68036
parent: 5350
- proto: ClothingHeadHelmetEVA
entities:
@@ -67579,11 +66746,25 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
+ - uid: 7940
+ components:
+ - type: Transform
+ parent: 7801
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- uid: 11097
components:
- type: Transform
pos: -18.29037,-13.4859085
parent: 5350
+ - uid: 15196
+ components:
+ - type: Transform
+ parent: 15195
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- uid: 15200
components:
- type: Transform
@@ -67594,21 +66775,21 @@ entities:
- uid: 22229
components:
- type: Transform
- parent: 24610
+ parent: 1488
- type: Physics
canCollide: False
- type: InsideEntityStorage
- uid: 22348
components:
- type: Transform
- parent: 13159
+ parent: 1488
- type: Physics
canCollide: False
- type: InsideEntityStorage
- uid: 23051
components:
- type: Transform
- parent: 24328
+ parent: 1489
- type: Physics
canCollide: False
- type: InsideEntityStorage
@@ -67619,6 +66800,13 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
+ - uid: 23407
+ components:
+ - type: Transform
+ parent: 4104
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- uid: 23472
components:
- type: Transform
@@ -67626,6 +66814,13 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
+ - uid: 23712
+ components:
+ - type: Transform
+ parent: 7165
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- uid: 23905
components:
- type: Transform
@@ -67633,6 +66828,13 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
+ - uid: 24056
+ components:
+ - type: Transform
+ parent: 2617
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- uid: 24057
components:
- type: Transform
@@ -67640,6 +66842,13 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
+ - uid: 24248
+ components:
+ - type: Transform
+ parent: 11032
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- uid: 24266
components:
- type: Transform
@@ -67649,25 +66858,25 @@ entities:
- type: InsideEntityStorage
- proto: ClothingHeadHelmetRiot
entities:
- - uid: 7240
+ - uid: 4927
components:
- type: Transform
- pos: -9.364234,39.538868
+ pos: -9.348304,39.80468
parent: 5350
- - uid: 7366
+ - uid: 6311
components:
- type: Transform
- pos: -9.364234,39.830536
+ pos: -9.3454,39.672516
parent: 5350
- - uid: 7367
+ - uid: 7958
components:
- type: Transform
- pos: -9.364234,39.6847
+ pos: -9.3454,39.464184
parent: 5350
- - uid: 28482
+ - uid: 23629
components:
- type: Transform
- pos: -9.364234,39.393036
+ pos: -9.3454,39.266266
parent: 5350
- proto: ClothingHeadPyjamaSyndicatePink
entities:
@@ -67678,6 +66887,16 @@ entities:
parent: 5350
- proto: ClothingMaskBreath
entities:
+ - uid: 1524
+ components:
+ - type: Transform
+ pos: -18.64687,-14.272686
+ parent: 5350
+ - uid: 1525
+ components:
+ - type: Transform
+ pos: -18.39687,-14.132061
+ parent: 5350
- uid: 13522
components:
- type: Transform
@@ -67712,6 +66931,16 @@ entities:
parent: 5350
- proto: ClothingMaskGas
entities:
+ - uid: 1526
+ components:
+ - type: Transform
+ pos: -18.506245,-14.538311
+ parent: 5350
+ - uid: 1527
+ components:
+ - type: Transform
+ pos: -18.30312,-14.413311
+ parent: 5350
- uid: 9091
components:
- type: Transform
@@ -67760,20 +66989,25 @@ entities:
parent: 5350
- proto: ClothingMaskMuzzle
entities:
- - uid: 6311
+ - uid: 6512
components:
- type: Transform
- pos: 8.511315,28.31276
+ pos: 8.319557,28.545391
parent: 5350
- - uid: 6336
+ - uid: 6514
components:
- type: Transform
- pos: 8.417565,28.297134
+ pos: 8.329973,28.409975
parent: 5350
- - uid: 6337
+ - uid: 6527
+ components:
+ - type: Transform
+ pos: 8.319557,28.784975
+ parent: 5350
+ - uid: 6531
components:
- type: Transform
- pos: 8.40194,28.297134
+ pos: 8.319557,28.659975
parent: 5350
- proto: ClothingNeckBling
entities:
@@ -67907,42 +67141,42 @@ entities:
parent: 5350
- proto: ClothingOuterArmorBasic
entities:
- - uid: 1174
+ - uid: 7240
components:
- type: Transform
- pos: -8.268594,44.541573
+ pos: -8.269386,44.352234
parent: 5350
- - uid: 2149
+ - uid: 7366
components:
- type: Transform
- pos: -8.268594,44.624905
+ pos: -8.269386,44.477234
parent: 5350
- - uid: 4235
+ - uid: 7367
components:
- type: Transform
- pos: -8.279011,44.718655
+ pos: -8.269386,44.570984
parent: 5350
- - uid: 7380
+ - uid: 7368
components:
- type: Transform
- pos: -8.268594,44.437405
+ pos: -8.285011,44.64911
parent: 5350
- proto: ClothingOuterArmorBulletproof
entities:
- - uid: 1913
+ - uid: 2509
components:
- type: Transform
- pos: -9.325962,40.419777
+ pos: -9.31415,40.50585
parent: 5350
- - uid: 2509
+ - uid: 6336
components:
- type: Transform
- pos: -9.31901,40.5081
+ pos: -9.324568,40.422516
parent: 5350
- - uid: 6426
+ - uid: 6337
components:
- type: Transform
- pos: -9.315545,40.336445
+ pos: -9.334984,40.328766
parent: 5350
- uid: 6958
components:
@@ -67951,37 +67185,47 @@ entities:
parent: 5350
- proto: ClothingOuterArmorReflective
entities:
- - uid: 1972
+ - uid: 5097
components:
- type: Transform
- pos: -9.711378,40.37811
+ pos: -9.7204,40.2871
parent: 5350
- uid: 6778
components:
- type: Transform
pos: -9.707679,40.570305
parent: 5350
+ - uid: 7206
+ components:
+ - type: Transform
+ pos: -9.7204,40.453766
+ parent: 5350
+ - uid: 23630
+ components:
+ - type: Transform
+ pos: -9.7204,40.370434
+ parent: 5350
- proto: ClothingOuterArmorRiot
entities:
- - uid: 7383
+ - uid: 7514
components:
- type: Transform
- pos: -9.762751,39.630295
+ pos: -9.754554,39.382805
parent: 5350
- - uid: 7514
+ - uid: 7517
components:
- type: Transform
- pos: -9.762751,39.51571
+ pos: -9.723304,39.789055
parent: 5350
- - uid: 8001
+ - uid: 15347
components:
- type: Transform
- pos: -9.773169,39.71948
+ pos: -9.7204,39.672516
parent: 5350
- - uid: 28484
+ - uid: 23617
components:
- type: Transform
- pos: -9.762751,39.401127
+ pos: -9.730818,39.557934
parent: 5350
- proto: ClothingOuterCardborg
entities:
@@ -68030,7 +67274,14 @@ entities:
- uid: 8883
components:
- type: Transform
- parent: 24328
+ parent: 7801
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 15198
+ components:
+ - type: Transform
+ parent: 15195
- type: Physics
canCollide: False
- type: InsideEntityStorage
@@ -68044,14 +67295,14 @@ entities:
- uid: 22167
components:
- type: Transform
- parent: 13159
+ parent: 1488
- type: Physics
canCollide: False
- type: InsideEntityStorage
- uid: 22168
components:
- type: Transform
- parent: 24610
+ parent: 1488
- type: Physics
canCollide: False
- type: InsideEntityStorage
@@ -68062,6 +67313,20 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
+ - uid: 23099
+ components:
+ - type: Transform
+ parent: 1489
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 23284
+ components:
+ - type: Transform
+ parent: 4104
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- uid: 23406
components:
- type: Transform
@@ -68076,6 +67341,13 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
+ - uid: 23964
+ components:
+ - type: Transform
+ parent: 7165
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- uid: 24058
components:
- type: Transform
@@ -68083,6 +67355,13 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
+ - uid: 24244
+ components:
+ - type: Transform
+ parent: 2617
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- uid: 24321
components:
- type: Transform
@@ -68090,6 +67369,41 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
+ - uid: 24328
+ components:
+ - type: Transform
+ parent: 11032
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingOuterHardsuitSecurity
+ entities:
+ - uid: 14074
+ components:
+ - type: Transform
+ parent: 5663
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 14095
+ components:
+ - type: Transform
+ parent: 5776
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 14107
+ components:
+ - type: Transform
+ parent: 10975
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 14110
+ components:
+ - type: Transform
+ pos: -5.5,46.5
+ parent: 5350
- proto: ClothingOuterHoodieBlack
entities:
- uid: 24527
@@ -69293,6 +68607,12 @@ entities:
- type: Transform
pos: 55.5,16.5
parent: 5350
+ - uid: 5091
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,13.5
+ parent: 5350
- uid: 6428
components:
- type: Transform
@@ -69605,49 +68925,38 @@ entities:
parent: 5350
- proto: ContainmentFieldGenerator
entities:
- - uid: 9070
- components:
- - type: Transform
- pos: 74.5,16.5
- parent: 5350
- - uid: 23603
- components:
- - type: Transform
- pos: 74.5,24.5
- parent: 5350
- - uid: 23604
+ - uid: 8001
components:
- type: Transform
- pos: 66.5,24.5
+ anchored: False
+ pos: 61.5,26.5
parent: 5350
- - uid: 23605
+ - type: Physics
+ bodyType: Dynamic
+ - uid: 15118
components:
- type: Transform
- pos: 66.5,16.5
+ anchored: False
+ pos: 61.5,25.5
parent: 5350
-- proto: ContainmentFieldGeneratorFlatpack
- entities:
- - uid: 19882
- components:
- - type: Transform
- parent: 19881
- type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 19890
+ bodyType: Dynamic
+ - uid: 22966
components:
- type: Transform
- parent: 19881
+ anchored: False
+ pos: 61.5,27.5
+ parent: 5350
- type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 19897
+ bodyType: Dynamic
+ - uid: 23614
components:
- type: Transform
- parent: 19881
+ anchored: False
+ pos: 61.5,24.5
+ parent: 5350
- type: Physics
- canCollide: False
- - type: InsideEntityStorage
+ bodyType: Dynamic
- proto: ConveyorBelt
entities:
- uid: 849
@@ -70158,11 +69467,8 @@ entities:
- uid: 1706
components:
- type: Transform
- anchored: True
pos: -1.5,38.5
parent: 5350
- - type: Physics
- bodyType: Static
- proto: CrateEmptySpawner
entities:
- uid: 3564
@@ -70207,13 +69513,12 @@ entities:
parent: 5350
- proto: CrateEngineering
entities:
- - uid: 28639
+ - uid: 24070
components:
- type: MetaData
- desc: Contains a shuttle console circuit board.
- name: shuttle control crate
+ name: Shuttle Construction Crate
- type: Transform
- pos: 46.5,25.5
+ pos: -37.5,22.5
parent: 5350
- type: EntityStorage
air:
@@ -70239,33 +69544,31 @@ entities:
showEnts: False
occludes: True
ents:
- - 28640
+ - 28201
+ - 27680
+ - 27208
+ - 26688
+ - 24489
+ - 24478
paper_label: !type:ContainerSlot
showEnts: False
occludes: True
ent: null
-- proto: CrateEngineeringAMEJar
- entities:
- - uid: 1524
- components:
- - type: Transform
- pos: 76.5,3.5
- parent: 5350
- proto: CrateEngineeringAMEShielding
entities:
- - uid: 17029
+ - uid: 21813
components:
- type: Transform
- pos: 76.5,4.5
+ pos: 72.5,8.5
parent: 5350
- type: EntityStorage
air:
volume: 200
immutable: False
- temperature: 293.1462
+ temperature: 293.14673
moles:
- - 1.606311
- - 6.042789
+ - 1.7459903
+ - 6.568249
- 0
- 0
- 0
@@ -70284,15 +69587,15 @@ entities:
ents:
- 14093
- 15326
- - 23358
- - 23359
- 16554
- 23357
- - 23507
- - 23508
+ - 23358
+ - 23359
- 23504
- 23505
- 23506
+ - 23507
+ - 23508
paper_label: !type:ContainerSlot
showEnts: False
occludes: True
@@ -70322,11 +69625,6 @@ entities:
- 0
- 0
- 0
- - uid: 12480
- components:
- - type: Transform
- pos: 53.5,21.5
- parent: 5350
- uid: 19021
components:
- type: Transform
@@ -70355,13 +69653,13 @@ entities:
- type: Transform
pos: 42.5,-0.5
parent: 5350
- - uid: 28476
+- proto: CrateEngineeringCableHV
+ entities:
+ - uid: 16293
components:
- type: Transform
- pos: 45.5,26.5
+ pos: 52.5,11.5
parent: 5350
-- proto: CrateEngineeringCableHV
- entities:
- uid: 17216
components:
- type: Transform
@@ -70408,6 +69706,13 @@ entities:
- 0
- 0
- 0
+- proto: CrateEngineeringCableLV
+ entities:
+ - uid: 16292
+ components:
+ - type: Transform
+ pos: 54.5,11.5
+ parent: 5350
- proto: CrateEngineeringCableMV
entities:
- uid: 6200
@@ -70433,90 +69738,25 @@ entities:
- 0
- 0
- 0
-- proto: CrateEngineeringGyroscope
- entities:
- - uid: 28530
+ - uid: 16294
components:
- type: Transform
- pos: 47.5,25.5
+ pos: 53.5,11.5
parent: 5350
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14673
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- proto: CrateEngineeringSecure
entities:
- - uid: 26688
+ - uid: 23089
components:
- type: MetaData
- desc: Contains 30 sheets of uranium and plasma for powering portable generators.
- name: Portable Generator Fuel Crate
+ name: generator fuel crate
- type: Transform
- pos: 42.5,23.5
- parent: 5350
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1462
- moles:
- - 1.606311
- - 6.042789
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 26784
- - 26783
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
-- proto: CrateEngineeringShuttle
- entities:
- - uid: 17030
- components:
- - type: Transform
- pos: 46.5,26.5
- parent: 5350
-- proto: CrateEngineeringSingularityContainment
- entities:
- - uid: 19881
- components:
- - type: Transform
- pos: 46.5,21.5
+ pos: 44.5,26.5
parent: 5350
- type: EntityStorage
air:
volume: 200
immutable: False
- temperature: 293.1465
+ temperature: 293.14673
moles:
- 1.7459903
- 6.568249
@@ -70536,89 +69776,26 @@ entities:
showEnts: False
occludes: True
ents:
- - 19882
- - 19890
- - 19897
+ - 9204
+ - 23889
paper_label: !type:ContainerSlot
showEnts: False
occludes: True
ent: null
-- proto: CrateEngineeringSingularityEmitter
+- proto: CrateEngineeringSingularityContainment
entities:
- - uid: 19864
+ - uid: 7539
components:
- type: Transform
- pos: 47.5,21.5
+ pos: 42.5,26.5
parent: 5350
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1465
- 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:
- - 19865
- - 19866
- - 19880
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
-- proto: CrateEngineeringThruster
+- proto: CrateEngineeringSingularityEmitter
entities:
- - uid: 17031
+ - uid: 7540
components:
- type: Transform
- pos: 47.5,26.5
+ pos: 43.5,26.5
parent: 5350
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1465
- 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:
- - 17038
- - 17033
- - 17032
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- proto: CrateFilledSpawner
entities:
- uid: 3641
@@ -70701,17 +69878,6 @@ entities:
- 0
- 0
- 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 17039
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- proto: CrateFunArtSupplies
entities:
- uid: 27889
@@ -70802,44 +69968,6 @@ entities:
- type: Transform
pos: -24.5,15.5
parent: 5350
- - uid: 28450
- components:
- - type: Transform
- pos: -53.5,33.5
- parent: 5350
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 75.31249
- moles:
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 28451
- - 28452
- - 28453
- - 28454
- - 28455
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- proto: CrateMaterialSteel
entities:
- uid: 28057
@@ -70883,11 +70011,8 @@ entities:
- uid: 28265
components:
- type: Transform
- anchored: True
pos: -6.5,44.5
parent: 5350
- - type: Physics
- bodyType: Static
- proto: CrateServiceBox
entities:
- uid: 22020
@@ -70987,6 +70112,13 @@ entities:
- type: Transform
pos: 17.541042,-24.457052
parent: 5350
+ - uid: 6700
+ components:
+ - type: Transform
+ parent: 6696
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- uid: 10811
components:
- type: Transform
@@ -71033,6 +70165,11 @@ entities:
parent: 5350
- proto: CrowbarRed
entities:
+ - uid: 1535
+ components:
+ - type: Transform
+ pos: -16.465528,-13.795485
+ parent: 5350
- uid: 3586
components:
- type: Transform
@@ -71151,13 +70288,6 @@ entities:
- type: Transform
pos: 41.470444,-8.386417
parent: 5350
-- proto: DefaultStationBeacon
- entities:
- - uid: 23614
- components:
- - type: Transform
- pos: 2.5,-57.5
- parent: 5350
- proto: DefaultStationBeaconAICore
entities:
- uid: 22160
@@ -71209,18 +70339,13 @@ entities:
parent: 5350
- proto: DefaultStationBeaconAtmospherics
entities:
- - uid: 19923
+ - uid: 16730
components:
- type: Transform
- pos: 56.5,-19.5
+ pos: 58.5,-16.5
parent: 5350
- proto: DefaultStationBeaconBar
entities:
- - uid: 17059
- components:
- - type: Transform
- pos: 25.5,-2.5
- parent: 5350
- uid: 26668
components:
- type: Transform
@@ -71233,18 +70358,6 @@ entities:
- type: Transform
pos: 26.5,-21.5
parent: 5350
-- proto: DefaultStationBeaconBridge
- entities:
- - uid: 17027
- components:
- - type: Transform
- pos: -2.5,-15.5
- parent: 5350
- - uid: 17041
- components:
- - type: Transform
- pos: -2.5,1.5
- parent: 5350
- proto: DefaultStationBeaconBrig
entities:
- uid: 7623
@@ -71308,11 +70421,6 @@ entities:
- type: Transform
pos: 4.5,19.5
parent: 5350
- - uid: 28644
- components:
- - type: Transform
- pos: 4.5,15.5
- parent: 5350
- proto: DefaultStationBeaconCryonics
entities:
- uid: 26680
@@ -71341,25 +70449,26 @@ entities:
- type: Transform
pos: -34.5,32.5
parent: 5350
-- proto: DefaultStationBeaconDorms
+- proto: DefaultStationBeaconEscapePod
entities:
- - uid: 28645
- components:
- - type: Transform
- pos: 22.5,16.5
- parent: 5350
- - uid: 28646
+ - uid: 872
components:
- type: Transform
- pos: 32.5,41.5
+ pos: 39.5,47.5
parent: 5350
- - uid: 28648
+ - type: NavMapBeacon
+ text: NW Pod
+ - type: WarpPoint
+ location: NW Pod
+ - uid: 3634
components:
- type: Transform
- pos: 31.5,50.5
+ pos: -39.5,-46.5
parent: 5350
-- proto: DefaultStationBeaconEscapePod
- entities:
+ - type: NavMapBeacon
+ text: SW Pod
+ - type: WarpPoint
+ location: SW Pod
- uid: 3927
components:
- type: Transform
@@ -71378,30 +70487,12 @@ entities:
text: NW Pod
- type: WarpPoint
location: NW Pod
- - uid: 23768
- components:
- - type: Transform
- pos: 40.5,47.5
- parent: 5350
- - type: NavMapBeacon
- text: NW Pod
- - type: WarpPoint
- location: NW Pod
- - uid: 28501
- components:
- - type: Transform
- pos: -42.5,-46.5
- parent: 5350
- - type: NavMapBeacon
- text: SW Pod
- - type: WarpPoint
- location: SW Pod
- proto: DefaultStationBeaconEvac
entities:
- - uid: 28637
+ - uid: 3602
components:
- type: Transform
- pos: -6.5,-63.5
+ pos: -6.5,-71.5
parent: 5350
- proto: DefaultStationBeaconEVAStorage
entities:
@@ -71419,10 +70510,10 @@ entities:
parent: 5350
- proto: DefaultStationBeaconHOSRoom
entities:
- - uid: 28649
+ - uid: 1517
components:
- type: Transform
- pos: 9.5,46.5
+ pos: 10.5,45.5
parent: 5350
- proto: DefaultStationBeaconJanitorsCloset
entities:
@@ -71433,11 +70524,6 @@ entities:
parent: 5350
- proto: DefaultStationBeaconKitchen
entities:
- - uid: 17040
- components:
- - type: Transform
- pos: 30.5,-10.5
- parent: 5350
- uid: 26690
components:
- type: Transform
@@ -71459,11 +70545,6 @@ entities:
parent: 5350
- proto: DefaultStationBeaconMedbay
entities:
- - uid: 19902
- components:
- - type: Transform
- pos: -27.5,-33.5
- parent: 5350
- uid: 26693
components:
- type: Transform
@@ -71471,10 +70552,10 @@ entities:
parent: 5350
- proto: DefaultStationBeaconMorgue
entities:
- - uid: 19852
+ - uid: 14728
components:
- type: Transform
- pos: -13.5,-49.5
+ pos: -11.5,-49.5
parent: 5350
- proto: DefaultStationBeaconPermaBrig
entities:
@@ -71506,26 +70587,15 @@ entities:
parent: 5350
- proto: DefaultStationBeaconSalvage
entities:
- - uid: 17060
- components:
- - type: Transform
- pos: -62.5,31.5
- parent: 5350
- - type: NavMapBeacon
- text: Salvage Arm
- - type: WarpPoint
- location: Salvage Arm
-- proto: DefaultStationBeaconSecurity
- entities:
- - uid: 17052
+ - uid: 18015
components:
- type: Transform
- pos: -19.5,45.5
+ pos: -41.5,29.5
parent: 5350
- - uid: 28647
+ - uid: 21443
components:
- type: Transform
- pos: 10.5,38.5
+ pos: -61.5,31.5
parent: 5350
- proto: DefaultStationBeaconServerRoom
entities:
@@ -71536,19 +70606,19 @@ entities:
parent: 5350
- proto: DefaultStationBeaconSingularity
entities:
- - uid: 17062
+ - uid: 15132
components:
- type: Transform
- pos: 70.5,16.5
+ pos: 70.5,15.5
parent: 5350
- type: NavMapBeacon
text: Containment
- type: WarpPoint
location: Containment
- - uid: 17063
+ - uid: 16263
components:
- type: Transform
- pos: 70.5,24.5
+ pos: 70.5,25.5
parent: 5350
- type: NavMapBeacon
text: Engine
@@ -71703,6 +70773,11 @@ entities:
- type: Transform
pos: 30.787802,-6.3043485
parent: 5350
+ - uid: 2064
+ components:
+ - type: Transform
+ pos: 25.549889,-6.2730985
+ parent: 5350
- uid: 4512
components:
- type: Transform
@@ -71731,11 +70806,6 @@ entities:
- type: Transform
pos: 3.7344131,-27.320778
parent: 5350
- - uid: 16675
- components:
- - type: Transform
- pos: 25.517385,-6.2883754
- parent: 5350
- uid: 23329
components:
- type: Transform
@@ -80597,27 +79667,6 @@ entities:
ents:
- 6607
- 12703
-- proto: DrinkBeerglass
- entities:
- - uid: 28509
- components:
- - type: Transform
- pos: -48.161606,-43.286133
- parent: 5350
-- proto: DrinkBeerGrowler
- entities:
- - uid: 28507
- components:
- - type: Transform
- pos: -47.17723,-43.004883
- parent: 5350
-- proto: DrinkBottleBeer
- entities:
- - uid: 28506
- components:
- - type: Transform
- pos: -48.83348,-43.176758
- parent: 5350
- proto: DrinkBottleOfNothingFull
entities:
- uid: 3219
@@ -80671,13 +79720,6 @@ entities:
- type: Transform
pos: 6.384159,-12.168303
parent: 5350
-- proto: DrinkIcedBeerGlass
- entities:
- - uid: 28512
- components:
- - type: Transform
- pos: -49.58348,-43.176758
- parent: 5350
- proto: DrinkLithiumFlask
entities:
- uid: 5013
@@ -80730,23 +79772,6 @@ entities:
- type: Transform
pos: -55.712997,-23.300583
parent: 5350
-- proto: DrinkShotGlass
- entities:
- - uid: 28383
- components:
- - type: Transform
- pos: 54.770973,13.619127
- parent: 5350
- - uid: 28385
- components:
- - type: Transform
- pos: 55.0366,13.541002
- parent: 5350
- - uid: 28386
- components:
- - type: Transform
- pos: 54.989723,13.900377
- parent: 5350
- proto: DrinkVacuumFlask
entities:
- uid: 1994
@@ -80788,23 +79813,6 @@ entities:
- type: Transform
pos: 22.160711,-59.489254
parent: 5350
- - uid: 28380
- components:
- - type: Transform
- pos: 55.458244,13.837877
- parent: 5350
- - uid: 28504
- components:
- - type: Transform
- pos: -45.349106,-43.301758
- parent: 5350
-- proto: DrinkWhiskeyGlass
- entities:
- - uid: 28505
- components:
- - type: Transform
- pos: -46.05223,-43.317383
- parent: 5350
- proto: DrinkWineBottleFull
entities:
- uid: 21260
@@ -81320,86 +80328,48 @@ entities:
parent: 5350
- proto: Emitter
entities:
- - uid: 15052
+ - uid: 6426
components:
- type: Transform
anchored: False
- rot: 1.5707963267948966 rad
- pos: 61.5,27.5
+ pos: 64.5,29.5
parent: 5350
- type: Physics
bodyType: Dynamic
- type: PowerConsumer
drawRate: 1
- - uid: 23376
+ - uid: 8244
components:
- type: Transform
anchored: False
- rot: 1.5707963267948966 rad
- pos: 61.5,26.5
+ pos: 65.5,29.5
parent: 5350
- type: Physics
bodyType: Dynamic
- type: PowerConsumer
drawRate: 1
- - uid: 23610
- components:
- - type: Transform
- pos: 74.5,28.5
- parent: 5350
- - type: PowerConsumer
- drawRate: 1
- - uid: 23973
+ - uid: 14443
components:
- type: Transform
anchored: False
- rot: 1.5707963267948966 rad
- pos: 61.5,13.5
+ rot: 3.141592653589793 rad
+ pos: 64.5,11.5
parent: 5350
- type: Physics
bodyType: Dynamic
- type: PowerConsumer
drawRate: 1
- - uid: 24048
+ - uid: 15483
components:
- type: Transform
anchored: False
- rot: 1.5707963267948966 rad
- pos: 61.5,14.5
+ rot: 3.141592653589793 rad
+ pos: 65.5,11.5
parent: 5350
- type: Physics
bodyType: Dynamic
- type: PowerConsumer
drawRate: 1
- - uid: 24049
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 61.5,13.5
- parent: 5350
-- proto: EmitterFlatpack
- entities:
- - uid: 19865
- components:
- - type: Transform
- parent: 19864
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 19866
- components:
- - type: Transform
- parent: 19864
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 19880
- components:
- - type: Transform
- parent: 19864
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- proto: EncryptionKeyCargo
entities:
- uid: 26443
@@ -81491,38 +80461,8 @@ entities:
parent: 5350
- proto: ExplosivesSignMed
entities:
- - uid: 4927
- components:
- - type: MetaData
- name: WARNING! Live minefield!
- - type: Transform
- pos: -25.5,49.5
- parent: 5350
- - uid: 18684
- components:
- - type: MetaData
- desc: WARNING! Live Minefield!
- - type: Transform
- pos: 13.5,48.5
- parent: 5350
- - uid: 18687
- components:
- - type: MetaData
- desc: WARNING! Live minefield!
- - type: Transform
- pos: -12.5,63.5
- parent: 5350
- - uid: 26311
- components:
- - type: MetaData
- desc: WARNING! Live minefield!
- - type: Transform
- pos: 2.5,63.5
- parent: 5350
- uid: 28281
components:
- - type: MetaData
- desc: WARNING! Anomaly Vessels may explode!
- type: Transform
pos: 20.5,-32.5
parent: 5350
@@ -81698,7 +80638,7 @@ entities:
pos: -41.5,2.5
parent: 5350
- type: FaxMachine
- name: Mailroom
+ name: Mail Room
- uid: 5360
components:
- type: Transform
@@ -81727,13 +80667,6 @@ entities:
parent: 5350
- type: FaxMachine
name: Law Office
- - uid: 7539
- components:
- - type: Transform
- pos: -18.5,-5.5
- parent: 5350
- - type: FaxMachine
- name: Main Corridor
- uid: 7750
components:
- type: Transform
@@ -81821,13 +80754,6 @@ entities:
- type: Transform
pos: 10.5,-45.5
parent: 5350
- - uid: 28510
- components:
- - type: Transform
- pos: -41.5,11.5
- parent: 5350
- - type: FaxMachine
- name: Cargo Bay
- proto: FaxMachineCaptain
entities:
- uid: 5362
@@ -82205,6 +81131,7 @@ entities:
- type: DeviceList
devices:
- 6946
+ - 28218
- 6806
- 7773
- 7791
@@ -82920,6 +81847,16 @@ entities:
parent: 5350
- proto: FireExtinguisher
entities:
+ - uid: 1539
+ components:
+ - type: Transform
+ pos: -16.66095,-13.180607
+ parent: 5350
+ - uid: 1540
+ components:
+ - type: Transform
+ pos: -16.395325,-13.102482
+ parent: 5350
- uid: 24319
components:
- type: Transform
@@ -83189,6 +82126,7 @@ entities:
deviceLists:
- 24342
- 24340
+ - 27662
- 11076
- uid: 2126
components:
@@ -83199,6 +82137,7 @@ entities:
deviceLists:
- 24342
- 24340
+ - 27662
- 11076
- uid: 2127
components:
@@ -83209,6 +82148,7 @@ entities:
deviceLists:
- 24342
- 24340
+ - 27662
- 11076
- uid: 2352
components:
@@ -83721,6 +82661,7 @@ entities:
deviceLists:
- 24342
- 24340
+ - 27662
- 1327
- 25987
- uid: 5666
@@ -83732,6 +82673,7 @@ entities:
deviceLists:
- 24342
- 24340
+ - 27662
- 1327
- 25987
- uid: 5667
@@ -83743,6 +82685,7 @@ entities:
deviceLists:
- 24342
- 24340
+ - 27662
- 1327
- 25987
- uid: 5668
@@ -84091,7 +83034,7 @@ entities:
pos: 31.5,-33.5
parent: 5350
- type: Door
- secondsUntilStateChange: -29555.99
+ secondsUntilStateChange: -10323.154
state: Closing
- uid: 9615
components:
@@ -84715,6 +83658,7 @@ entities:
- 24342
- 24340
- 7196
+ - 27662
- 2835
- uid: 15079
components:
@@ -84736,6 +83680,7 @@ entities:
- 24342
- 24340
- 7196
+ - 27662
- 2835
- uid: 15185
components:
@@ -85191,6 +84136,7 @@ entities:
- 24342
- 24340
- 7196
+ - 27662
- 2835
- uid: 21954
components:
@@ -85659,33 +84605,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 28012
- - uid: 28425
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 45.5,15.5
- parent: 5350
- - type: DeviceNetwork
- deviceLists:
- - 28423
- - uid: 28426
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 45.5,16.5
- parent: 5350
- - type: DeviceNetwork
- deviceLists:
- - 28423
- - uid: 28427
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 45.5,17.5
- parent: 5350
- - type: DeviceNetwork
- deviceLists:
- - 28423
- proto: Fireplace
entities:
- uid: 1054
@@ -85866,11 +84785,6 @@ entities:
- type: Transform
pos: -3.177019,-5.478725
parent: 5350
- - uid: 28400
- components:
- - type: Transform
- pos: 54.841988,14.416767
- parent: 5350
- proto: FloorCarpetItemRed
entities:
- uid: 22909
@@ -85911,6 +84825,13 @@ entities:
parent: 5350
- type: Fixtures
fixtures: {}
+ - uid: 6338
+ components:
+ - type: Transform
+ pos: -16.5,-48.5
+ parent: 5350
+ - type: Fixtures
+ fixtures: {}
- uid: 7176
components:
- type: Transform
@@ -85956,13 +84877,6 @@ entities:
parent: 5350
- type: Fixtures
fixtures: {}
- - uid: 28462
- components:
- - type: Transform
- pos: -16.5,-47.5
- parent: 5350
- - type: Fixtures
- fixtures: {}
- proto: FloorTileItemEighties
entities:
- uid: 23023
@@ -86306,7 +85220,7 @@ entities:
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 73.622635,-30.467262
+ pos: 73.5,-30.5
parent: 5350
- uid: 28172
components:
@@ -86374,7 +85288,7 @@ entities:
- uid: 19219
components:
- type: MetaData
- name: Gas Filter (waste filter)
+ name: Waste Filter
- type: Transform
rot: 1.5707963267948966 rad
pos: 14.5,-51.5
@@ -86394,7 +85308,7 @@ entities:
- uid: 19455
components:
- type: MetaData
- name: Gas Filter (waste filter)
+ name: Waste Filter
- type: Transform
rot: 1.5707963267948966 rad
pos: 18.5,-51.5
@@ -86511,6 +85425,24 @@ entities:
rot: 3.141592653589793 rad
pos: 47.5,-30.5
parent: 5350
+- proto: GasPassiveGate
+ entities:
+ - uid: 15115
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,-50.5
+ parent: 5350
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15592
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 13.5,-50.5
+ parent: 5350
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- proto: GasPassiveVent
entities:
- uid: 10829
@@ -86633,12 +85565,6 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#6F2498FF'
- - uid: 21407
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -40.5,41.5
- parent: 5350
- uid: 25932
components:
- type: Transform
@@ -87152,21 +86078,14 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 9132
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 46.5,18.5
- parent: 5350
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 9137
+ - uid: 9178
components:
- type: Transform
- pos: 46.5,19.5
+ rot: 1.5707963267948966 rad
+ pos: 46.5,13.5
parent: 5350
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
- uid: 9179
components:
- type: Transform
@@ -87669,14 +86588,6 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 16275
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 51.5,18.5
- parent: 5350
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 16374
components:
- type: Transform
@@ -87862,14 +86773,6 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 18856
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 45.5,22.5
- parent: 5350
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 18968
components:
- type: Transform
@@ -87941,14 +86844,6 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#6F2498FF'
- - uid: 19278
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 45.5,24.5
- parent: 5350
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 19411
components:
- type: Transform
@@ -88248,48 +87143,49 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23312
+ - uid: 23387
components:
- type: Transform
- pos: 52.5,18.5
+ rot: -1.5707963267948966 rad
+ pos: 52.5,14.5
parent: 5350
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23509
+ - uid: 23388
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 75.5,7.5
+ pos: 52.5,16.5
parent: 5350
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23525
+ - uid: 23389
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 55.5,8.5
+ pos: 51.5,16.5
parent: 5350
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23566
+ color: '#990000FF'
+ - uid: 23509
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 49.5,27.5
+ rot: -1.5707963267948966 rad
+ pos: 75.5,7.5
parent: 5350
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24856
+ color: '#990000FF'
+ - uid: 23525
components:
- type: Transform
- pos: -1.5,-71.5
+ rot: 3.141592653589793 rad
+ pos: 55.5,8.5
parent: 5350
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24921
+ - uid: 24856
components:
- type: Transform
- pos: 50.5,27.5
+ pos: -1.5,-71.5
parent: 5350
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -92189,14 +91085,6 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 2566
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 50.5,22.5
- parent: 5350
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 2593
components:
- type: Transform
@@ -92750,14 +91638,6 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 3116
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 49.5,22.5
- parent: 5350
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 3137
components:
- type: Transform
@@ -94978,14 +93858,6 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 4895
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 48.5,22.5
- parent: 5350
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 4962
components:
- type: Transform
@@ -95217,14 +94089,6 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#3AB334FF'
- - uid: 5091
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 46.5,22.5
- parent: 5350
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 5370
components:
- type: Transform
@@ -98465,22 +97329,6 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 9133
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 49.5,18.5
- parent: 5350
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 9136
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 48.5,18.5
- parent: 5350
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 9166
components:
- type: Transform
@@ -98569,14 +97417,6 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 9191
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 49.5,24.5
- parent: 5350
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 9217
components:
- type: Transform
@@ -99794,6 +98634,14 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 11160
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 48.5,14.5
+ parent: 5350
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 11161
components:
- type: Transform
@@ -99985,7 +98833,8 @@ entities:
- uid: 11362
components:
- type: Transform
- pos: 51.5,25.5
+ rot: 1.5707963267948966 rad
+ pos: 52.5,13.5
parent: 5350
- type: AtmosPipeColor
color: '#990000FF'
@@ -100941,6 +99790,14 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 12405
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 50.5,18.5
+ parent: 5350
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 12406
components:
- type: Transform
@@ -100973,6 +99830,14 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 12411
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 50.5,24.5
+ parent: 5350
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 12413
components:
- type: Transform
@@ -101013,22 +99878,22 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 12419
+ - uid: 12418
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 54.5,29.5
+ pos: 54.5,28.5
parent: 5350
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 12445
+ - uid: 12419
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 44.5,13.5
+ rot: 3.141592653589793 rad
+ pos: 54.5,29.5
parent: 5350
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- uid: 12452
components:
- type: Transform
@@ -104079,13 +102944,6 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 16265
- components:
- - type: Transform
- pos: 52.5,16.5
- parent: 5350
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 16279
components:
- type: Transform
@@ -105885,54 +104743,6 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 18720
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 48.5,24.5
- parent: 5350
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 18721
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 46.5,24.5
- parent: 5350
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 18722
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 47.5,24.5
- parent: 5350
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 18857
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 50.5,23.5
- parent: 5350
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 18858
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,-50.5
- parent: 5350
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 18859
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 19.5,-50.5
- parent: 5350
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 18939
components:
- type: Transform
@@ -110082,31 +108892,55 @@ entities:
- uid: 23374
components:
- type: Transform
- pos: 52.5,14.5
+ pos: 50.5,27.5
parent: 5350
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23386
+ color: '#0055CCFF'
+ - uid: 23376
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 49.5,14.5
+ rot: -1.5707963267948966 rad
+ pos: 48.5,23.5
parent: 5350
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23387
+ - uid: 23377
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 51.5,13.5
+ rot: -1.5707963267948966 rad
+ pos: 47.5,23.5
parent: 5350
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
+ - uid: 23378
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,23.5
+ parent: 5350
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 23390
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 51.5,21.5
+ pos: 52.5,15.5
+ parent: 5350
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23391
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,17.5
+ parent: 5350
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23392
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,18.5
parent: 5350
- type: AtmosPipeColor
color: '#990000FF'
@@ -110126,18 +108960,19 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23397
+ - uid: 23396
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 51.5,23.5
+ pos: 51.5,22.5
parent: 5350
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23408
+ - uid: 23397
components:
- type: Transform
- pos: 52.5,17.5
+ rot: 3.141592653589793 rad
+ pos: 51.5,23.5
parent: 5350
- type: AtmosPipeColor
color: '#990000FF'
@@ -110402,11 +109237,43 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23544
+ - uid: 23568
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 45.5,13.5
+ pos: 50.5,21.5
+ parent: 5350
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23569
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 49.5,21.5
+ parent: 5350
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23570
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 48.5,21.5
+ parent: 5350
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23571
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 47.5,21.5
+ parent: 5350
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23572
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,21.5
parent: 5350
- type: AtmosPipeColor
color: '#990000FF'
@@ -112094,28 +110961,6 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#947507FF'
- - uid: 27995
- components:
- - type: Transform
- pos: 51.5,27.5
- parent: 5350
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27996
- components:
- - type: Transform
- pos: 51.5,26.5
- parent: 5350
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28004
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 47.5,22.5
- parent: 5350
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 28060
components:
- type: Transform
@@ -112417,30 +111262,6 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28420
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 47.5,18.5
- parent: 5350
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28421
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 45.5,19.5
- parent: 5350
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28422
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 44.5,19.5
- parent: 5350
- - type: AtmosPipeColor
- color: '#0055CCFF'
- proto: GasPipeTJunction
entities:
- uid: 179
@@ -114198,6 +113019,14 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 11158
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,14.5
+ parent: 5350
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 11159
components:
- type: Transform
@@ -114206,6 +113035,14 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 11361
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,13.5
+ parent: 5350
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 11494
components:
- type: Transform
@@ -114327,6 +113164,14 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 12410
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,23.5
+ parent: 5350
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 12412
components:
- type: Transform
@@ -114389,13 +113234,6 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 13103
- components:
- - type: Transform
- pos: 46.5,13.5
- parent: 5350
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 13243
components:
- type: Transform
@@ -114697,22 +113535,6 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 16293
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 48.5,14.5
- parent: 5350
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 16294
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 52.5,13.5
- parent: 5350
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 16368
components:
- type: Transform
@@ -114767,14 +113589,6 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 17287
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 50.5,18.5
- parent: 5350
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 17341
components:
- type: Transform
@@ -114931,14 +113745,6 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 18719
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 50.5,24.5
- parent: 5350
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 18967
components:
- type: Transform
@@ -115461,19 +114267,27 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23372
+ - uid: 23375
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,23.5
+ parent: 5350
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23386
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 52.5,15.5
+ pos: 51.5,14.5
parent: 5350
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23375
+ - uid: 23395
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 51.5,22.5
+ pos: 51.5,21.5
parent: 5350
- type: AtmosPipeColor
color: '#990000FF'
@@ -115485,14 +114299,6 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23539
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 51.5,24.5
- parent: 5350
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 23817
components:
- type: Transform
@@ -115658,14 +114464,6 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28374
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 54.5,28.5
- parent: 5350
- - type: AtmosPipeColor
- color: '#0055CCFF'
- proto: GasPort
entities:
- uid: 228
@@ -115817,8 +114615,6 @@ entities:
color: '#990000FF'
- uid: 19401
components:
- - type: MetaData
- name: Connector Port (gas input)
- type: Transform
rot: 3.141592653589793 rad
pos: 19.5,-53.5
@@ -115827,8 +114623,6 @@ entities:
color: '#6F2498FF'
- uid: 19418
components:
- - type: MetaData
- name: Connector Port (gas output)
- type: Transform
rot: 3.141592653589793 rad
pos: 18.5,-53.5
@@ -115837,8 +114631,6 @@ entities:
color: '#6F2498FF'
- uid: 19566
components:
- - type: MetaData
- name: Connector Port (gas input)
- type: Transform
rot: 3.141592653589793 rad
pos: 13.5,-53.5
@@ -115847,20 +114639,12 @@ entities:
color: '#6F2498FF'
- uid: 19622
components:
- - type: MetaData
- name: Connector Port (gas output)
- type: Transform
rot: 3.141592653589793 rad
pos: 14.5,-53.5
parent: 5350
- type: AtmosPipeColor
color: '#6F2498FF'
- - uid: 21248
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -41.5,41.5
- parent: 5350
- uid: 25893
components:
- type: Transform
@@ -115959,7 +114743,7 @@ entities:
- uid: 19188
components:
- type: MetaData
- name: Gas Pump (gas in)
+ name: Gas Input
- type: Transform
rot: -1.5707963267948966 rad
pos: 12.5,-52.5
@@ -115971,26 +114755,6 @@ entities:
- type: Transform
pos: 71.5,-38.5
parent: 5350
- - uid: 19218
- components:
- - type: MetaData
- name: Gas Pump (distro in)
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 20.5,-50.5
- parent: 5350
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 19263
- components:
- - type: MetaData
- name: Gas Pump (distro in)
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,-50.5
- parent: 5350
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 19360
components:
- type: MetaData
@@ -116004,7 +114768,7 @@ entities:
- uid: 19482
components:
- type: MetaData
- name: Gas Pump (gas in)
+ name: Gas In Pump
- type: Transform
rot: 1.5707963267948966 rad
pos: 20.5,-52.5
@@ -116102,19 +114866,13 @@ entities:
- uid: 11364
components:
- type: Transform
- anchored: False
pos: 54.5,-18.5
parent: 5350
- - type: Physics
- bodyType: Dynamic
- uid: 11365
components:
- type: Transform
- anchored: False
pos: 55.5,-18.5
parent: 5350
- - type: Physics
- bodyType: Dynamic
- uid: 11803
components:
- type: Transform
@@ -116140,11 +114898,8 @@ entities:
- uid: 22353
components:
- type: Transform
- anchored: False
pos: 56.5,-18.5
parent: 5350
- - type: Physics
- bodyType: Dynamic
- uid: 26312
components:
- type: Transform
@@ -116166,32 +114921,47 @@ entities:
- uid: 28273
components:
- type: Transform
- anchored: False
rot: 1.5707963267948966 rad
pos: 58.5,-4.5
parent: 5350
- - type: Physics
- bodyType: Dynamic
- uid: 28274
components:
- type: Transform
- anchored: False
rot: 1.5707963267948966 rad
pos: 58.5,-5.5
parent: 5350
- - type: Physics
- bodyType: Dynamic
- uid: 28276
components:
- type: Transform
- anchored: False
rot: 1.5707963267948966 rad
pos: 58.5,-6.5
parent: 5350
- - type: Physics
- bodyType: Dynamic
- proto: GasValve
entities:
+ - uid: 19278
+ components:
+ - type: MetaData
+ name: Distro Release
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,-50.5
+ parent: 5350
+ - type: GasValve
+ open: False
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19405
+ components:
+ - type: MetaData
+ name: Distro Release
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.5,-50.5
+ parent: 5350
+ - type: GasValve
+ open: False
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 27085
components:
- type: Transform
@@ -116869,16 +115639,6 @@ entities:
- 24361
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 11361
- components:
- - type: Transform
- pos: 49.5,28.5
- parent: 5350
- - type: DeviceNetwork
- deviceLists:
- - 9130
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 11929
components:
- type: Transform
@@ -117811,7 +116571,7 @@ entities:
parent: 5350
- type: DeviceNetwork
deviceLists:
- - 872
+ - 1913
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 21167
@@ -117922,17 +116682,6 @@ entities:
- 22178
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 22149
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 55.5,28.5
- parent: 5350
- - type: DeviceNetwork
- deviceLists:
- - 15447
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 22156
components:
- type: Transform
@@ -118018,36 +116767,56 @@ entities:
- 24548
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23510
+ - uid: 23372
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 70.5,8.5
+ pos: 49.5,15.5
parent: 5350
- type: DeviceNetwork
deviceLists:
- - 23602
+ - 15447
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23613
+ - uid: 23379
components:
- type: Transform
- pos: 45.5,25.5
+ pos: 50.5,28.5
parent: 5350
- type: DeviceNetwork
deviceLists:
- - 23651
+ - 15447
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24302
+ - uid: 23380
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 43.5,19.5
+ pos: 45.5,23.5
+ parent: 5350
+ - type: DeviceNetwork
+ deviceLists:
+ - 23906
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23385
+ components:
+ - type: Transform
+ pos: 49.5,24.5
+ parent: 5350
+ - type: DeviceNetwork
+ deviceLists:
+ - 15447
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23510
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,8.5
parent: 5350
- type: DeviceNetwork
deviceLists:
- - 28423
+ - 23602
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 24630
@@ -118195,16 +116964,6 @@ entities:
- 28012
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28373
- components:
- - type: Transform
- pos: 48.5,15.5
- parent: 5350
- - type: DeviceNetwork
- deviceLists:
- - 15447
- - type: AtmosPipeColor
- color: '#0055CCFF'
- proto: GasVentScrubber
entities:
- uid: 431
@@ -119367,17 +118126,6 @@ entities:
- 19091
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 16292
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 53.5,15.5
- parent: 5350
- - type: DeviceNetwork
- deviceLists:
- - 15447
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 16376
components:
- type: Transform
@@ -119421,17 +118169,6 @@ entities:
- 23115
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 16670
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 45.5,21.5
- parent: 5350
- - type: DeviceNetwork
- deviceLists:
- - 23651
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 17342
components:
- type: Transform
@@ -119680,7 +118417,7 @@ entities:
parent: 5350
- type: DeviceNetwork
deviceLists:
- - 872
+ - 1913
- type: AtmosPipeColor
color: '#990000FF'
- uid: 21166
@@ -119849,41 +118586,43 @@ entities:
- 22590
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23179
+ - uid: 23276
components:
- type: Transform
- pos: 51.5,28.5
+ rot: 1.5707963267948966 rad
+ pos: 49.5,-24.5
parent: 5350
- - type: DeviceNetwork
- deviceLists:
- - 9130
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23276
+ - uid: 23381
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 49.5,-24.5
+ pos: 45.5,21.5
parent: 5350
+ - type: DeviceNetwork
+ deviceLists:
+ - 23906
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23392
+ - uid: 23383
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 52.5,24.5
+ pos: 51.5,15.5
parent: 5350
+ - type: DeviceNetwork
+ deviceLists:
+ - 15447
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23567
+ - uid: 23384
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 43.5,13.5
+ pos: 51.5,24.5
parent: 5350
- type: DeviceNetwork
deviceLists:
- - 28423
+ - 15447
- type: AtmosPipeColor
color: '#990000FF'
- uid: 25920
@@ -120314,11 +119053,6 @@ entities:
- type: Transform
pos: -69.5,10.5
parent: 5350
- - uid: 1487
- components:
- - type: Transform
- pos: 1.5,-41.5
- parent: 5350
- uid: 1497
components:
- type: Transform
@@ -120524,6 +119258,11 @@ entities:
- type: Transform
pos: 32.5,-6.5
parent: 5350
+ - uid: 2470
+ components:
+ - type: Transform
+ pos: 16.5,-62.5
+ parent: 5350
- uid: 2561
components:
- type: Transform
@@ -120894,6 +119633,16 @@ entities:
- type: Transform
pos: 48.5,9.5
parent: 5350
+ - uid: 5095
+ components:
+ - type: Transform
+ pos: 71.5,30.5
+ parent: 5350
+ - uid: 5096
+ components:
+ - type: Transform
+ pos: 72.5,30.5
+ parent: 5350
- uid: 5128
components:
- type: Transform
@@ -121577,11 +120326,6 @@ entities:
- type: Transform
pos: -2.5,26.5
parent: 5350
- - uid: 7382
- components:
- - type: Transform
- pos: -17.5,62.5
- parent: 5350
- uid: 7427
components:
- type: Transform
@@ -121937,12 +120681,6 @@ entities:
- type: Transform
pos: 19.5,22.5
parent: 5350
- - uid: 8253
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 80.5,24.5
- parent: 5350
- uid: 8256
components:
- type: Transform
@@ -122018,6 +120756,11 @@ entities:
- type: Transform
pos: -63.5,10.5
parent: 5350
+ - uid: 8868
+ components:
+ - type: Transform
+ pos: 73.5,30.5
+ parent: 5350
- uid: 8953
components:
- type: Transform
@@ -122073,11 +120816,6 @@ entities:
- type: Transform
pos: 42.5,12.5
parent: 5350
- - uid: 9100
- components:
- - type: Transform
- pos: 45.5,13.5
- parent: 5350
- uid: 9117
components:
- type: Transform
@@ -122218,6 +120956,11 @@ entities:
- type: Transform
pos: 66.5,-18.5
parent: 5350
+ - uid: 10835
+ components:
+ - type: Transform
+ pos: 70.5,-28.5
+ parent: 5350
- uid: 10844
components:
- type: Transform
@@ -122748,6 +121491,11 @@ entities:
- type: Transform
pos: 60.5,17.5
parent: 5350
+ - uid: 12297
+ components:
+ - type: Transform
+ pos: 59.5,17.5
+ parent: 5350
- uid: 12298
components:
- type: Transform
@@ -122788,6 +121536,11 @@ entities:
- type: Transform
pos: 60.5,23.5
parent: 5350
+ - uid: 12306
+ components:
+ - type: Transform
+ pos: 59.5,23.5
+ parent: 5350
- uid: 12307
components:
- type: Transform
@@ -122853,6 +121606,26 @@ entities:
- type: Transform
pos: 38.5,46.5
parent: 5350
+ - uid: 12666
+ components:
+ - type: Transform
+ pos: 39.5,45.5
+ parent: 5350
+ - uid: 12667
+ components:
+ - type: Transform
+ pos: 40.5,45.5
+ parent: 5350
+ - uid: 12668
+ components:
+ - type: Transform
+ pos: 41.5,46.5
+ parent: 5350
+ - uid: 12669
+ components:
+ - type: Transform
+ pos: 41.5,48.5
+ parent: 5350
- uid: 12670
components:
- type: Transform
@@ -123783,6 +122556,11 @@ entities:
- type: Transform
pos: -54.5,-57.5
parent: 5350
+ - uid: 16311
+ components:
+ - type: Transform
+ pos: -58.5,-57.5
+ parent: 5350
- uid: 16312
components:
- type: Transform
@@ -123828,12 +122606,6 @@ entities:
- type: Transform
pos: 22.5,-36.5
parent: 5350
- - uid: 16457
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -59.5,-74.5
- parent: 5350
- uid: 16476
components:
- type: Transform
@@ -123944,6 +122716,21 @@ entities:
- type: Transform
pos: 82.5,-27.5
parent: 5350
+ - uid: 16747
+ components:
+ - type: Transform
+ pos: -45.5,-42.5
+ parent: 5350
+ - uid: 16748
+ components:
+ - type: Transform
+ pos: -46.5,-42.5
+ parent: 5350
+ - uid: 16749
+ components:
+ - type: Transform
+ pos: -47.5,-42.5
+ parent: 5350
- uid: 16750
components:
- type: Transform
@@ -124174,16 +122961,105 @@ entities:
- type: Transform
pos: -59.5,-75.5
parent: 5350
+ - uid: 16930
+ components:
+ - type: Transform
+ pos: -63.5,-73.5
+ parent: 5350
+ - uid: 16931
+ components:
+ - type: Transform
+ pos: -63.5,-72.5
+ parent: 5350
- uid: 16932
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -60.5,-70.5
+ pos: -63.5,-71.5
parent: 5350
- - uid: 17153
+ - uid: 16933
+ components:
+ - type: Transform
+ pos: -63.5,-70.5
+ parent: 5350
+ - uid: 16934
+ components:
+ - type: Transform
+ pos: -63.5,-69.5
+ parent: 5350
+ - uid: 16935
+ components:
+ - type: Transform
+ pos: -63.5,-68.5
+ parent: 5350
+ - uid: 16936
+ components:
+ - type: Transform
+ pos: -63.5,-67.5
+ parent: 5350
+ - uid: 16938
+ components:
+ - type: Transform
+ pos: -63.5,-65.5
+ parent: 5350
+ - uid: 16939
+ components:
+ - type: Transform
+ pos: -63.5,-64.5
+ parent: 5350
+ - uid: 16940
+ components:
+ - type: Transform
+ pos: -63.5,-63.5
+ parent: 5350
+ - uid: 16941
+ components:
+ - type: Transform
+ pos: -63.5,-62.5
+ parent: 5350
+ - uid: 16942
+ components:
+ - type: Transform
+ pos: -63.5,-61.5
+ parent: 5350
+ - uid: 16943
+ components:
+ - type: Transform
+ pos: -63.5,-60.5
+ parent: 5350
+ - uid: 16944
+ components:
+ - type: Transform
+ pos: -63.5,-59.5
+ parent: 5350
+ - uid: 16945
+ components:
+ - type: Transform
+ pos: -63.5,-58.5
+ parent: 5350
+ - uid: 16947
+ components:
+ - type: Transform
+ pos: -59.5,-57.5
+ parent: 5350
+ - uid: 16948
+ components:
+ - type: Transform
+ pos: -60.5,-57.5
+ parent: 5350
+ - uid: 16949
+ components:
+ - type: Transform
+ pos: -61.5,-57.5
+ parent: 5350
+ - uid: 16950
+ components:
+ - type: Transform
+ pos: -62.5,-57.5
+ parent: 5350
+ - uid: 16951
components:
- type: Transform
- pos: 33.5,-79.5
+ pos: -63.5,-57.5
parent: 5350
- uid: 17207
components:
@@ -124713,37 +123589,98 @@ entities:
- uid: 19608
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 1.5,-47.5
parent: 5350
- - uid: 19792
+ - uid: 19849
components:
- type: Transform
- pos: 46.5,-79.5
+ pos: 45.5,-84.5
parent: 5350
- - uid: 19795
+ - uid: 19850
components:
- type: Transform
- pos: 45.5,-79.5
+ pos: 44.5,-84.5
parent: 5350
- - uid: 19798
+ - uid: 19851
components:
- type: Transform
- pos: 44.5,-79.5
+ pos: 43.5,-84.5
parent: 5350
- - uid: 19799
+ - uid: 19852
components:
- type: Transform
- pos: 41.5,-79.5
+ pos: 42.5,-84.5
parent: 5350
- - uid: 19800
+ - uid: 19853
components:
- type: Transform
- pos: 40.5,-79.5
+ pos: 41.5,-84.5
parent: 5350
- - uid: 19807
+ - uid: 19854
+ components:
+ - type: Transform
+ pos: 40.5,-84.5
+ parent: 5350
+ - uid: 19855
+ components:
+ - type: Transform
+ pos: 39.5,-84.5
+ parent: 5350
+ - uid: 19856
+ components:
+ - type: Transform
+ pos: 38.5,-84.5
+ parent: 5350
+ - uid: 19857
+ components:
+ - type: Transform
+ pos: 37.5,-84.5
+ parent: 5350
+ - uid: 19858
+ components:
+ - type: Transform
+ pos: 36.5,-84.5
+ parent: 5350
+ - uid: 19859
+ components:
+ - type: Transform
+ pos: 35.5,-84.5
+ parent: 5350
+ - uid: 19860
+ components:
+ - type: Transform
+ pos: 34.5,-84.5
+ parent: 5350
+ - uid: 19861
components:
- type: Transform
- pos: 40.5,-80.5
+ pos: 33.5,-84.5
+ parent: 5350
+ - uid: 19862
+ components:
+ - type: Transform
+ pos: 46.5,-83.5
+ parent: 5350
+ - uid: 19863
+ components:
+ - type: Transform
+ pos: 46.5,-82.5
+ parent: 5350
+ - uid: 19864
+ components:
+ - type: Transform
+ pos: 46.5,-81.5
+ parent: 5350
+ - uid: 19865
+ components:
+ - type: Transform
+ pos: 46.5,-80.5
+ parent: 5350
+ - uid: 19866
+ components:
+ - type: Transform
+ pos: 46.5,-79.5
parent: 5350
- uid: 19867
components:
@@ -124810,6 +123747,21 @@ entities:
- type: Transform
pos: 46.5,-66.5
parent: 5350
+ - uid: 19880
+ components:
+ - type: Transform
+ pos: 46.5,-65.5
+ parent: 5350
+ - uid: 19881
+ components:
+ - type: Transform
+ pos: 46.5,-64.5
+ parent: 5350
+ - uid: 19882
+ components:
+ - type: Transform
+ pos: 46.5,-63.5
+ parent: 5350
- uid: 19883
components:
- type: Transform
@@ -124830,12 +123782,6 @@ entities:
- type: Transform
pos: 45.5,-60.5
parent: 5350
- - uid: 19992
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -60.5,-69.5
- parent: 5350
- uid: 20004
components:
- type: Transform
@@ -125171,11 +124117,6 @@ entities:
- type: Transform
pos: 3.5,-11.5
parent: 5350
- - uid: 20933
- components:
- - type: Transform
- pos: 41.5,46.5
- parent: 5350
- uid: 20952
components:
- type: Transform
@@ -125209,6 +124150,7 @@ entities:
- uid: 20981
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -0.5,-49.5
parent: 5350
- uid: 21022
@@ -125224,6 +124166,7 @@ entities:
- uid: 21217
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -0.5,-51.5
parent: 5350
- uid: 21269
@@ -125241,12 +124184,6 @@ entities:
- type: Transform
pos: 44.5,-40.5
parent: 5350
- - uid: 21443
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -60.5,-72.5
- parent: 5350
- uid: 21471
components:
- type: Transform
@@ -125272,6 +124209,11 @@ entities:
- type: Transform
pos: 3.5,-10.5
parent: 5350
+ - uid: 22350
+ components:
+ - type: Transform
+ pos: 18.5,-62.5
+ parent: 5350
- uid: 22387
components:
- type: Transform
@@ -125315,16 +124257,19 @@ entities:
- uid: 22599
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -0.5,-53.5
parent: 5350
- uid: 22600
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: -0.5,-58.5
parent: 5350
- uid: 22602
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: -0.5,-56.5
parent: 5350
- uid: 22632
@@ -125427,29 +124372,11 @@ entities:
- type: Transform
pos: -2.5,5.5
parent: 5350
- - uid: 23222
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -60.5,-73.5
- parent: 5350
- - uid: 23239
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 80.5,20.5
- parent: 5350
- uid: 23271
components:
- type: Transform
pos: -3.5,5.5
parent: 5350
- - uid: 23380
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 80.5,23.5
- parent: 5350
- uid: 23399
components:
- type: Transform
@@ -125480,73 +124407,95 @@ entities:
- type: Transform
pos: 46.5,-38.5
parent: 5350
- - uid: 23594
+ - uid: 23592
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -60.5,-74.5
+ pos: 45.5,13.5
parent: 5350
- - uid: 23635
+ - uid: 23723
components:
- type: Transform
- pos: 41.5,48.5
+ pos: 61.5,30.5
parent: 5350
- - uid: 23653
+ - uid: 23725
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,-58.5
+ pos: -68.5,9.5
parent: 5350
- - uid: 23654
+ - uid: 23734
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,-58.5
+ pos: 71.5,10.5
parent: 5350
- - uid: 23721
+ - uid: 23735
components:
- type: Transform
- pos: 68.5,30.5
+ pos: 72.5,10.5
parent: 5350
- - uid: 23722
+ - uid: 23739
components:
- type: Transform
- pos: 67.5,30.5
+ pos: 74.5,10.5
parent: 5350
- - uid: 23723
+ - uid: 23741
components:
- type: Transform
- pos: 61.5,30.5
+ pos: 75.5,10.5
parent: 5350
- - uid: 23725
+ - uid: 23742
components:
- type: Transform
- pos: -68.5,9.5
+ pos: 76.5,10.5
parent: 5350
- - uid: 23739
+ - uid: 23764
components:
- type: Transform
- pos: 74.5,10.5
+ pos: 79.5,23.5
parent: 5350
- - uid: 23741
+ - uid: 23772
components:
- type: Transform
- pos: 75.5,10.5
+ pos: 76.5,31.5
parent: 5350
- - uid: 23742
+ - uid: 23773
components:
- type: Transform
- pos: 76.5,10.5
+ pos: 75.5,31.5
parent: 5350
- - uid: 23785
+ - uid: 23774
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 80.5,22.5
+ pos: 76.5,30.5
+ parent: 5350
+ - uid: 23775
+ components:
+ - type: Transform
+ pos: 75.5,30.5
+ parent: 5350
+ - uid: 23776
+ components:
+ - type: Transform
+ pos: 74.5,30.5
+ parent: 5350
+ - uid: 23777
+ components:
+ - type: Transform
+ pos: 79.5,22.5
+ parent: 5350
+ - uid: 23778
+ components:
+ - type: Transform
+ pos: 79.5,17.5
+ parent: 5350
+ - uid: 23779
+ components:
+ - type: Transform
+ pos: 79.5,18.5
parent: 5350
- uid: 23822
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: 5.5,-28.5
parent: 5350
- uid: 23855
@@ -126854,6 +125803,11 @@ entities:
- type: Transform
pos: 78.5,-26.5
parent: 5350
+ - uid: 27236
+ components:
+ - type: Transform
+ pos: 72.5,-28.5
+ parent: 5350
- uid: 27251
components:
- type: Transform
@@ -127309,6 +126263,11 @@ entities:
- type: Transform
pos: 80.5,-47.5
parent: 5350
+ - uid: 27401
+ components:
+ - type: Transform
+ pos: 71.5,-28.5
+ parent: 5350
- uid: 27404
components:
- type: Transform
@@ -127439,26 +126398,6 @@ entities:
- type: Transform
pos: 63.5,-35.5
parent: 5350
- - uid: 28005
- components:
- - type: Transform
- pos: 53.5,6.5
- parent: 5350
- - uid: 28006
- components:
- - type: Transform
- pos: 54.5,6.5
- parent: 5350
- - uid: 28007
- components:
- - type: Transform
- pos: 55.5,6.5
- parent: 5350
- - uid: 28011
- components:
- - type: Transform
- pos: 45.5,19.5
- parent: 5350
- uid: 28173
components:
- type: Transform
@@ -127474,186 +126413,6 @@ entities:
- type: Transform
pos: 52.5,-38.5
parent: 5350
- - uid: 28401
- components:
- - type: Transform
- pos: 0.5,-41.5
- parent: 5350
- - uid: 28477
- components:
- - type: Transform
- pos: -17.5,58.5
- parent: 5350
- - uid: 28478
- components:
- - type: Transform
- pos: -17.5,59.5
- parent: 5350
- - uid: 28481
- components:
- - type: Transform
- pos: -17.5,60.5
- parent: 5350
- - uid: 28483
- components:
- - type: Transform
- pos: -17.5,61.5
- parent: 5350
- - uid: 28560
- components:
- - type: Transform
- pos: 40.5,-81.5
- parent: 5350
- - uid: 28573
- components:
- - type: Transform
- pos: 39.5,-81.5
- parent: 5350
- - uid: 28574
- components:
- - type: Transform
- pos: 38.5,-81.5
- parent: 5350
- - uid: 28575
- components:
- - type: Transform
- pos: 36.5,-81.5
- parent: 5350
- - uid: 28576
- components:
- - type: Transform
- pos: 37.5,-81.5
- parent: 5350
- - uid: 28577
- components:
- - type: Transform
- pos: 36.5,-80.5
- parent: 5350
- - uid: 28578
- components:
- - type: Transform
- pos: 36.5,-79.5
- parent: 5350
- - uid: 28579
- components:
- - type: Transform
- pos: 35.5,-79.5
- parent: 5350
- - uid: 28580
- components:
- - type: Transform
- pos: 34.5,-79.5
- parent: 5350
- - uid: 28581
- components:
- - type: Transform
- pos: 30.5,-74.5
- parent: 5350
- - uid: 28582
- components:
- - type: Transform
- pos: 30.5,-73.5
- parent: 5350
- - uid: 28584
- components:
- - type: Transform
- pos: 30.5,-75.5
- parent: 5350
- - uid: 28585
- components:
- - type: Transform
- pos: 30.5,-76.5
- parent: 5350
- - uid: 28586
- components:
- - type: Transform
- pos: 30.5,-77.5
- parent: 5350
- - uid: 28587
- components:
- - type: Transform
- pos: 32.5,-79.5
- parent: 5350
- - uid: 28597
- components:
- - type: Transform
- pos: -62.5,-65.5
- parent: 5350
- - uid: 28616
- components:
- - type: Transform
- pos: -60.5,-68.5
- parent: 5350
- - uid: 28617
- components:
- - type: Transform
- pos: -60.5,-67.5
- parent: 5350
- - uid: 28618
- components:
- - type: Transform
- pos: -60.5,-66.5
- parent: 5350
- - uid: 28619
- components:
- - type: Transform
- pos: -60.5,-65.5
- parent: 5350
- - uid: 28620
- components:
- - type: Transform
- pos: -61.5,-65.5
- parent: 5350
- - uid: 28621
- components:
- - type: Transform
- pos: -63.5,-65.5
- parent: 5350
- - uid: 28622
- components:
- - type: Transform
- pos: -63.5,-64.5
- parent: 5350
- - uid: 28623
- components:
- - type: Transform
- pos: -62.5,-61.5
- parent: 5350
- - uid: 28624
- components:
- - type: Transform
- pos: -60.5,-58.5
- parent: 5350
- - uid: 28625
- components:
- - type: Transform
- pos: -63.5,-61.5
- parent: 5350
- - uid: 28626
- components:
- - type: Transform
- pos: -61.5,-61.5
- parent: 5350
- - uid: 28627
- components:
- - type: Transform
- pos: -60.5,-61.5
- parent: 5350
- - uid: 28628
- components:
- - type: Transform
- pos: -60.5,-60.5
- parent: 5350
- - uid: 28629
- components:
- - type: Transform
- pos: -60.5,-59.5
- parent: 5350
- - uid: 28630
- components:
- - type: Transform
- pos: -58.5,-57.5
- parent: 5350
- proto: GrilleBroken
entities:
- uid: 2073
@@ -127689,11 +126448,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -57.5,34.5
parent: 5350
- - uid: 8244
- components:
- - type: Transform
- pos: 80.5,25.5
- parent: 5350
- uid: 11459
components:
- type: Transform
@@ -127772,6 +126526,11 @@ entities:
- type: Transform
pos: 38.5,57.5
parent: 5350
+ - uid: 16262
+ components:
+ - type: Transform
+ pos: -63.5,-66.5
+ parent: 5350
- uid: 16310
components:
- type: Transform
@@ -127838,17 +126597,6 @@ entities:
rot: 3.141592653589793 rad
pos: 44.5,-42.5
parent: 5350
- - uid: 19848
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 46.5,-63.5
- parent: 5350
- - uid: 19849
- components:
- - type: Transform
- pos: 46.5,-65.5
- parent: 5350
- uid: 20222
components:
- type: Transform
@@ -127883,24 +126631,6 @@ entities:
rot: 3.141592653589793 rad
pos: -17.5,50.5
parent: 5350
- - uid: 23229
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 72.5,10.5
- parent: 5350
- - uid: 23377
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 80.5,19.5
- parent: 5350
- - uid: 23964
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 69.5,30.5
- parent: 5350
- uid: 26266
components:
- type: Transform
@@ -128188,74 +126918,6 @@ entities:
- type: Transform
pos: 44.5,-38.5
parent: 5350
- - uid: 28485
- components:
- - type: Transform
- pos: -17.5,56.5
- parent: 5350
- - uid: 28486
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,57.5
- parent: 5350
- - uid: 28583
- components:
- - type: Transform
- pos: 30.5,-72.5
- parent: 5350
- - uid: 28588
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 30.5,-78.5
- parent: 5350
- - uid: 28589
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 31.5,-79.5
- parent: 5350
- - uid: 28591
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 42.5,-79.5
- parent: 5350
- - uid: 28592
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 43.5,-79.5
- parent: 5350
- - uid: 28631
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -60.5,-71.5
- parent: 5350
- - uid: 28632
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -59.5,-57.5
- parent: 5350
- - uid: 28633
- components:
- - type: Transform
- pos: -60.5,-57.5
- parent: 5350
- - uid: 28634
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -63.5,-62.5
- parent: 5350
- - uid: 28635
- components:
- - type: Transform
- pos: -63.5,-63.5
- parent: 5350
- proto: GroundCannabis
entities:
- uid: 24640
@@ -128270,38 +126932,57 @@ entities:
parent: 5350
- proto: GunSafeDisabler
entities:
- - uid: 6369
+ - uid: 7730
components:
- type: Transform
+ anchored: True
pos: -8.5,46.5
parent: 5350
+ - type: Physics
+ bodyType: Static
- proto: GunSafePistolMk58
entities:
- - uid: 6511
+ - uid: 6369
components:
- type: Transform
+ anchored: True
pos: -9.5,46.5
parent: 5350
+ - type: Physics
+ bodyType: Static
+ - 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: GunSafeRifleLecter
entities:
- - uid: 22966
+ - uid: 23721
components:
- - type: MetaData
- desc: Safe containing 3 Lecter combat rifles.
- type: Transform
- anchored: True
pos: -6.5,40.5
parent: 5350
- - type: Physics
- bodyType: Static
- type: EntityStorage
air:
volume: 200
immutable: False
- temperature: 293.14673
+ temperature: 293.1465
moles:
- - 1.8856695
- - 7.0937095
+ - 1.7459903
+ - 6.568249
- 0
- 0
- 0
@@ -128318,33 +126999,28 @@ entities:
showEnts: False
occludes: True
ents:
- - 28209
- - 28446
- - 28208
+ - 23731
+ - 23730
+ - 23722
paper_label: !type:ContainerSlot
showEnts: False
occludes: True
ent: null
- proto: GunSafeShotgunKammerer
entities:
- - uid: 11588
+ - uid: 13851
components:
- - type: MetaData
- desc: Safe containing 4 Kammerer shotguns.
- type: Transform
- anchored: True
pos: -8.5,36.5
parent: 5350
- - type: Physics
- bodyType: Static
- type: EntityStorage
air:
volume: 200
immutable: False
temperature: 293.14673
moles:
- - 1.8856695
- - 7.0937095
+ - 1.7459903
+ - 6.568249
- 0
- 0
- 0
@@ -128361,32 +127037,27 @@ entities:
showEnts: False
occludes: True
ents:
- - 3634
- - 3056
+ - 15052
+ - 14878
paper_label: !type:ContainerSlot
showEnts: False
occludes: True
ent: null
- proto: GunSafeSubMachineGunDrozd
entities:
- - uid: 13851
+ - uid: 9194
components:
- - type: MetaData
- desc: Safe containing 3 Drozd submachine guns.
- type: Transform
- anchored: True
pos: -5.5,40.5
parent: 5350
- - type: Physics
- bodyType: Static
- type: EntityStorage
air:
volume: 200
immutable: False
- temperature: 293.14673
+ temperature: 293.1465
moles:
- - 1.8856695
- - 7.0937095
+ - 1.7459903
+ - 6.568249
- 0
- 0
- 0
@@ -128403,19 +127074,19 @@ entities:
showEnts: False
occludes: True
ents:
- - 14878
- - 21468
- - 28207
+ - 9202
+ - 9198
+ - 9195
paper_label: !type:ContainerSlot
showEnts: False
occludes: True
ent: null
- proto: GyroscopeFlatpack
entities:
- - uid: 28452
+ - uid: 24489
components:
- type: Transform
- parent: 28450
+ parent: 24070
- type: Physics
canCollide: False
- type: InsideEntityStorage
@@ -128506,11 +127177,6 @@ entities:
- type: Transform
pos: 10.937332,19.46014
parent: 5350
- - uid: 28500
- components:
- - type: Transform
- pos: -34.34041,3.3560352
- parent: 5350
- proto: HeatExchanger
entities:
- uid: 27166
@@ -128533,19 +127199,19 @@ entities:
parent: 5350
- proto: HighSecArmoryLocked
entities:
- - uid: 7645
+ - uid: 638
components:
- type: MetaData
name: Secure Armory
- type: Transform
- pos: -8.5,41.5
+ pos: -6.5,35.5
parent: 5350
- - uid: 28480
+ - uid: 7645
components:
- type: MetaData
name: Secure Armory
- type: Transform
- pos: -6.5,35.5
+ pos: -8.5,41.5
parent: 5350
- proto: HighSecCommandLocked
entities:
@@ -128596,8 +127262,8 @@ entities:
- uid: 27051
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 72.665276,-31.44234
+ rot: 1.5707963267948966 rad
+ pos: 72.83539,-31.5
parent: 5350
- proto: Holopad
entities:
@@ -128674,10 +127340,10 @@ entities:
parent: 5350
- proto: HolopadCargoFront
entities:
- - uid: 28498
+ - uid: 688
components:
- type: Transform
- pos: -25.5,5.5
+ pos: -27.5,5.5
parent: 5350
- proto: HolopadCargoMailroom
entities:
@@ -128894,18 +127560,6 @@ entities:
- type: Transform
pos: -20.5,14.5
parent: 5350
-- proto: HolopadMachineCircuitboard
- entities:
- - uid: 16749
- components:
- - type: Transform
- pos: 36.586212,6.763314
- parent: 5350
- - uid: 23216
- components:
- - type: Transform
- pos: 36.429962,6.466439
- parent: 5350
- proto: HolopadMedicalBreakroom
entities:
- uid: 9751
@@ -128936,10 +127590,10 @@ entities:
parent: 5350
- proto: HolopadMedicalMorgue
entities:
- - uid: 28531
+ - uid: 15009
components:
- type: Transform
- pos: -12.5,-49.5
+ pos: -13.5,-49.5
parent: 5350
- proto: HolopadMedicalParamed
entities:
@@ -129158,15 +127812,6 @@ entities:
- type: Transform
pos: -50.5,-14.5
parent: 5350
-- proto: HoloprojectorSecurity
- entities:
- - uid: 7939
- components:
- - type: Transform
- parent: 6696
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- proto: HospitalCurtainsOpen
entities:
- uid: 4105
@@ -129723,22 +128368,21 @@ entities:
parent: 5350
- proto: IntercomEngineering
entities:
- - uid: 2143
+ - uid: 23179
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 56.5,6.5
+ pos: 55.5,6.5
parent: 5350
- uid: 24719
components:
- type: Transform
pos: 45.5,5.5
parent: 5350
- - uid: 27401
+ - uid: 26311
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 65.5,-32.5
+ pos: 73.5,-28.5
parent: 5350
- proto: IntercomMedical
entities:
@@ -129887,22 +128531,6 @@ entities:
- type: Transform
pos: -43.410835,33.79435
parent: 5350
- - uid: 15120
- components:
- - type: Transform
- pos: -16.37137,-14.418222
- parent: 5350
- - type: GasTank
- toggleActionEntity: 15198
- - type: Jetpack
- toggleActionEntity: 15196
- - type: ActionsContainer
- - type: ContainerContainer
- containers:
- actions: !type:Container
- ents:
- - 15196
- - 15198
- uid: 15431
components:
- type: Transform
@@ -129913,50 +128541,8 @@ entities:
- type: Transform
pos: 65.554596,3.6015525
parent: 5350
- - uid: 15483
- components:
- - type: Transform
- pos: -16.55887,-14.105722
- parent: 5350
- - type: GasTank
- toggleActionEntity: 15592
- - type: Jetpack
- toggleActionEntity: 15521
- - type: ActionsContainer
- - type: ContainerContainer
- containers:
- actions: !type:Container
- ents:
- - 15521
- - 15592
- - uid: 18691
- components:
- - type: Transform
- pos: -16.540573,-13.293222
- parent: 5350
- - type: GasTank
- toggleActionEntity: 18711
- - type: Jetpack
- toggleActionEntity: 18692
- - type: ActionsContainer
- - type: ContainerContainer
- containers:
- actions: !type:Container
- ents:
- - 18692
- - 18711
- - uid: 18712
- components:
- - type: Transform
- pos: -16.40262,-13.636972
- parent: 5350
- proto: JetpackSecurityFilled
entities:
- - uid: 4742
- components:
- - type: Transform
- pos: -9.58875,44.44667
- parent: 5350
- uid: 7291
components:
- type: Transform
@@ -129965,7 +128551,7 @@ entities:
- uid: 7614
components:
- type: Transform
- pos: -9.570677,44.593655
+ pos: -9.606552,44.638515
parent: 5350
- type: GasTank
toggleActionEntity: 7201
@@ -130200,11 +128786,6 @@ entities:
showEnts: False
occludes: True
ent: null
- - uid: 1569
- components:
- - type: Transform
- pos: -3.6731057,38.90534
- parent: 5350
- uid: 3242
components:
- type: Transform
@@ -130301,12 +128882,6 @@ entities:
- type: Transform
pos: -17.612652,-60.246487
parent: 5350
- - uid: 28384
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 55.478546,14.706465
- parent: 5350
- proto: LampInterrogator
entities:
- uid: 999
@@ -130322,47 +128897,41 @@ entities:
anchored: True
pos: -16.5,55.5
parent: 5350
- - uid: 7741
- components:
- - type: Transform
- anchored: True
- pos: 3.5,47.5
- parent: 5350
- uid: 8516
components:
- type: Transform
anchored: True
pos: 3.5,68.5
parent: 5350
- - uid: 17667
+ - uid: 8518
components:
- type: Transform
anchored: True
- pos: 4.5,59.5
+ pos: -11.5,67.5
parent: 5350
- - uid: 23089
+ - uid: 11588
components:
- type: Transform
anchored: True
- pos: -16.5,50.5
+ pos: -23.5,50.5
parent: 5350
- - uid: 28126
+ - uid: 17667
components:
- type: Transform
anchored: True
- pos: 6.5,52.5
+ pos: 4.5,59.5
parent: 5350
- - uid: 28488
+ - uid: 23651
components:
- type: Transform
anchored: True
pos: -4.5,48.5
parent: 5350
- - uid: 28489
+ - uid: 28126
components:
- type: Transform
anchored: True
- pos: -9.5,67.5
+ pos: 6.5,52.5
parent: 5350
- proto: Lantern
entities:
@@ -130416,55 +128985,28 @@ entities:
parent: 5350
- proto: LockableButtonArmory
entities:
- - uid: 638
- components:
- - type: MetaData
- name: Close Armory
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -7.2430754,35.481583
- parent: 5350
- - type: DeviceLinkSource
- linkedPorts:
- 1876:
- - Pressed: Close
- 28459:
- - Pressed: Close
- 6962:
- - Pressed: Close
- 8868:
- - Pressed: Close
- 23027:
- - Pressed: Close
- 22904:
- - Pressed: Close
- - uid: 23091
+ - uid: 1174
components:
- type: MetaData
- name: Open Armory
+ name: Armory Doors
- type: Transform
rot: 3.141592653589793 rad
- pos: -7.763909,35.48853
+ pos: -7.5,35.5
parent: 5350
- type: DeviceLinkSource
linkedPorts:
- 1876:
- - Pressed: Open
- - Pressed: AutoClose
- 28459:
- - Pressed: Open
- - Pressed: AutoClose
- 6962:
- - Pressed: Open
- - Pressed: AutoClose
22904:
- - Pressed: Open
- 8868:
- - Pressed: Open
- - Pressed: AutoClose
- 23027:
- - Pressed: Open
- - Pressed: AutoClose
+ - Pressed: Toggle
+ 23732:
+ - Pressed: Toggle
+ 23652:
+ - Pressed: Toggle
+ 23635:
+ - Pressed: Toggle
+ 23634:
+ - Pressed: Toggle
+ 23636:
+ - Pressed: Toggle
- proto: LockableButtonAtmospherics
entities:
- uid: 18348
@@ -130491,24 +129033,6 @@ entities:
linkedPorts:
15941:
- Pressed: Toggle
-- proto: LockableButtonEngineering
- entities:
- - uid: 4161
- components:
- - type: MetaData
- name: Secure Storage
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 48.5,21.5
- parent: 5350
- - type: DeviceLinkSource
- linkedPorts:
- 28365:
- - Pressed: Toggle
- 23391:
- - Pressed: Toggle
- 28382:
- - Pressed: Toggle
- proto: LockableButtonMedical
entities:
- uid: 1426
@@ -130520,11 +129044,11 @@ entities:
parent: 5350
- type: DeviceLinkSource
linkedPorts:
- 23655:
+ 12541:
- Pressed: Toggle
- 23712:
+ 20051:
- Pressed: Toggle
- 23720:
+ 11952:
- Pressed: Toggle
- uid: 10414
components:
@@ -130642,11 +129166,8 @@ entities:
- uid: 15807
components:
- type: Transform
- anchored: True
pos: -22.5,-22.5
parent: 5350
- - type: Physics
- bodyType: Static
- proto: LockerChiefEngineerFilled
entities:
- uid: 9051
@@ -130910,8 +129431,8 @@ entities:
immutable: False
temperature: 293.14673
moles:
- - 1.8968438
- - 7.1357465
+ - 1.8856695
+ - 7.0937095
- 0
- 0
- 0
@@ -130922,6 +129443,17 @@ entities:
- 0
- 0
- 0
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 9632
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
- proto: LockerFreezer
entities:
- uid: 3158
@@ -131015,67 +129547,43 @@ entities:
- uid: 16189
components:
- type: Transform
- anchored: True
pos: -24.5,-39.5
parent: 5350
- - type: Physics
- bodyType: Static
- uid: 16190
components:
- type: Transform
- anchored: True
pos: -25.5,-39.5
parent: 5350
- - type: Physics
- bodyType: Static
- uid: 16191
components:
- type: Transform
- anchored: True
pos: -26.5,-39.5
parent: 5350
- - type: Physics
- bodyType: Static
- uid: 16192
components:
- type: Transform
- anchored: True
pos: -27.5,-39.5
parent: 5350
- - type: Physics
- bodyType: Static
- uid: 16193
components:
- type: Transform
- anchored: True
pos: -24.5,-43.5
parent: 5350
- - type: Physics
- bodyType: Static
- uid: 16194
components:
- type: Transform
- anchored: True
pos: -25.5,-43.5
parent: 5350
- - type: Physics
- bodyType: Static
- uid: 16195
components:
- type: Transform
- anchored: True
pos: -26.5,-43.5
parent: 5350
- - type: Physics
- bodyType: Static
- uid: 16196
components:
- type: Transform
- anchored: True
pos: -27.5,-43.5
parent: 5350
- - type: Physics
- bodyType: Static
- proto: LockerMedicineFilled
entities:
- uid: 10336
@@ -131106,11 +129614,8 @@ entities:
- uid: 15604
components:
- type: Transform
- anchored: True
pos: -36.5,-30.5
parent: 5350
- - type: Physics
- bodyType: Static
- uid: 24329
components:
- type: Transform
@@ -131121,19 +129626,13 @@ entities:
- uid: 15898
components:
- type: Transform
- anchored: True
pos: -10.5,-35.5
parent: 5350
- - type: Physics
- bodyType: Static
- uid: 15899
components:
- type: Transform
- anchored: True
pos: -10.5,-34.5
parent: 5350
- - type: Physics
- bodyType: Static
- proto: LockerQuarterMasterFilled
entities:
- uid: 6737
@@ -131315,8 +129814,8 @@ entities:
showEnts: False
occludes: True
ents:
- - 7939
- 7385
+ - 1876
- 7384
- 7224
- 7218
@@ -131324,7 +129823,9 @@ entities:
- 7191
- 7131
- 7545
+ - 6700
- 7757
+ - 13782
paper_label: !type:ContainerSlot
showEnts: False
occludes: True
@@ -131435,11 +129936,6 @@ entities:
showEnts: False
occludes: True
ents: []
- - uid: 23757
- components:
- - type: Transform
- pos: 20.5,-35.5
- parent: 5350
- uid: 26436
components:
- type: Transform
@@ -131492,17 +129988,17 @@ entities:
parent: 5350
- proto: MagazinePistolSubMachineGun
entities:
- - uid: 14878
+ - uid: 9198
components:
- type: Transform
- parent: 13851
+ parent: 9194
- type: Physics
canCollide: False
- type: InsideEntityStorage
- - uid: 21468
+ - uid: 9202
components:
- type: Transform
- parent: 13851
+ parent: 9194
- type: Physics
canCollide: False
- type: InsideEntityStorage
@@ -131536,17 +130032,17 @@ entities:
unspawnedCount: 30
- proto: MagazineRifle
entities:
- - uid: 28208
+ - uid: 23722
components:
- type: Transform
- parent: 22966
+ parent: 23721
- type: Physics
canCollide: False
- type: InsideEntityStorage
- - uid: 28209
+ - uid: 23731
components:
- type: Transform
- parent: 22966
+ parent: 23721
- type: Physics
canCollide: False
- type: InsideEntityStorage
@@ -131676,6 +130172,11 @@ entities:
- type: Transform
pos: -45.5,5.5
parent: 5350
+ - uid: 9537
+ components:
+ - type: Transform
+ pos: 18.5,-61.5
+ parent: 5350
- uid: 13757
components:
- type: Transform
@@ -132513,6 +131014,13 @@ entities:
parent: 5350
- proto: Multitool
entities:
+ - uid: 1876
+ components:
+ - type: Transform
+ parent: 6696
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- uid: 3662
components:
- type: Transform
@@ -132573,11 +131081,6 @@ entities:
- type: Transform
pos: -46.5,33.5
parent: 5350
- - uid: 1530
- components:
- - type: Transform
- pos: -41.5,-45.5
- parent: 5350
- uid: 2145
components:
- type: Transform
@@ -132613,11 +131116,21 @@ entities:
- type: Transform
pos: -37.5,-34.5
parent: 5350
+ - uid: 16275
+ components:
+ - type: Transform
+ pos: 47.5,18.5
+ parent: 5350
- uid: 18491
components:
- type: Transform
pos: -46.5,-39.5
parent: 5350
+ - uid: 19218
+ components:
+ - type: Transform
+ pos: 7.5,-64.5
+ parent: 5350
- uid: 19449
components:
- type: Transform
@@ -132653,25 +131166,6 @@ entities:
- type: Transform
pos: 76.5,-34.5
parent: 5350
- - uid: 27998
- components:
- - type: Transform
- pos: 46.5,19.5
- parent: 5350
- - uid: 28428
- components:
- - type: Transform
- pos: 13.5,-55.5
- parent: 5350
-- proto: NitrogenTank
- entities:
- - uid: 14901
- components:
- - type: Transform
- parent: 11032
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- proto: NitrogenTankFilled
entities:
- uid: 4789
@@ -132679,55 +131173,32 @@ entities:
- type: Transform
pos: -36.68396,-36.29682
parent: 5350
- - uid: 12668
- components:
- - type: Transform
- parent: 7801
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 12669
- components:
- - type: Transform
- parent: 15195
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 13496
- components:
- - type: Transform
- parent: 13159
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 13886
+ - uid: 6785
components:
- type: Transform
- parent: 1489
+ parent: 5663
- type: Physics
canCollide: False
- type: InsideEntityStorage
- - uid: 14149
+ - uid: 6962
components:
- type: Transform
- parent: 4104
+ parent: 5776
- type: Physics
canCollide: False
- type: InsideEntityStorage
- - uid: 14443
+ - uid: 7537
components:
- type: Transform
- parent: 7165
+ parent: 10975
- type: Physics
canCollide: False
- type: InsideEntityStorage
- - uid: 14858
+ - uid: 8867
components:
- type: Transform
- parent: 2617
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
+ pos: -5.5,46.5
+ parent: 5350
- uid: 15237
components:
- type: Transform
@@ -132751,17 +131222,32 @@ entities:
actions: !type:Container
ents:
- 16296
- - uid: 24449
+ - uid: 23603
components:
- type: Transform
- parent: 24328
+ parent: 6996
+ - type: GasTank
+ toggleActionEntity: 23604
- type: Physics
canCollide: False
+ - type: ActionsContainer
+ - type: ContainerContainer
+ containers:
+ actions: !type:Container
+ ents:
+ - 23604
- type: InsideEntityStorage
- - uid: 24611
+ - uid: 23605
components:
- type: Transform
- parent: 24610
+ parent: 7774
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 23610
+ components:
+ - type: Transform
+ parent: 9506
- type: Physics
canCollide: False
- type: InsideEntityStorage
@@ -132937,11 +131423,21 @@ entities:
- type: Transform
pos: -37.5,-33.5
parent: 5350
+ - uid: 16265
+ components:
+ - type: Transform
+ pos: 46.5,18.5
+ parent: 5350
- uid: 17340
components:
- type: Transform
pos: -47.5,-39.5
parent: 5350
+ - uid: 19263
+ components:
+ - type: Transform
+ pos: 8.5,-64.5
+ parent: 5350
- uid: 19544
components:
- type: Transform
@@ -132962,23 +131458,18 @@ entities:
- type: Transform
pos: 76.5,-33.5
parent: 5350
- - uid: 27999
- components:
- - type: Transform
- pos: 47.5,19.5
- parent: 5350
- - uid: 28487
+- proto: OxygenTankFilled
+ entities:
+ - uid: 1532
components:
- type: Transform
- pos: 14.5,-55.5
+ pos: -16.506245,-14.460186
parent: 5350
- - uid: 28511
+ - uid: 1533
components:
- type: Transform
- pos: -42.5,-45.5
+ pos: -16.506245,-14.163311
parent: 5350
-- proto: OxygenTankFilled
- entities:
- uid: 9284
components:
- type: Transform
@@ -133477,64 +131968,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.
-- proto: PaperBin
- entities:
- - uid: 1531
- components:
- - type: MetaData
- name: Paper Bin (cargo forms)
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,8.5
- parent: 5350
- - type: Bin
- items:
- - 1532
- - 1533
- - 1534
- - 1535
- - 1539
- - 1540
- - 2064
- - 2187
- - 2470
- - 2999
- - 19853
- - 19854
- - 19855
- - 19856
- - 19857
- - 19858
- - 19859
- - 19860
- - 19861
- - 19862
- - type: ContainerContainer
- containers:
- bin-container: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 1532
- - 1533
- - 1534
- - 1535
- - 1539
- - 1540
- - 2064
- - 2187
- - 2470
- - 2999
- - 19853
- - 19854
- - 19855
- - 19856
- - 19857
- - 19858
- - 19859
- - 19860
- - 19861
- - 19862
- proto: PaperBin10
entities:
- uid: 15095
@@ -133577,406 +132010,6 @@ entities:
parent: 5350
- proto: PaperOffice
entities:
- - uid: 1532
- components:
- - type: Transform
- parent: 1531
- - type: Paper
- content: >-
- [color=#b18644]█▄ █ ▀█▀ [head=3]Cargo Request Form[/head]
-
- █ ▀█ █ Thank you for choosing Cargo[/color]
-
- ──────────────────────────────────────────
-
- This form is to place orders for items or resources you require. Please make sure to be detailed and specific.
-
-
- For multiple different orders please fill out multiple forms.
-
-
- Your Name: [color=#002AAF]Sample Person[/color]
- ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
- Your Order: [color=#002AAF]Sample Order[/color]
- ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
- Reason (please be detailed):
- [color=#002AAF]Sample Reason[/color]
-
-
-
- \[ ]Request delivery
-
- Destination (if applicable): [color=#002AAF]Sample Place[/color]
- ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
- [color=#aaaaaa]Delivery is not guaranteed as Cargo personnel are not required to deliver your cargo to you. If delivery service is refused you will be asked to pick up your items over radio.
-
- CRFs are handled in the order they are received.
-
- The Quartermaster holds the right to change Cargo Request policies at any time.
-
- If you are not satisfied with your Cargo service, please contact 1(800)-ASS-HOLE
- - type: Physics
- canCollide: False
- - uid: 1533
- components:
- - type: Transform
- parent: 1531
- - type: Paper
- content: >-
- [color=#b18644]█▄ █ ▀█▀ [head=3]Cargo Request Form[/head]
-
- █ ▀█ █ Thank you for choosing Cargo[/color]
-
- ──────────────────────────────────────────
-
- This form is to place orders for items or resources you require. Please make sure to be detailed and specific.
-
-
- For multiple different orders please fill out multiple forms.
-
-
- Your Name: [color=#002AAF]Sample Person[/color]
- ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
- Your Order: [color=#002AAF]Sample Order[/color]
- ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
- Reason (please be detailed):
- [color=#002AAF]Sample Reason[/color]
-
-
-
- \[ ]Request delivery
-
- Destination (if applicable): [color=#002AAF]Sample Place[/color]
- ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
- [color=#aaaaaa]Delivery is not guaranteed as Cargo personnel are not required to deliver your cargo to you. If delivery service is refused you will be asked to pick up your items over radio.
-
- CRFs are handled in the order they are received.
-
- The Quartermaster holds the right to change Cargo Request policies at any time.
-
- If you are not satisfied with your Cargo service, please contact 1(800)-ASS-HOLE
- - type: Physics
- canCollide: False
- - uid: 1534
- components:
- - type: Transform
- parent: 1531
- - type: Paper
- content: >-
- [color=#b18644]█▄ █ ▀█▀ [head=3]Cargo Request Form[/head]
-
- █ ▀█ █ Thank you for choosing Cargo[/color]
-
- ──────────────────────────────────────────
-
- This form is to place orders for items or resources you require. Please make sure to be detailed and specific.
-
-
- For multiple different orders please fill out multiple forms.
-
-
- Your Name: [color=#002AAF]Sample Person[/color]
- ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
- Your Order: [color=#002AAF]Sample Order[/color]
- ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
- Reason (please be detailed):
- [color=#002AAF]Sample Reason[/color]
-
-
-
- \[ ]Request delivery
-
- Destination (if applicable): [color=#002AAF]Sample Place[/color]
- ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
- [color=#aaaaaa]Delivery is not guaranteed as Cargo personnel are not required to deliver your cargo to you. If delivery service is refused you will be asked to pick up your items over radio.
-
- CRFs are handled in the order they are received.
-
- The Quartermaster holds the right to change Cargo Request policies at any time.
-
- If you are not satisfied with your Cargo service, please contact 1(800)-ASS-HOLE
- - type: Physics
- canCollide: False
- - uid: 1535
- components:
- - type: Transform
- parent: 1531
- - type: Paper
- content: >-
- [color=#b18644]█▄ █ ▀█▀ [head=3]Cargo Request Form[/head]
-
- █ ▀█ █ Thank you for choosing Cargo[/color]
-
- ──────────────────────────────────────────
-
- This form is to place orders for items or resources you require. Please make sure to be detailed and specific.
-
-
- For multiple different orders please fill out multiple forms.
-
-
- Your Name: [color=#002AAF]Sample Person[/color]
- ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
- Your Order: [color=#002AAF]Sample Order[/color]
- ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
- Reason (please be detailed):
- [color=#002AAF]Sample Reason[/color]
-
-
-
- \[ ]Request delivery
-
- Destination (if applicable): [color=#002AAF]Sample Place[/color]
- ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
- [color=#aaaaaa]Delivery is not guaranteed as Cargo personnel are not required to deliver your cargo to you. If delivery service is refused you will be asked to pick up your items over radio.
-
- CRFs are handled in the order they are received.
-
- The Quartermaster holds the right to change Cargo Request policies at any time.
-
- If you are not satisfied with your Cargo service, please contact 1(800)-ASS-HOLE
- - type: Physics
- canCollide: False
- - uid: 1539
- components:
- - type: Transform
- parent: 1531
- - type: Paper
- content: >-
- [color=#b18644]█▄ █ ▀█▀ [head=3]Cargo Request Form[/head]
-
- █ ▀█ █ Thank you for choosing Cargo[/color]
-
- ──────────────────────────────────────────
-
- This form is to place orders for items or resources you require. Please make sure to be detailed and specific.
-
-
- For multiple different orders please fill out multiple forms.
-
-
- Your Name: [color=#002AAF]Sample Person[/color]
- ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
- Your Order: [color=#002AAF]Sample Order[/color]
- ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
- Reason (please be detailed):
- [color=#002AAF]Sample Reason[/color]
-
-
-
- \[ ]Request delivery
-
- Destination (if applicable): [color=#002AAF]Sample Place[/color]
- ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
- [color=#aaaaaa]Delivery is not guaranteed as Cargo personnel are not required to deliver your cargo to you. If delivery service is refused you will be asked to pick up your items over radio.
-
- CRFs are handled in the order they are received.
-
- The Quartermaster holds the right to change Cargo Request policies at any time.
-
- If you are not satisfied with your Cargo service, please contact 1(800)-ASS-HOLE
- - type: Physics
- canCollide: False
- - uid: 1540
- components:
- - type: Transform
- parent: 1531
- - type: Paper
- content: >-
- [color=#b18644]█▄ █ ▀█▀ [head=3]Cargo Request Form[/head]
-
- █ ▀█ █ Thank you for choosing Cargo[/color]
-
- ──────────────────────────────────────────
-
- This form is to place orders for items or resources you require. Please make sure to be detailed and specific.
-
-
- For multiple different orders please fill out multiple forms.
-
-
- Your Name: [color=#002AAF]Sample Person[/color]
- ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
- Your Order: [color=#002AAF]Sample Order[/color]
- ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
- Reason (please be detailed):
- [color=#002AAF]Sample Reason[/color]
-
-
-
- \[ ]Request delivery
-
- Destination (if applicable): [color=#002AAF]Sample Place[/color]
- ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
- [color=#aaaaaa]Delivery is not guaranteed as Cargo personnel are not required to deliver your cargo to you. If delivery service is refused you will be asked to pick up your items over radio.
-
- CRFs are handled in the order they are received.
-
- The Quartermaster holds the right to change Cargo Request policies at any time.
-
- If you are not satisfied with your Cargo service, please contact 1(800)-ASS-HOLE
- - type: Physics
- canCollide: False
- - uid: 2064
- components:
- - type: Transform
- parent: 1531
- - type: Paper
- content: >-
- [color=#b18644]█▄ █ ▀█▀ [head=3]Cargo Request Form[/head]
-
- █ ▀█ █ Thank you for choosing Cargo[/color]
-
- ──────────────────────────────────────────
-
- This form is to place orders for items or resources you require. Please make sure to be detailed and specific.
-
-
- For multiple different orders please fill out multiple forms.
-
-
- Your Name: [color=#002AAF]Sample Person[/color]
- ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
- Your Order: [color=#002AAF]Sample Order[/color]
- ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
- Reason (please be detailed):
- [color=#002AAF]Sample Reason[/color]
-
-
-
- \[ ]Request delivery
-
- Destination (if applicable): [color=#002AAF]Sample Place[/color]
- ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
- [color=#aaaaaa]Delivery is not guaranteed as Cargo personnel are not required to deliver your cargo to you. If delivery service is refused you will be asked to pick up your items over radio.
-
- CRFs are handled in the order they are received.
-
- The Quartermaster holds the right to change Cargo Request policies at any time.
-
- If you are not satisfied with your Cargo service, please contact 1(800)-ASS-HOLE
- - type: Physics
- canCollide: False
- - uid: 2187
- components:
- - type: Transform
- parent: 1531
- - type: Paper
- content: >-
- [color=#b18644]█▄ █ ▀█▀ [head=3]Cargo Request Form[/head]
-
- █ ▀█ █ Thank you for choosing Cargo[/color]
-
- ──────────────────────────────────────────
-
- This form is to place orders for items or resources you require. Please make sure to be detailed and specific.
-
-
- For multiple different orders please fill out multiple forms.
-
-
- Your Name: [color=#002AAF]Sample Person[/color]
- ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
- Your Order: [color=#002AAF]Sample Order[/color]
- ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
- Reason (please be detailed):
- [color=#002AAF]Sample Reason[/color]
-
-
-
- \[ ]Request delivery
-
- Destination (if applicable): [color=#002AAF]Sample Place[/color]
- ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
- [color=#aaaaaa]Delivery is not guaranteed as Cargo personnel are not required to deliver your cargo to you. If delivery service is refused you will be asked to pick up your items over radio.
-
- CRFs are handled in the order they are received.
-
- The Quartermaster holds the right to change Cargo Request policies at any time.
-
- If you are not satisfied with your Cargo service, please contact 1(800)-ASS-HOLE
- - type: Physics
- canCollide: False
- - uid: 2470
- components:
- - type: Transform
- parent: 1531
- - type: Paper
- content: >-
- [color=#b18644]█▄ █ ▀█▀ [head=3]Cargo Request Form[/head]
-
- █ ▀█ █ Thank you for choosing Cargo[/color]
-
- ──────────────────────────────────────────
-
- This form is to place orders for items or resources you require. Please make sure to be detailed and specific.
-
-
- For multiple different orders please fill out multiple forms.
-
-
- Your Name: [color=#002AAF]Sample Person[/color]
- ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
- Your Order: [color=#002AAF]Sample Order[/color]
- ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
- Reason (please be detailed):
- [color=#002AAF]Sample Reason[/color]
-
-
-
- \[ ]Request delivery
-
- Destination (if applicable): [color=#002AAF]Sample Place[/color]
- ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
- [color=#aaaaaa]Delivery is not guaranteed as Cargo personnel are not required to deliver your cargo to you. If delivery service is refused you will be asked to pick up your items over radio.
-
- CRFs are handled in the order they are received.
-
- The Quartermaster holds the right to change Cargo Request policies at any time.
-
- If you are not satisfied with your Cargo service, please contact 1(800)-ASS-HOLE
- - type: Physics
- canCollide: False
- - uid: 2999
- components:
- - type: Transform
- parent: 1531
- - type: Paper
- content: >-
- [color=#b18644]█▄ █ ▀█▀ [head=3]Cargo Request Form[/head]
-
- █ ▀█ █ Thank you for choosing Cargo[/color]
-
- ──────────────────────────────────────────
-
- This form is to place orders for items or resources you require. Please make sure to be detailed and specific.
-
-
- For multiple different orders please fill out multiple forms.
-
-
- Your Name: [color=#002AAF]Sample Person[/color]
- ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
- Your Order: [color=#002AAF]Sample Order[/color]
- ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
- Reason (please be detailed):
- [color=#002AAF]Sample Reason[/color]
-
-
-
- \[ ]Request delivery
-
- Destination (if applicable): [color=#002AAF]Sample Place[/color]
- ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
- [color=#aaaaaa]Delivery is not guaranteed as Cargo personnel are not required to deliver your cargo to you. If delivery service is refused you will be asked to pick up your items over radio.
-
- CRFs are handled in the order they are received.
-
- The Quartermaster holds the right to change Cargo Request policies at any time.
-
- If you are not satisfied with your Cargo service, please contact 1(800)-ASS-HOLE
- - type: Physics
- canCollide: False
- uid: 6607
components:
- type: MetaData
@@ -134002,432 +132035,6 @@ entities:
Just as Central Command Intended.
- type: Physics
canCollide: False
- - uid: 19853
- components:
- - type: Transform
- parent: 1531
- - type: Paper
- content: >-
- [color=#b18644]█▄ █ ▀█▀ [head=3]Cargo Request Form[/head]
-
- █ ▀█ █ Thank you for choosing Cargo[/color]
-
- ──────────────────────────────────────────
-
- This form is to place orders for items or resources you require. Please make sure to be detailed and specific.
-
-
- For multiple different orders please fill out multiple forms.
-
-
- Your Name: [color=#002AAF]Sample Person[/color]
- ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
- Your Order: [color=#002AAF]Sample Order[/color]
- ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
- Reason (please be detailed):
- [color=#002AAF]Sample Reason[/color]
-
-
-
- \[ ]Request delivery
-
- Destination (if applicable): [color=#002AAF]Sample Place[/color]
- ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
- [color=#aaaaaa]Delivery is not guaranteed as Cargo personnel are not required to deliver your cargo to you. If delivery service is refused you will be asked to pick up your items over radio.
-
- CRFs are handled in the order they are received.
-
- The Quartermaster holds the right to change Cargo Request policies at any time.
-
- If you are not satisfied with your Cargo service, please contact 1(800)-ASS-HOLE
- - type: Physics
- canCollide: False
- - uid: 19854
- components:
- - type: Transform
- parent: 1531
- - type: Paper
- content: >-
- [color=#b18644]█▄ █ ▀█▀ [head=3]Cargo Request Form[/head]
-
- █ ▀█ █ Thank you for choosing Cargo[/color]
-
- ──────────────────────────────────────────
-
- This form is to place orders for items or resources you require. Please make sure to be detailed and specific.
-
-
- For multiple different orders please fill out multiple forms.
-
-
- Your Name: [color=#002AAF]Sample Person[/color]
- ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
- Your Order: [color=#002AAF]Sample Order[/color]
- ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
- Reason (please be detailed):
- [color=#002AAF]Sample Reason[/color]
-
-
-
- \[ ]Request delivery
-
- Destination (if applicable): [color=#002AAF]Sample Place[/color]
- ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
- [color=#aaaaaa]Delivery is not guaranteed as Cargo personnel are not required to deliver your cargo to you. If delivery service is refused you will be asked to pick up your items over radio.
-
- CRFs are handled in the order they are received.
-
- The Quartermaster holds the right to change Cargo Request policies at any time.
-
- If you are not satisfied with your Cargo service, please contact 1(800)-ASS-HOLE
- - type: Physics
- canCollide: False
- - uid: 19855
- components:
- - type: Transform
- parent: 1531
- - type: Paper
- content: >-
- [color=#b18644]█▄ █ ▀█▀ [head=3]Cargo Request Form[/head]
-
- █ ▀█ █ Thank you for choosing Cargo[/color]
-
- ──────────────────────────────────────────
-
- This form is to place orders for items or resources you require. Please make sure to be detailed and specific.
-
-
- For multiple different orders please fill out multiple forms.
-
-
- Your Name: [color=#002AAF]Sample Person[/color]
- ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
- Your Order: [color=#002AAF]Sample Order[/color]
- ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
- Reason (please be detailed):
- [color=#002AAF]Sample Reason[/color]
-
-
-
- \[ ]Request delivery
-
- Destination (if applicable): [color=#002AAF]Sample Place[/color]
- ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
- [color=#aaaaaa]Delivery is not guaranteed as Cargo personnel are not required to deliver your cargo to you. If delivery service is refused you will be asked to pick up your items over radio.
-
- CRFs are handled in the order they are received.
-
- The Quartermaster holds the right to change Cargo Request policies at any time.
-
- If you are not satisfied with your Cargo service, please contact 1(800)-ASS-HOLE
- - type: Physics
- canCollide: False
- - uid: 19856
- components:
- - type: Transform
- parent: 1531
- - type: Paper
- content: >-
- [color=#b18644]█▄ █ ▀█▀ [head=3]Cargo Request Form[/head]
-
- █ ▀█ █ Thank you for choosing Cargo[/color]
-
- ──────────────────────────────────────────
-
- This form is to place orders for items or resources you require. Please make sure to be detailed and specific.
-
-
- For multiple different orders please fill out multiple forms.
-
-
- Your Name: [color=#002AAF]Sample Person[/color]
- ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
- Your Order: [color=#002AAF]Sample Order[/color]
- ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
- Reason (please be detailed):
- [color=#002AAF]Sample Reason[/color]
-
-
-
- \[ ]Request delivery
-
- Destination (if applicable): [color=#002AAF]Sample Place[/color]
- ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
- [color=#aaaaaa]Delivery is not guaranteed as Cargo personnel are not required to deliver your cargo to you. If delivery service is refused you will be asked to pick up your items over radio.
-
- CRFs are handled in the order they are received.
-
- The Quartermaster holds the right to change Cargo Request policies at any time.
-
- If you are not satisfied with your Cargo service, please contact 1(800)-ASS-HOLE
- - type: Physics
- canCollide: False
- - uid: 19857
- components:
- - type: Transform
- parent: 1531
- - type: Paper
- content: >-
- [color=#b18644]█▄ █ ▀█▀ [head=3]Cargo Request Form[/head]
-
- █ ▀█ █ Thank you for choosing Cargo[/color]
-
- ──────────────────────────────────────────
-
- This form is to place orders for items or resources you require. Please make sure to be detailed and specific.
-
-
- For multiple different orders please fill out multiple forms.
-
-
- Your Name: [color=#002AAF]Sample Person[/color]
- ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
- Your Order: [color=#002AAF]Sample Order[/color]
- ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
- Reason (please be detailed):
- [color=#002AAF]Sample Reason[/color]
-
-
-
- \[ ]Request delivery
-
- Destination (if applicable): [color=#002AAF]Sample Place[/color]
- ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
- [color=#aaaaaa]Delivery is not guaranteed as Cargo personnel are not required to deliver your cargo to you. If delivery service is refused you will be asked to pick up your items over radio.
-
- CRFs are handled in the order they are received.
-
- The Quartermaster holds the right to change Cargo Request policies at any time.
-
- If you are not satisfied with your Cargo service, please contact 1(800)-ASS-HOLE
- - type: Physics
- canCollide: False
- - uid: 19858
- components:
- - type: Transform
- parent: 1531
- - type: Paper
- content: >-
- [color=#b18644]█▄ █ ▀█▀ [head=3]Cargo Request Form[/head]
-
- █ ▀█ █ Thank you for choosing Cargo[/color]
-
- ──────────────────────────────────────────
-
- This form is to place orders for items or resources you require. Please make sure to be detailed and specific.
-
-
- For multiple different orders please fill out multiple forms.
-
-
- Your Name: [color=#002AAF]Sample Person[/color]
- ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
- Your Order: [color=#002AAF]Sample Order[/color]
- ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
- Reason (please be detailed):
- [color=#002AAF]Sample Reason[/color]
-
-
-
- \[ ]Request delivery
-
- Destination (if applicable): [color=#002AAF]Sample Place[/color]
- ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
- [color=#aaaaaa]Delivery is not guaranteed as Cargo personnel are not required to deliver your cargo to you. If delivery service is refused you will be asked to pick up your items over radio.
-
- CRFs are handled in the order they are received.
-
- The Quartermaster holds the right to change Cargo Request policies at any time.
-
- If you are not satisfied with your Cargo service, please contact 1(800)-ASS-HOLE
- - type: Physics
- canCollide: False
- - uid: 19859
- components:
- - type: Transform
- parent: 1531
- - type: Paper
- content: >-
- [color=#b18644]█▄ █ ▀█▀ [head=3]Cargo Request Form[/head]
-
- █ ▀█ █ Thank you for choosing Cargo[/color]
-
- ──────────────────────────────────────────
-
- This form is to place orders for items or resources you require. Please make sure to be detailed and specific.
-
-
- For multiple different orders please fill out multiple forms.
-
-
- Your Name: [color=#002AAF]Sample Person[/color]
- ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
- Your Order: [color=#002AAF]Sample Order[/color]
- ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
- Reason (please be detailed):
- [color=#002AAF]Sample Reason[/color]
-
-
-
- \[ ]Request delivery
-
- Destination (if applicable): [color=#002AAF]Sample Place[/color]
- ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
- [color=#aaaaaa]Delivery is not guaranteed as Cargo personnel are not required to deliver your cargo to you. If delivery service is refused you will be asked to pick up your items over radio.
-
- CRFs are handled in the order they are received.
-
- The Quartermaster holds the right to change Cargo Request policies at any time.
-
- If you are not satisfied with your Cargo service, please contact 1(800)-ASS-HOLE
- - type: Physics
- canCollide: False
- - uid: 19860
- components:
- - type: Transform
- parent: 1531
- - type: Paper
- content: >-
- [color=#b18644]█▄ █ ▀█▀ [head=3]Cargo Request Form[/head]
-
- █ ▀█ █ Thank you for choosing Cargo[/color]
-
- ──────────────────────────────────────────
-
- This form is to place orders for items or resources you require. Please make sure to be detailed and specific.
-
-
- For multiple different orders please fill out multiple forms.
-
-
- Your Name: [color=#002AAF]Sample Person[/color]
- ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
- Your Order: [color=#002AAF]Sample Order[/color]
- ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
- Reason (please be detailed):
- [color=#002AAF]Sample Reason[/color]
-
-
-
- \[ ]Request delivery
-
- Destination (if applicable): [color=#002AAF]Sample Place[/color]
- ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
- [color=#aaaaaa]Delivery is not guaranteed as Cargo personnel are not required to deliver your cargo to you. If delivery service is refused you will be asked to pick up your items over radio.
-
- CRFs are handled in the order they are received.
-
- The Quartermaster holds the right to change Cargo Request policies at any time.
-
- If you are not satisfied with your Cargo service, please contact 1(800)-ASS-HOLE
- - type: Physics
- canCollide: False
- - uid: 19861
- components:
- - type: Transform
- parent: 1531
- - type: Paper
- content: >-
- [color=#b18644]█▄ █ ▀█▀ [head=3]Cargo Request Form[/head]
-
- █ ▀█ █ Thank you for choosing Cargo[/color]
-
- ──────────────────────────────────────────
-
- This form is to place orders for items or resources you require. Please make sure to be detailed and specific.
-
-
- For multiple different orders please fill out multiple forms.
-
-
- Your Name: [color=#002AAF]Sample Person[/color]
- ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
- Your Order: [color=#002AAF]Sample Order[/color]
- ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
- Reason (please be detailed):
- [color=#002AAF]Sample Reason[/color]
-
-
-
- \[ ]Request delivery
-
- Destination (if applicable): [color=#002AAF]Sample Place[/color]
- ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
- [color=#aaaaaa]Delivery is not guaranteed as Cargo personnel are not required to deliver your cargo to you. If delivery service is refused you will be asked to pick up your items over radio.
-
- CRFs are handled in the order they are received.
-
- The Quartermaster holds the right to change Cargo Request policies at any time.
-
- If you are not satisfied with your Cargo service, please contact 1(800)-ASS-HOLE
- - type: Physics
- canCollide: False
- - uid: 19862
- components:
- - type: Transform
- parent: 1531
- - type: Paper
- content: >-
- [color=#b18644]█▄ █ ▀█▀ [head=3]Cargo Request Form[/head]
-
- █ ▀█ █ Thank you for choosing Cargo[/color]
-
- ──────────────────────────────────────────
-
- This form is to place orders for items or resources you require. Please make sure to be detailed and specific.
-
-
- For multiple different orders please fill out multiple forms.
-
-
- Your Name: [color=#002AAF]Sample Person[/color]
- ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
- Your Order: [color=#002AAF]Sample Order[/color]
- ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
- Reason (please be detailed):
- [color=#002AAF]Sample Reason[/color]
-
-
-
- \[ ]Request delivery
-
- Destination (if applicable): [color=#002AAF]Sample Place[/color]
- ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
- [color=#aaaaaa]Delivery is not guaranteed as Cargo personnel are not required to deliver your cargo to you. If delivery service is refused you will be asked to pick up your items over radio.
-
- CRFs are handled in the order they are received.
-
- The Quartermaster holds the right to change Cargo Request policies at any time.
-
- If you are not satisfied with your Cargo service, please contact 1(800)-ASS-HOLE
- - type: Physics
- canCollide: False
- - uid: 28641
- components:
- - type: Transform
- pos: 76.359085,8.601143
- parent: 5350
- - type: Paper
- content: >-
- I don't know if you're trained already, so I hope this'll help.
-
- AME controller needs LV power and an HV wire to output to. Check the area with a crowbar if you aren't sure.
-
- There should be an empty room next to where you found this, that room's wired for the AME.
-
- You can put an AME anywhere if you can get the wires to it, though.
-
- 3x3 grid of AME parts, multitool them to unpack. Be careful not to 'trap' anything.
-
- AME controller adjacent horizontally or vertically (not diagonally) to any point.
-
- With only 1 core (what a 3x3 grid will get you), don't turn it up above 2.
-
- The golden rule is 2 injection for every 1 core. You can go lower to save fuel.
-
- Higher will burn the engine out and eventually make it explode. Don't.
-
- Don't forget to refuel it, it tends to stop at the worst possible time.
- proto: PaperRolling
entities:
- uid: 17306
@@ -134543,7 +132150,7 @@ entities:
- uid: 3940
components:
- type: Transform
- pos: -24.633858,8.729532
+ pos: -27.259901,8.772635
parent: 5350
- uid: 7549
components:
@@ -134675,36 +132282,31 @@ entities:
parent: 5350
- proto: PlasmaCanister
entities:
- - uid: 11166
+ - uid: 9183
components:
- type: Transform
- pos: 69.5,-14.5
+ pos: 46.5,20.5
parent: 5350
- - uid: 12022
+ - uid: 9184
components:
- type: Transform
- pos: 70.5,-25.5
+ pos: 47.5,20.5
parent: 5350
- - uid: 19410
+ - uid: 11166
components:
- type: Transform
- pos: 20.5,-45.5
+ pos: 69.5,-14.5
parent: 5350
- - uid: 19910
+ - uid: 19410
components:
- type: Transform
- pos: 43.5,25.5
+ pos: 20.5,-45.5
parent: 5350
- uid: 27089
components:
- type: Transform
pos: 76.5,-35.5
parent: 5350
- - uid: 28643
- components:
- - type: Transform
- pos: 42.5,25.5
- parent: 5350
- proto: PlasmaWindoorSecureScienceLocked
entities:
- uid: 6532
@@ -135090,6 +132692,16 @@ entities:
parent: 5350
- proto: PortableGeneratorPacman
entities:
+ - uid: 8087
+ components:
+ - type: Transform
+ pos: 46.5,25.5
+ parent: 5350
+ - uid: 8232
+ components:
+ - type: Transform
+ pos: 46.5,26.5
+ parent: 5350
- uid: 11183
components:
- type: Transform
@@ -135110,17 +132722,17 @@ entities:
- type: Transform
pos: -37.5,-49.5
parent: 5350
- - uid: 23384
+- proto: PortableGeneratorSuperPacman
+ entities:
+ - uid: 8003
components:
- type: Transform
- pos: 43.5,21.5
+ pos: 47.5,26.5
parent: 5350
-- proto: PortableGeneratorSuperPacman
- entities:
- - uid: 23753
+ - uid: 8086
components:
- type: Transform
- pos: 42.5,21.5
+ pos: 47.5,25.5
parent: 5350
- proto: PortableScrubber
entities:
@@ -136053,6 +133665,11 @@ entities:
parent: 5350
- proto: PowerCellRecharger
entities:
+ - uid: 1534
+ components:
+ - type: Transform
+ pos: -16.5,-12.5
+ parent: 5350
- uid: 2039
components:
- type: Transform
@@ -136230,12 +133847,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 39.5,22.5
parent: 5350
- - uid: 23735
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-66.5
- parent: 5350
- uid: 24131
components:
- type: Transform
@@ -136254,24 +133865,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -49.5,-37.5
parent: 5350
- - uid: 26986
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 73.5,-25.5
- parent: 5350
- uid: 28100
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 75.5,-30.5
parent: 5350
- - uid: 28101
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 69.5,-27.5
- parent: 5350
- proto: Poweredlight
entities:
- uid: 373
@@ -136322,11 +133921,6 @@ entities:
parent: 5350
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 1189
- components:
- - type: Transform
- pos: -20.5,24.5
- parent: 5350
- uid: 1315
components:
- type: Transform
@@ -136410,11 +134004,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -31.5,-30.5
parent: 5350
- - uid: 1526
- components:
- - type: Transform
- pos: 71.5,8.5
- parent: 5350
- uid: 2102
components:
- type: Transform
@@ -136929,6 +134518,11 @@ entities:
- type: Transform
pos: 7.5,21.5
parent: 5350
+ - uid: 8253
+ components:
+ - type: Transform
+ pos: -21.5,24.5
+ parent: 5350
- uid: 8483
components:
- type: Transform
@@ -137183,6 +134777,11 @@ entities:
rot: 3.141592653589793 rad
pos: 0.5,-59.5
parent: 5350
+ - uid: 11665
+ components:
+ - type: Transform
+ pos: -6.5,40.5
+ parent: 5350
- uid: 11728
components:
- type: Transform
@@ -138367,6 +135966,12 @@ entities:
rot: 3.141592653589793 rad
pos: 60.5,7.5
parent: 5350
+ - uid: 23534
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,5.5
+ parent: 5350
- uid: 23535
components:
- type: Transform
@@ -138390,6 +135995,11 @@ entities:
rot: -1.5707963267948966 rad
pos: 53.5,18.5
parent: 5350
+ - uid: 23544
+ components:
+ - type: Transform
+ pos: 45.5,18.5
+ parent: 5350
- uid: 23545
components:
- type: Transform
@@ -138414,6 +136024,11 @@ entities:
rot: -1.5707963267948966 rad
pos: 55.5,0.5
parent: 5350
+ - uid: 23816
+ components:
+ - type: Transform
+ pos: 52.5,5.5
+ parent: 5350
- uid: 23818
components:
- type: Transform
@@ -138658,64 +136273,19 @@ entities:
rot: 3.141592653589793 rad
pos: 76.5,-27.5
parent: 5350
- - uid: 28252
- components:
- - type: Transform
- pos: -6.5,40.5
- parent: 5350
- uid: 28296
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 5.5,-59.5
parent: 5350
- - uid: 28379
- components:
- - type: Transform
- pos: 47.5,19.5
- parent: 5350
- - uid: 28404
- components:
- - type: Transform
- pos: 51.5,5.5
- parent: 5350
- proto: PoweredlightExterior
entities:
- - uid: 6527
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 13.5,49.5
- parent: 5350
- - uid: 7537
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,69.5
- parent: 5350
- - uid: 10668
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,63.5
- parent: 5350
- - uid: 10975
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,63.5
- parent: 5350
- uid: 11238
components:
- type: Transform
pos: 76.5,-43.5
parent: 5350
- - uid: 14074
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -25.5,50.5
- parent: 5350
- uid: 23141
components:
- type: Transform
@@ -139106,12 +136676,6 @@ entities:
parent: 5350
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 6690
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 47.5,25.5
- parent: 5350
- uid: 6819
components:
- type: Transform
@@ -139124,12 +136688,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -12.5,28.5
parent: 5350
- - uid: 7046
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 44.5,21.5
- parent: 5350
- uid: 7063
components:
- type: Transform
@@ -139289,6 +136847,12 @@ entities:
parent: 5350
- type: ApcPowerReceiver
powerLoad: 0
+ - uid: 11600
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 47.5,25.5
+ parent: 5350
- uid: 11618
components:
- type: Transform
@@ -140012,6 +137576,12 @@ entities:
- type: Transform
pos: 51.5,9.5
parent: 5350
+ - uid: 23539
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,21.5
+ parent: 5350
- uid: 23543
components:
- type: Transform
@@ -140023,12 +137593,6 @@ entities:
rot: 3.141592653589793 rad
pos: 58.5,18.5
parent: 5350
- - uid: 23572
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 42.5,25.5
- parent: 5350
- uid: 23573
components:
- type: Transform
@@ -140193,6 +137757,12 @@ entities:
parent: 5350
- type: ApcPowerReceiver
powerLoad: 0
+ - uid: 26986
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,-27.5
+ parent: 5350
- uid: 27125
components:
- type: Transform
@@ -140222,6 +137792,12 @@ entities:
- type: Transform
pos: 69.5,-23.5
parent: 5350
+ - uid: 28101
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 73.5,-25.5
+ parent: 5350
- uid: 28129
components:
- type: Transform
@@ -140251,12 +137827,6 @@ entities:
- type: Transform
pos: 6.5,-55.5
parent: 5350
- - uid: 28375
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 44.5,18.5
- parent: 5350
- proto: PrefilledSyringe
entities:
- uid: 19343
@@ -140414,11 +137984,26 @@ entities:
- type: Transform
pos: 32.5,8.5
parent: 5350
+ - uid: 9191
+ components:
+ - type: Transform
+ pos: -5.5,36.5
+ parent: 5350
+ - uid: 9192
+ components:
+ - type: Transform
+ pos: -5.5,37.5
+ parent: 5350
- uid: 9485
components:
- type: Transform
pos: -30.5,30.5
parent: 5350
+ - uid: 10416
+ components:
+ - type: Transform
+ pos: 18.5,-61.5
+ parent: 5350
- uid: 10479
components:
- type: Transform
@@ -140429,11 +138014,6 @@ entities:
- type: Transform
pos: 11.5,17.5
parent: 5350
- - uid: 10832
- components:
- - type: Transform
- pos: 71.5,-25.5
- parent: 5350
- uid: 13092
components:
- type: Transform
@@ -140692,18 +138272,6 @@ entities:
- type: Transform
pos: -57.5,-15.5
parent: 5350
- - uid: 23031
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,37.5
- parent: 5350
- - uid: 23043
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,36.5
- parent: 5350
- uid: 23045
components:
- type: Transform
@@ -140714,6 +138282,12 @@ entities:
- type: Transform
pos: -37.5,-51.5
parent: 5350
+ - uid: 23809
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 73.5,8.5
+ parent: 5350
- uid: 24078
components:
- type: Transform
@@ -141875,11 +139449,6 @@ entities:
rot: 3.141592653589793 rad
pos: 69.35516,-31.5
parent: 5350
- - uid: 28391
- components:
- - type: Transform
- pos: 53.404488,13.638708
- parent: 5350
- proto: ReagentContainerFlour
entities:
- uid: 2240
@@ -142046,6 +139615,7 @@ entities:
- uid: 15114
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: 48.5,-30.5
parent: 5350
- uid: 16539
@@ -142145,6 +139715,11 @@ entities:
parent: 5350
- proto: ReinforcedWindow
entities:
+ - uid: 239
+ components:
+ - type: Transform
+ pos: 71.5,-28.5
+ parent: 5350
- uid: 691
components:
- type: Transform
@@ -143715,6 +141290,26 @@ entities:
- type: Transform
pos: 40.5,49.5
parent: 5350
+ - uid: 8598
+ components:
+ - type: Transform
+ pos: 39.5,45.5
+ parent: 5350
+ - uid: 8599
+ components:
+ - type: Transform
+ pos: 40.5,45.5
+ parent: 5350
+ - uid: 8600
+ components:
+ - type: Transform
+ pos: 41.5,46.5
+ parent: 5350
+ - uid: 8601
+ components:
+ - type: Transform
+ pos: 41.5,48.5
+ parent: 5350
- uid: 8616
components:
- type: Transform
@@ -143905,6 +141500,11 @@ entities:
- type: Transform
pos: -30.5,45.5
parent: 5350
+ - uid: 9407
+ components:
+ - type: Transform
+ pos: 59.5,17.5
+ parent: 5350
- uid: 9408
components:
- type: Transform
@@ -144100,6 +141700,11 @@ entities:
- type: Transform
pos: 60.5,-25.5
parent: 5350
+ - uid: 11753
+ components:
+ - type: Transform
+ pos: 70.5,-28.5
+ parent: 5350
- uid: 12131
components:
- type: Transform
@@ -144150,6 +141755,11 @@ entities:
- type: Transform
pos: 60.5,23.5
parent: 5350
+ - uid: 12354
+ components:
+ - type: Transform
+ pos: 59.5,23.5
+ parent: 5350
- uid: 12355
components:
- type: Transform
@@ -144463,6 +142073,7 @@ entities:
- uid: 14560
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -0.5,-53.5
parent: 5350
- uid: 14620
@@ -144628,6 +142239,7 @@ entities:
- uid: 16512
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -0.5,-51.5
parent: 5350
- uid: 16526
@@ -144670,6 +142282,21 @@ entities:
- type: Transform
pos: -58.5,-33.5
parent: 5350
+ - uid: 16675
+ components:
+ - type: Transform
+ pos: -45.5,-42.5
+ parent: 5350
+ - uid: 16676
+ components:
+ - type: Transform
+ pos: -46.5,-42.5
+ parent: 5350
+ - uid: 16677
+ components:
+ - type: Transform
+ pos: -47.5,-42.5
+ parent: 5350
- uid: 16885
components:
- type: Transform
@@ -145080,6 +142707,11 @@ entities:
- type: Transform
pos: 37.5,-62.5
parent: 5350
+ - uid: 19825
+ components:
+ - type: Transform
+ pos: 16.5,-62.5
+ parent: 5350
- uid: 20248
components:
- type: Transform
@@ -145125,10 +142757,10 @@ entities:
- type: Transform
pos: -42.5,40.5
parent: 5350
- - uid: 21477
+ - uid: 20933
components:
- type: Transform
- pos: 41.5,48.5
+ pos: 18.5,-62.5
parent: 5350
- uid: 21655
components:
@@ -145163,6 +142795,7 @@ entities:
- uid: 22674
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -0.5,-49.5
parent: 5350
- uid: 22693
@@ -145210,16 +142843,6 @@ entities:
- type: Transform
pos: -65.5,9.5
parent: 5350
- - uid: 23568
- components:
- - type: Transform
- pos: 55.5,6.5
- parent: 5350
- - uid: 23571
- components:
- - type: Transform
- pos: 45.5,19.5
- parent: 5350
- uid: 23591
components:
- type: Transform
@@ -145230,17 +142853,6 @@ entities:
- type: Transform
pos: -68.5,9.5
parent: 5350
- - uid: 23636
- components:
- - type: Transform
- pos: 41.5,46.5
- parent: 5350
- - uid: 23719
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,-58.5
- parent: 5350
- uid: 23810
components:
- type: Transform
@@ -145391,21 +143003,10 @@ entities:
- type: Transform
pos: -66.5,9.5
parent: 5350
- - uid: 28410
- components:
- - type: Transform
- pos: 54.5,6.5
- parent: 5350
- - uid: 28411
- components:
- - type: Transform
- pos: 53.5,6.5
- parent: 5350
- - uid: 28502
+ - uid: 27995
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,-58.5
+ pos: 72.5,-28.5
parent: 5350
- proto: RemoteSignaller
entities:
@@ -145414,12 +143015,6 @@ entities:
- type: Transform
pos: 45.32724,-24.4376
parent: 5350
- - uid: 28429
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 73.001884,-31.488335
- parent: 5350
- proto: ResearchAndDevelopmentServer
entities:
- uid: 16515
@@ -145436,69 +143031,69 @@ entities:
parent: 5350
- proto: RiotBulletShield
entities:
- - uid: 28468
+ - uid: 1189
components:
- type: Transform
- pos: -9.773878,38.72186
+ pos: -9.815562,38.776684
parent: 5350
- - uid: 28469
+ - uid: 21407
components:
- type: Transform
- pos: -9.773878,38.607277
+ pos: -9.825979,38.651684
parent: 5350
- - uid: 28470
+ - uid: 22612
components:
- type: Transform
- pos: -9.784295,38.513527
+ pos: -9.815562,38.516266
parent: 5350
- - uid: 28471
+ - uid: 23633
components:
- type: Transform
- pos: -9.784295,38.451027
+ pos: -9.825979,38.391266
parent: 5350
- proto: RiotLaserShield
entities:
- - uid: 28472
+ - uid: 15205
components:
- type: Transform
- pos: -9.294712,38.72186
+ pos: -9.409312,38.5371
parent: 5350
- - uid: 28473
+ - uid: 23632
components:
- type: Transform
- pos: -9.294712,38.607277
+ pos: -9.409312,38.75585
parent: 5350
- - uid: 28474
+ - uid: 23639
components:
- type: Transform
- pos: -9.294712,38.50311
+ pos: -9.409312,38.641266
parent: 5350
- - uid: 28475
+ - uid: 23640
components:
- type: Transform
- pos: -9.294712,38.430195
+ pos: -9.409312,38.4121
parent: 5350
- proto: RiotShield
entities:
- - uid: 28460
+ - uid: 9193
components:
- type: Transform
- pos: -9.503045,38.763527
+ pos: -9.586395,38.516266
parent: 5350
- - uid: 28461
+ - uid: 9203
components:
- type: Transform
- pos: -9.503045,38.669777
+ pos: -9.575979,38.610016
parent: 5350
- - uid: 28466
+ - uid: 23637
components:
- type: Transform
- pos: -9.503045,38.586445
+ pos: -9.565562,38.7246
parent: 5350
- - uid: 28467
+ - uid: 23655
components:
- type: Transform
- pos: -9.503045,38.47186
+ pos: -9.586395,38.4121
parent: 5350
- proto: RobocopCircuitBoard
entities:
@@ -145814,6 +143409,13 @@ entities:
parent: 5350
- proto: SheetPlasma
entities:
+ - uid: 9204
+ components:
+ - type: Transform
+ parent: 23089
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- uid: 16621
components:
- type: Transform
@@ -145830,13 +143432,6 @@ entities:
- type: Transform
pos: 108.52579,-0.4873736
parent: 5350
- - uid: 26783
- components:
- - type: Transform
- parent: 26688
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- proto: SheetPlasma10
entities:
- uid: 15333
@@ -145933,25 +143528,15 @@ entities:
- type: Transform
pos: 42.547264,-3.4866009
parent: 5350
- - uid: 9122
- components:
- - type: Transform
- pos: 71.40013,-25.606089
- parent: 5350
- - uid: 11446
- components:
- - type: Transform
- pos: 71.68138,-25.465464
- parent: 5350
- uid: 14506
components:
- type: Transform
pos: 42.50872,-3.4762616
parent: 5350
- - uid: 23409
+ - uid: 23031
components:
- type: Transform
- pos: -5.469453,38.61524
+ pos: -5.477169,38.5245
parent: 5350
- uid: 23886
components:
@@ -146021,10 +143606,10 @@ entities:
parent: 5350
- proto: SheetUranium
entities:
- - uid: 26784
+ - uid: 23889
components:
- type: Transform
- parent: 26688
+ parent: 23089
- type: Physics
canCollide: False
- type: InsideEntityStorage
@@ -146116,6 +143701,16 @@ entities:
- type: Transform
pos: -32.5,28.5
parent: 5350
+ - uid: 4161
+ components:
+ - type: Transform
+ pos: 17.5,-58.5
+ parent: 5350
+ - uid: 6818
+ components:
+ - type: Transform
+ pos: 18.5,-58.5
+ parent: 5350
- uid: 7323
components:
- type: Transform
@@ -146126,6 +143721,18 @@ entities:
- type: Transform
pos: -46.5,-35.5
parent: 5350
+ - uid: 11952
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-35.5
+ parent: 5350
+ - uid: 12541
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-33.5
+ parent: 5350
- uid: 14414
components:
- type: Transform
@@ -146136,6 +143743,11 @@ entities:
- type: Transform
pos: -18.5,5.5
parent: 5350
+ - uid: 15903
+ components:
+ - type: Transform
+ pos: 16.5,-58.5
+ parent: 5350
- uid: 16181
components:
- type: Transform
@@ -146186,18 +143798,6 @@ entities:
- type: Transform
pos: -47.5,-32.5
parent: 5350
- - uid: 23655
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-35.5
- parent: 5350
- - uid: 23712
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-33.5
- parent: 5350
- proto: ShuttersNormalOpen
entities:
- uid: 2415
@@ -146496,7 +144096,7 @@ entities:
parent: 5350
- proto: ShuttersWindow
entities:
- - uid: 23720
+ - uid: 20051
components:
- type: Transform
rot: 1.5707963267948966 rad
@@ -146504,18 +144104,18 @@ entities:
parent: 5350
- proto: ShuttleConsoleCircuitboard
entities:
- - uid: 28205
- components:
- - type: Transform
- pos: -43.58703,33.41721
- parent: 5350
- - uid: 28640
+ - uid: 26688
components:
- type: Transform
- parent: 28639
+ parent: 24070
- type: Physics
canCollide: False
- type: InsideEntityStorage
+ - uid: 28205
+ components:
+ - type: Transform
+ pos: -43.58703,33.41721
+ parent: 5350
- proto: SignAi
entities:
- uid: 9089
@@ -146719,33 +144319,6 @@ entities:
linkedPorts:
17275:
- Pressed: DoorBolt
- - uid: 11158
- components:
- - type: Transform
- pos: 73.5,-28.5
- parent: 5350
- - type: DeviceLinkSource
- linkedPorts:
- 12418:
- - Pressed: Toggle
- 9188:
- - Pressed: Toggle
- 9185:
- - Pressed: Toggle
- - uid: 11160
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 73.5,-28.5
- parent: 5350
- - type: DeviceLinkSource
- linkedPorts:
- 12418:
- - Pressed: Toggle
- 9188:
- - Pressed: Toggle
- 9185:
- - Pressed: Toggle
- uid: 11423
components:
- type: MetaData
@@ -146820,6 +144393,24 @@ entities:
- Pressed: DoorBolt
- proto: SignalSwitch
entities:
+ - uid: 2566
+ components:
+ - type: MetaData
+ name: Blast Doors
+ - type: Transform
+ pos: 48.5,24.5
+ parent: 5350
+ - type: DeviceLinkSource
+ linkedPorts:
+ 23567:
+ - On: Open
+ - Off: Close
+ 23566:
+ - On: Open
+ - Off: Close
+ 23565:
+ - On: Open
+ - Off: Close
- uid: 15949
components:
- type: MetaData
@@ -147182,6 +144773,25 @@ entities:
9630:
- On: Open
- Off: Close
+ - uid: 7797
+ components:
+ - type: MetaData
+ name: Pod Shutters
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,-58.5
+ parent: 5350
+ - type: DeviceLinkSource
+ linkedPorts:
+ 6818:
+ - On: Open
+ - Off: Close
+ 4161:
+ - On: Open
+ - Off: Close
+ 15903:
+ - On: Open
+ - Off: Close
- uid: 9373
components:
- type: MetaData
@@ -147325,6 +144935,25 @@ entities:
13781:
- On: Open
- Off: Close
+ - uid: 14901
+ components:
+ - type: MetaData
+ name: Pod Shutters
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 15.5,-59.5
+ parent: 5350
+ - type: DeviceLinkSource
+ linkedPorts:
+ 15903:
+ - On: Open
+ - Off: Close
+ 4161:
+ - On: Open
+ - Off: Close
+ 6818:
+ - On: Open
+ - Off: Close
- uid: 17321
components:
- type: MetaData
@@ -148197,16 +145826,16 @@ entities:
- type: Transform
pos: -63.5,-14.5
parent: 5350
- - uid: 5096
+ - uid: 5329
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,-58.5
+ pos: 38.5,45.5
parent: 5350
- - uid: 16673
+ - uid: 20776
components:
- type: Transform
- pos: 38.5,46.5
+ rot: -1.5707963267948966 rad
+ pos: 15.5,-58.5
parent: 5350
- proto: SignEVA
entities:
@@ -148456,6 +146085,11 @@ entities:
- type: Transform
pos: 55.5,34.5
parent: 5350
+ - uid: 14064
+ components:
+ - type: Transform
+ pos: 56.5,42.5
+ parent: 5350
- uid: 23546
components:
- type: Transform
@@ -148468,6 +146102,11 @@ entities:
rot: 3.141592653589793 rad
pos: 51.5,10.5
parent: 5350
+ - uid: 23780
+ components:
+ - type: Transform
+ pos: 79.5,21.5
+ parent: 5350
- uid: 23781
components:
- type: Transform
@@ -148486,24 +146125,7 @@ entities:
- uid: 23784
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 75.5,31.5
- parent: 5350
- - uid: 28201
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 80.5,21.5
- parent: 5350
- - uid: 28435
- components:
- - type: Transform
- pos: 61.5,10.5
- parent: 5350
- - uid: 28436
- components:
- - type: Transform
- pos: 65.5,10.5
+ pos: 74.5,31.5
parent: 5350
- proto: SignRedOne
entities:
@@ -148603,6 +146225,18 @@ entities:
- type: Transform
pos: -0.5,-23.5
parent: 5350
+- proto: SignSecurearea
+ entities:
+ - uid: 3760
+ components:
+ - type: Transform
+ pos: 1.5,-6.5
+ parent: 5350
+ - uid: 3763
+ components:
+ - type: Transform
+ pos: -6.5,-6.5
+ parent: 5350
- proto: SignSecureMed
entities:
- uid: 1958
@@ -148640,16 +146274,6 @@ entities:
- type: Transform
pos: 73.5,34.5
parent: 5350
- - uid: 19942
- components:
- - type: Transform
- pos: 1.5,-6.5
- parent: 5350
- - uid: 19943
- components:
- - type: Transform
- pos: -6.5,-6.5
- parent: 5350
- uid: 26809
components:
- type: Transform
@@ -148699,14 +146323,6 @@ entities:
- type: Transform
pos: 29.5,-37.5
parent: 5350
-- proto: SignShipDock
- entities:
- - uid: 28508
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -40.5,-45.5
- parent: 5350
- proto: SignSmoking
entities:
- uid: 11369
@@ -148833,12 +146449,6 @@ entities:
- type: Transform
pos: 75.5,-40.5
parent: 5350
- - uid: 28434
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 66.5,6.5
- parent: 5350
- proto: SignSurgery
entities:
- uid: 13245
@@ -148887,14 +146497,11 @@ entities:
parent: 5350
- proto: SingularityGenerator
entities:
- - uid: 23407
+ - uid: 9376
components:
- type: Transform
- anchored: False
- pos: 44.5,21.5
+ pos: 44.5,20.5
parent: 5350
- - type: Physics
- bodyType: Dynamic
- proto: Sink
entities:
- uid: 1030
@@ -149062,13 +146669,12 @@ entities:
parent: 5350
- proto: Sledgehammer
entities:
- - uid: 17039
+ - uid: 9632
components:
- type: MetaData
- desc: The legendary weapon of robotics.
- name: Borgmaker
+ name: Gavel
- type: Transform
- parent: 19208
+ parent: 9631
- type: Physics
canCollide: False
- type: InsideEntityStorage
@@ -149096,23 +146702,23 @@ entities:
- type: Transform
pos: 43.5,18.5
parent: 5350
- - uid: 28359
+ - uid: 28002
components:
- type: Transform
- pos: 43.5,15.5
+ pos: 70.5,-26.5
parent: 5350
- - uid: 28360
+ - uid: 28003
components:
- type: Transform
- pos: 43.5,14.5
+ pos: 71.5,-26.5
parent: 5350
-- proto: SMESBasic
- entities:
- - uid: 9187
+ - uid: 28004
components:
- type: Transform
- pos: 73.5,-25.5
+ pos: 72.5,-26.5
parent: 5350
+- proto: SMESBasic
+ entities:
- uid: 9518
components:
- type: MetaData
@@ -149139,22 +146745,6 @@ entities:
- type: Transform
pos: 57.5,34.5
parent: 5350
- - uid: 15903
- components:
- - type: Transform
- anchored: False
- pos: 42.5,26.5
- parent: 5350
- - type: Physics
- bodyType: Dynamic
- - uid: 16464
- components:
- - type: Transform
- anchored: False
- pos: 43.5,26.5
- parent: 5350
- - type: Physics
- bodyType: Dynamic
- uid: 17169
components:
- type: MetaData
@@ -149244,31 +146834,6 @@ entities:
parent: 5350
- proto: SolarPanel
entities:
- - uid: 1521
- components:
- - type: Transform
- pos: 67.5,52.5
- parent: 5350
- - uid: 6519
- components:
- - type: Transform
- pos: -50.5,-64.5
- parent: 5350
- - uid: 6529
- components:
- - type: Transform
- pos: -50.5,-61.5
- parent: 5350
- - uid: 7722
- components:
- - type: Transform
- pos: -46.5,-60.5
- parent: 5350
- - uid: 7765
- components:
- - type: Transform
- pos: -48.5,-59.5
- parent: 5350
- uid: 7962
components:
- type: Transform
@@ -149279,11 +146844,6 @@ entities:
- type: Transform
pos: -26.5,54.5
parent: 5350
- - uid: 8086
- components:
- - type: Transform
- pos: -48.5,-61.5
- parent: 5350
- uid: 8163
components:
- type: Transform
@@ -149304,16 +146864,6 @@ entities:
- type: Transform
pos: -27.5,54.5
parent: 5350
- - uid: 9407
- components:
- - type: Transform
- pos: -46.5,-61.5
- parent: 5350
- - uid: 9632
- components:
- - type: Transform
- pos: -44.5,-59.5
- parent: 5350
- uid: 10172
components:
- type: Transform
@@ -149764,131 +147314,6 @@ entities:
- type: Transform
pos: -34.5,64.5
parent: 5350
- - uid: 12306
- components:
- - type: Transform
- pos: -46.5,-64.5
- parent: 5350
- - uid: 12410
- components:
- - type: Transform
- pos: 73.5,52.5
- parent: 5350
- - uid: 13782
- components:
- - type: Transform
- pos: -44.5,-62.5
- parent: 5350
- - uid: 16636
- components:
- - type: Transform
- pos: 67.5,49.5
- parent: 5350
- - uid: 16676
- components:
- - type: Transform
- pos: 73.5,49.5
- parent: 5350
- - uid: 16747
- components:
- - type: Transform
- pos: 73.5,47.5
- parent: 5350
- - uid: 16748
- components:
- - type: Transform
- pos: 73.5,50.5
- parent: 5350
- - uid: 16939
- components:
- - type: Transform
- pos: 33.5,-67.5
- parent: 5350
- - uid: 16940
- components:
- - type: Transform
- pos: 33.5,-75.5
- parent: 5350
- - uid: 16941
- components:
- - type: Transform
- pos: 32.5,-77.5
- parent: 5350
- - uid: 16942
- components:
- - type: Transform
- pos: 32.5,-69.5
- parent: 5350
- - uid: 16945
- components:
- - type: Transform
- pos: 43.5,-73.5
- parent: 5350
- - uid: 16947
- components:
- - type: Transform
- pos: 32.5,-73.5
- parent: 5350
- - uid: 16948
- components:
- - type: Transform
- pos: 33.5,-71.5
- parent: 5350
- - uid: 16949
- components:
- - type: Transform
- pos: 44.5,-71.5
- parent: 5350
- - uid: 16950
- components:
- - type: Transform
- pos: 43.5,-77.5
- parent: 5350
- - uid: 16951
- components:
- - type: Transform
- pos: 43.5,-75.5
- parent: 5350
- - uid: 16972
- components:
- - type: Transform
- pos: -48.5,-64.5
- parent: 5350
- - uid: 16980
- components:
- - type: Transform
- pos: -44.5,-64.5
- parent: 5350
- - uid: 17017
- components:
- - type: Transform
- pos: 43.5,-71.5
- parent: 5350
- - uid: 17019
- components:
- - type: Transform
- pos: 44.5,-77.5
- parent: 5350
- - uid: 17021
- components:
- - type: Transform
- pos: 32.5,-71.5
- parent: 5350
- - uid: 17022
- components:
- - type: Transform
- pos: 33.5,-69.5
- parent: 5350
- - uid: 17023
- components:
- - type: Transform
- pos: 33.5,-77.5
- parent: 5350
- - uid: 17024
- components:
- - type: Transform
- pos: 32.5,-75.5
- parent: 5350
- uid: 17044
components:
- type: Transform
@@ -149919,6 +147344,16 @@ entities:
- type: Transform
pos: -58.5,-65.5
parent: 5350
+ - uid: 17051
+ components:
+ - type: Transform
+ pos: -58.5,-64.5
+ parent: 5350
+ - uid: 17052
+ components:
+ - type: Transform
+ pos: -57.5,-71.5
+ parent: 5350
- uid: 17053
components:
- type: Transform
@@ -149949,6 +147384,71 @@ entities:
- type: Transform
pos: -56.5,-65.5
parent: 5350
+ - uid: 17059
+ components:
+ - type: Transform
+ pos: -56.5,-64.5
+ parent: 5350
+ - uid: 17060
+ components:
+ - type: Transform
+ pos: -58.5,-62.5
+ parent: 5350
+ - uid: 17061
+ components:
+ - type: Transform
+ pos: -57.5,-61.5
+ parent: 5350
+ - uid: 17062
+ components:
+ - type: Transform
+ pos: -56.5,-62.5
+ parent: 5350
+ - uid: 17063
+ components:
+ - type: Transform
+ pos: -54.5,-62.5
+ parent: 5350
+ - uid: 17064
+ components:
+ - type: Transform
+ pos: -53.5,-61.5
+ parent: 5350
+ - uid: 17065
+ components:
+ - type: Transform
+ pos: -52.5,-62.5
+ parent: 5350
+ - uid: 17066
+ components:
+ - type: Transform
+ pos: -50.5,-62.5
+ parent: 5350
+ - uid: 17067
+ components:
+ - type: Transform
+ pos: -49.5,-61.5
+ parent: 5350
+ - uid: 17068
+ components:
+ - type: Transform
+ pos: -48.5,-62.5
+ parent: 5350
+ - uid: 17069
+ components:
+ - type: Transform
+ pos: -46.5,-62.5
+ parent: 5350
+ - uid: 17070
+ components:
+ - type: Transform
+ pos: -45.5,-61.5
+ parent: 5350
+ - uid: 17071
+ components:
+ - type: Transform
+ pos: -44.5,-62.5
+ parent: 5350
- uid: 17072
components:
- type: Transform
@@ -149979,6 +147479,16 @@ entities:
- type: Transform
pos: -44.5,-65.5
parent: 5350
+ - uid: 17078
+ components:
+ - type: Transform
+ pos: -44.5,-64.5
+ parent: 5350
+ - uid: 17079
+ components:
+ - type: Transform
+ pos: -46.5,-64.5
+ parent: 5350
- uid: 17080
components:
- type: Transform
@@ -150039,6 +147549,16 @@ entities:
- type: Transform
pos: -48.5,-65.5
parent: 5350
+ - uid: 17092
+ components:
+ - type: Transform
+ pos: -48.5,-64.5
+ parent: 5350
+ - uid: 17093
+ components:
+ - type: Transform
+ pos: -50.5,-64.5
+ parent: 5350
- uid: 17094
components:
- type: Transform
@@ -150099,6 +147619,16 @@ entities:
- type: Transform
pos: -52.5,-65.5
parent: 5350
+ - uid: 17106
+ components:
+ - type: Transform
+ pos: -52.5,-64.5
+ parent: 5350
+ - uid: 17107
+ components:
+ - type: Transform
+ pos: -54.5,-64.5
+ parent: 5350
- uid: 17108
components:
- type: Transform
@@ -150129,6 +147659,21 @@ entities:
- type: Transform
pos: -54.5,-70.5
parent: 5350
+ - uid: 17114
+ components:
+ - type: Transform
+ pos: -53.5,-71.5
+ parent: 5350
+ - uid: 17115
+ components:
+ - type: Transform
+ pos: -49.5,-71.5
+ parent: 5350
+ - uid: 17116
+ components:
+ - type: Transform
+ pos: -45.5,-71.5
+ parent: 5350
- uid: 18724
components:
- type: Transform
@@ -150467,7 +148012,7 @@ entities:
- uid: 19964
components:
- type: Transform
- pos: -52.5,-64.5
+ pos: 33.5,-68.5
parent: 5350
- uid: 19965
components:
@@ -150499,6 +148044,11 @@ entities:
- type: Transform
pos: 42.5,-67.5
parent: 5350
+ - uid: 19971
+ components:
+ - type: Transform
+ pos: 43.5,-68.5
+ parent: 5350
- uid: 19972
components:
- type: Transform
@@ -150532,7 +148082,7 @@ entities:
- uid: 19978
components:
- type: Transform
- pos: -50.5,-62.5
+ pos: 43.5,-72.5
parent: 5350
- uid: 19979
components:
@@ -150564,6 +148114,11 @@ entities:
- type: Transform
pos: 34.5,-73.5
parent: 5350
+ - uid: 19985
+ components:
+ - type: Transform
+ pos: 33.5,-72.5
+ parent: 5350
- uid: 19986
components:
- type: Transform
@@ -150594,6 +148149,11 @@ entities:
- type: Transform
pos: 34.5,-77.5
parent: 5350
+ - uid: 19992
+ components:
+ - type: Transform
+ pos: 33.5,-76.5
+ parent: 5350
- uid: 19993
components:
- type: Transform
@@ -150624,6 +148184,11 @@ entities:
- type: Transform
pos: 42.5,-77.5
parent: 5350
+ - uid: 19999
+ components:
+ - type: Transform
+ pos: 43.5,-76.5
+ parent: 5350
- uid: 20000
components:
- type: Transform
@@ -150639,231 +148204,6 @@ entities:
- type: Transform
pos: 40.5,-75.5
parent: 5350
- - uid: 20776
- components:
- - type: Transform
- pos: 67.5,46.5
- parent: 5350
- - uid: 20912
- components:
- - type: Transform
- pos: 67.5,55.5
- parent: 5350
- - uid: 23383
- components:
- - type: Transform
- pos: -46.5,-62.5
- parent: 5350
- - uid: 23734
- components:
- - type: Transform
- pos: 67.5,56.5
- parent: 5350
- - uid: 23754
- components:
- - type: Transform
- pos: 67.5,50.5
- parent: 5350
- - uid: 23766
- components:
- - type: Transform
- pos: 73.5,46.5
- parent: 5350
- - uid: 23772
- components:
- - type: Transform
- pos: 73.5,56.5
- parent: 5350
- - uid: 23774
- components:
- - type: Transform
- pos: 73.5,55.5
- parent: 5350
- - uid: 23780
- components:
- - type: Transform
- pos: 73.5,53.5
- parent: 5350
- - uid: 23812
- components:
- - type: Transform
- pos: 67.5,47.5
- parent: 5350
- - uid: 23872
- components:
- - type: Transform
- pos: -44.5,-61.5
- parent: 5350
- - uid: 26750
- components:
- - type: Transform
- pos: -44.5,-60.5
- parent: 5350
- - uid: 26751
- components:
- - type: Transform
- pos: -46.5,-59.5
- parent: 5350
- - uid: 26796
- components:
- - type: Transform
- pos: -48.5,-62.5
- parent: 5350
- - uid: 26800
- components:
- - type: Transform
- pos: -48.5,-60.5
- parent: 5350
- - uid: 27858
- components:
- - type: Transform
- pos: -50.5,-59.5
- parent: 5350
- - uid: 28399
- components:
- - type: Transform
- pos: -50.5,-60.5
- parent: 5350
- - uid: 28463
- components:
- - type: Transform
- pos: 67.5,53.5
- parent: 5350
- - uid: 28515
- components:
- - type: Transform
- pos: 32.5,-67.5
- parent: 5350
- - uid: 28516
- components:
- - type: Transform
- pos: 43.5,-67.5
- parent: 5350
- - uid: 28518
- components:
- - type: Transform
- pos: 33.5,-73.5
- parent: 5350
- - uid: 28519
- components:
- - type: Transform
- pos: 44.5,-73.5
- parent: 5350
- - uid: 28520
- components:
- - type: Transform
- pos: 44.5,-75.5
- parent: 5350
- - uid: 28521
- components:
- - type: Transform
- pos: 44.5,-69.5
- parent: 5350
- - uid: 28522
- components:
- - type: Transform
- pos: 43.5,-69.5
- parent: 5350
- - uid: 28534
- components:
- - type: Transform
- pos: 44.5,-67.5
- parent: 5350
- - uid: 28590
- components:
- - type: Transform
- pos: -54.5,-64.5
- parent: 5350
- - uid: 28598
- components:
- - type: Transform
- pos: -56.5,-64.5
- parent: 5350
- - uid: 28599
- components:
- - type: Transform
- pos: -58.5,-64.5
- parent: 5350
- - uid: 28600
- components:
- - type: Transform
- pos: -56.5,-62.5
- parent: 5350
- - uid: 28601
- components:
- - type: Transform
- pos: -56.5,-61.5
- parent: 5350
- - uid: 28602
- components:
- - type: Transform
- pos: -56.5,-60.5
- parent: 5350
- - uid: 28603
- components:
- - type: Transform
- pos: -56.5,-59.5
- parent: 5350
- - uid: 28604
- components:
- - type: Transform
- pos: -58.5,-59.5
- parent: 5350
- - uid: 28605
- components:
- - type: Transform
- pos: -58.5,-60.5
- parent: 5350
- - uid: 28606
- components:
- - type: Transform
- pos: -58.5,-61.5
- parent: 5350
- - uid: 28607
- components:
- - type: Transform
- pos: -58.5,-62.5
- parent: 5350
- - uid: 28608
- components:
- - type: Transform
- pos: -54.5,-61.5
- parent: 5350
- - uid: 28609
- components:
- - type: Transform
- pos: -54.5,-62.5
- parent: 5350
- - uid: 28610
- components:
- - type: Transform
- pos: -54.5,-60.5
- parent: 5350
- - uid: 28611
- components:
- - type: Transform
- pos: -54.5,-59.5
- parent: 5350
- - uid: 28612
- components:
- - type: Transform
- pos: -52.5,-59.5
- parent: 5350
- - uid: 28613
- components:
- - type: Transform
- pos: -52.5,-60.5
- parent: 5350
- - uid: 28614
- components:
- - type: Transform
- pos: -52.5,-61.5
- parent: 5350
- - uid: 28615
- components:
- - type: Transform
- pos: -52.5,-62.5
- parent: 5350
- proto: SolarTracker
entities:
- uid: 17046
@@ -151353,15 +148693,15 @@ entities:
parent: 5350
- proto: SpawnPointChemist
entities:
- - uid: 15347
+ - uid: 20742
components:
- type: Transform
- pos: -21.5,-25.5
+ pos: -19.5,-27.5
parent: 5350
- - uid: 15601
+ - uid: 20912
components:
- type: Transform
- pos: -19.5,-25.5
+ pos: -20.5,-27.5
parent: 5350
- proto: SpawnPointChiefEngineer
entities:
@@ -151472,6 +148812,11 @@ entities:
- type: Transform
pos: 11.5,20.5
parent: 5350
+ - uid: 10131
+ components:
+ - type: Transform
+ pos: 13.5,18.5
+ parent: 5350
- uid: 16655
components:
- type: Transform
@@ -151663,21 +149008,16 @@ entities:
- type: Transform
pos: 37.5,14.5
parent: 5350
- - uid: 23762
+ - uid: 23176
components:
- type: Transform
- pos: 30.5,36.5
+ pos: 29.5,37.5
parent: 5350
- - uid: 23763
+ - uid: 23177
components:
- type: Transform
pos: 34.5,45.5
parent: 5350
- - uid: 23764
- components:
- - type: Transform
- pos: 31.5,52.5
- parent: 5350
- uid: 24117
components:
- type: Transform
@@ -151698,6 +149038,16 @@ entities:
- type: Transform
pos: 29.5,32.5
parent: 5350
+ - uid: 28226
+ components:
+ - type: Transform
+ pos: 33.5,50.5
+ parent: 5350
+ - uid: 28227
+ components:
+ - type: Transform
+ pos: 29.5,50.5
+ parent: 5350
- uid: 28229
components:
- type: Transform
@@ -151827,6 +149177,11 @@ entities:
parent: 5350
- proto: SpawnPointSecurityCadet
entities:
+ - uid: 6762
+ components:
+ - type: Transform
+ pos: 13.5,39.5
+ parent: 5350
- uid: 6866
components:
- type: Transform
@@ -151847,6 +149202,11 @@ entities:
- type: Transform
pos: 1.5,39.5
parent: 5350
+ - uid: 7048
+ components:
+ - type: Transform
+ pos: 12.5,36.5
+ parent: 5350
- proto: SpawnPointSecurityOfficer
entities:
- uid: 6760
@@ -151864,6 +149224,16 @@ entities:
- type: Transform
pos: -3.5,45.5
parent: 5350
+ - uid: 7046
+ components:
+ - type: Transform
+ pos: 5.5,37.5
+ parent: 5350
+ - uid: 7047
+ components:
+ - type: Transform
+ pos: 5.5,39.5
+ parent: 5350
- uid: 7171
components:
- type: Transform
@@ -151874,6 +149244,11 @@ entities:
- type: Transform
pos: -2.5,45.5
parent: 5350
+ - uid: 28219
+ components:
+ - type: Transform
+ pos: -3.5,28.5
+ parent: 5350
- proto: SpawnPointServiceWorker
entities:
- uid: 2753
@@ -151937,10 +149312,10 @@ entities:
parent: 5350
- proto: SpawnPointWarden
entities:
- - uid: 6785
+ - uid: 21247
components:
- type: Transform
- pos: -2.5,38.5
+ pos: -2.5,39.5
parent: 5350
- proto: SpeedLoaderMagnumPractice
entities:
@@ -152094,11 +149469,6 @@ entities:
- type: Transform
pos: 8.5,-6.5
parent: 5350
- - uid: 17028
- components:
- - type: Transform
- pos: 52.5,6.5
- parent: 5350
- uid: 19460
components:
- type: Transform
@@ -152433,39 +149803,6 @@ entities:
- type: Transform
pos: 44.5,-27.5
parent: 5350
- - uid: 28393
- components:
- - type: Transform
- pos: 55.496033,15.703398
- parent: 5350
- - uid: 28394
- components:
- - type: Transform
- pos: 53.51348,15.687193
- parent: 5350
- - uid: 28395
- components:
- - type: Transform
- pos: 54.497856,15.702818
- parent: 5350
- - uid: 28396
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 53.497856,12.702818
- parent: 5350
- - uid: 28397
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 54.48223,12.702818
- parent: 5350
- - uid: 28398
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 55.48223,12.702818
- parent: 5350
- proto: StoolBar
entities:
- uid: 2409
@@ -152523,16 +149860,6 @@ entities:
- type: Transform
pos: 29.5,-5.5
parent: 5350
- - uid: 5097
- components:
- - type: Transform
- pos: -49.5,-42.5
- parent: 5350
- - uid: 5872
- components:
- - type: Transform
- pos: -48.5,-42.5
- parent: 5350
- uid: 9243
components:
- type: Transform
@@ -152584,11 +149911,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -53.5,-24.5
parent: 5350
- - uid: 17666
- components:
- - type: Transform
- pos: -45.5,-42.5
- parent: 5350
- uid: 22870
components:
- type: Transform
@@ -152604,16 +149926,6 @@ entities:
- type: Transform
pos: -40.5,-18.5
parent: 5350
- - uid: 23777
- components:
- - type: Transform
- pos: -46.5,-42.5
- parent: 5350
- - uid: 28496
- components:
- - type: Transform
- pos: -47.5,-42.5
- parent: 5350
- proto: StorageCanister
entities:
- uid: 10293
@@ -152715,11 +150027,6 @@ entities:
- type: Transform
pos: -52.5,5.5
parent: 5350
- - uid: 9186
- components:
- - type: Transform
- pos: 72.5,-25.5
- parent: 5350
- uid: 9519
components:
- type: MetaData
@@ -152823,18 +150130,6 @@ entities:
- type: Transform
pos: 77.5,-30.5
parent: 5350
-- proto: SubstationMachineCircuitboard
- entities:
- - uid: 28216
- components:
- - type: Transform
- pos: 37.117462,6.747689
- parent: 5350
- - uid: 28217
- components:
- - type: Transform
- pos: 37.039337,6.528939
- parent: 5350
- proto: SuitStorageCaptain
entities:
- uid: 1204
@@ -152938,46 +150233,10 @@ entities:
parent: 5350
- proto: SuitStorageEVA
entities:
- - uid: 1489
- components:
- - type: MetaData
- name: EVA Suitlocker
- - type: Transform
- pos: -14.5,-11.5
- parent: 5350
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14673
- moles:
- - 1.8856695
- - 7.0937095
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 22911
- - 23098
- - 13886
- - uid: 4104
+ - uid: 1488
components:
- - type: MetaData
- name: EVA Suitlocker
- type: Transform
- pos: -18.5,-11.5
+ pos: -18.5,-10.5
parent: 5350
- type: EntityStorage
air:
@@ -152985,8 +150244,8 @@ entities:
immutable: False
temperature: 293.14673
moles:
- - 1.8977377
- - 7.139109
+ - 1.7459903
+ - 6.568249
- 0
- 0
- 0
@@ -153003,15 +150262,14 @@ entities:
showEnts: False
occludes: True
ents:
- - 23472
- - 14149
- - 23406
- - uid: 7165
+ - 22167
+ - 22168
+ - 22229
+ - 22348
+ - uid: 1489
components:
- - type: MetaData
- name: EVA Suitlocker
- type: Transform
- pos: -14.5,-10.5
+ pos: -14.5,-11.5
parent: 5350
- type: EntityStorage
air:
@@ -153019,42 +150277,8 @@ entities:
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:
- - 14443
- - 23956
- - 23905
- - uid: 13159
- components:
- - type: MetaData
- name: EVA Suitlocker
- - type: Transform
- pos: -18.5,-10.5
- parent: 5350
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14697
- moles:
- - 1.8856695
- - 7.0937095
+ - 1.7459903
+ - 6.568249
- 0
- 0
- 0
@@ -153071,15 +150295,14 @@ entities:
showEnts: False
occludes: True
ents:
- - 22167
- - 13496
- - 22348
- - uid: 24328
+ - 23099
+ - 23098
+ - 23051
+ - 22911
+ - uid: 4104
components:
- - type: MetaData
- name: EVA Suitlocker
- type: Transform
- pos: -14.5,-14.5
+ pos: -18.5,-11.5
parent: 5350
- type: EntityStorage
air:
@@ -153087,8 +150310,8 @@ entities:
immutable: False
temperature: 293.14673
moles:
- - 1.7459903
- - 6.568249
+ - 1.8968438
+ - 7.1357465
- 0
- 0
- 0
@@ -153105,15 +150328,14 @@ entities:
showEnts: False
occludes: True
ents:
- - 8883
- - 23051
- - 24449
- - uid: 24610
+ - 23284
+ - 23406
+ - 23407
+ - 23472
+ - uid: 7165
components:
- - type: MetaData
- name: EVA Suitlocker
- type: Transform
- pos: -14.5,-12.5
+ pos: -14.5,-10.5
parent: 5350
- type: EntityStorage
air:
@@ -153139,15 +150361,14 @@ entities:
showEnts: False
occludes: True
ents:
- - 22168
- - 22229
- - 24611
+ - 23712
+ - 23905
+ - 23956
+ - 23964
- proto: SuitStorageEVAAlternate
entities:
- uid: 2617
components:
- - type: MetaData
- name: EVA Suitlocker
- type: Transform
pos: -14.5,-16.5
parent: 5350
@@ -153157,8 +150378,8 @@ entities:
immutable: False
temperature: 293.14673
moles:
- - 1.8856695
- - 7.0937095
+ - 1.7459903
+ - 6.568249
- 0
- 0
- 0
@@ -153175,13 +150396,12 @@ entities:
showEnts: False
occludes: True
ents:
- - 24058
- - 14858
+ - 24056
- 24057
+ - 24058
+ - 24244
- uid: 7801
components:
- - type: MetaData
- name: EVA Suitlocker
- type: Transform
pos: -18.5,-16.5
parent: 5350
@@ -153191,8 +150411,8 @@ entities:
immutable: False
temperature: 293.14673
moles:
- - 1.8856695
- - 7.0937095
+ - 1.7459903
+ - 6.568249
- 0
- 0
- 0
@@ -153209,13 +150429,12 @@ entities:
showEnts: False
occludes: True
ents:
- - 12668
+ - 8883
- 8865
+ - 7940
- 7808
- uid: 11032
components:
- - type: MetaData
- name: EVA Suitlocker
- type: Transform
pos: -14.5,-15.5
parent: 5350
@@ -153225,8 +150444,8 @@ entities:
immutable: False
temperature: 293.14673
moles:
- - 1.8856695
- - 7.0937095
+ - 1.7459903
+ - 6.568249
- 0
- 0
- 0
@@ -153243,13 +150462,12 @@ entities:
showEnts: False
occludes: True
ents:
- - 14901
+ - 24248
- 24266
- 24321
+ - 24328
- uid: 15195
components:
- - type: MetaData
- name: EVA Suitlocker
- type: Transform
pos: -18.5,-15.5
parent: 5350
@@ -153259,8 +150477,8 @@ entities:
immutable: False
temperature: 293.14673
moles:
- - 1.8856695
- - 7.0937095
+ - 1.7459903
+ - 6.568249
- 0
- 0
- 0
@@ -153277,9 +150495,10 @@ entities:
showEnts: False
occludes: True
ents:
- - 15200
+ - 15196
+ - 15198
- 15199
- - 12669
+ - 15200
- proto: SuitStorageEVAPrisoner
entities:
- uid: 6996
@@ -153305,6 +150524,13 @@ entities:
- 0
- 0
- 0
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 23603
- uid: 7774
components:
- type: Transform
@@ -153328,6 +150554,13 @@ entities:
- 0
- 0
- 0
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 23605
- uid: 9506
components:
- type: Transform
@@ -153351,6 +150584,13 @@ entities:
- 0
- 0
- 0
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 23610
- proto: SuitStorageHOS
entities:
- uid: 10385
@@ -153368,16 +150608,37 @@ entities:
- proto: SuitStorageSec
entities:
- uid: 5663
- components:
- - type: Transform
- pos: -5.5,46.5
- parent: 5350
- - uid: 5776
components:
- type: Transform
pos: -5.5,42.5
parent: 5350
- - uid: 6512
+ - 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:
+ - 14074
+ - 6785
+ - uid: 5776
components:
- type: Transform
pos: -6.5,42.5
@@ -153400,29 +150661,79 @@ entities:
- 0
- 0
- 0
- - uid: 7540
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 14095
+ - 6962
+ - uid: 10975
components:
- type: Transform
pos: -6.5,46.5
parent: 5350
-- proto: SuitStorageWarden
- entities:
- - uid: 6687
+ - 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:
+ - 7537
+ - 14107
+ - uid: 17674
components:
- - type: MetaData
- desc: Contains a special riot hardsuit.
- name: Warden's suit locker
- type: Transform
- pos: -9.5,42.5
+ pos: -5.5,46.5
parent: 5350
+ - 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: 350
+ hard: True
+ restitution: 0
+ friction: 0.4
- type: EntityStorage
air:
volume: 200
immutable: False
temperature: 293.14673
moles:
- - 1.7459903
- - 6.568249
- 0
- 0
- 0
@@ -153433,6 +150744,19 @@ entities:
- 0
- 0
- 0
+ - 0
+ - 0
+ open: True
+ removedMasks: 20
+ - type: PlaceableSurface
+ isPlaceable: True
+- proto: SuitStorageWarden
+ entities:
+ - uid: 6687
+ components:
+ - type: Transform
+ pos: -9.5,42.5
+ parent: 5350
- proto: SurveillanceCameraCommand
entities:
- uid: 144
@@ -153836,17 +151160,6 @@ entities:
- SurveillanceCameraEngineering
nameSet: True
id: Anchor Room
- - uid: 12667
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -38.5,-62.5
- parent: 5350
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: Solars - SW
- uid: 13398
components:
- type: Transform
@@ -153858,27 +151171,6 @@ entities:
- SurveillanceCameraEngineering
nameSet: True
id: Solars - NW
- - uid: 17051
- components:
- - type: Transform
- pos: 66.5,11.5
- parent: 5350
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: Containment - SW
- - uid: 17061
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 76.5,29.5
- parent: 5350
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: Containment - NE
- uid: 18430
components:
- type: Transform
@@ -153901,28 +151193,28 @@ entities:
- SurveillanceCameraEngineering
nameSet: True
id: Atmos - South
- - uid: 19911
+ - uid: 22213
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 57.5,41.5
+ pos: 60.5,8.5
parent: 5350
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraEngineering
nameSet: True
- id: Gravity Generator 2
- - uid: 22213
+ id: Locker Room
+ - uid: 23069
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 60.5,8.5
+ pos: 34.5,0.5
parent: 5350
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraEngineering
nameSet: True
- id: Locker Room
+ id: Substation - Service
- uid: 23070
components:
- type: Transform
@@ -153934,6 +151226,16 @@ entities:
- SurveillanceCameraEngineering
nameSet: True
id: Atmos Lockers
+ - uid: 23216
+ components:
+ - type: Transform
+ pos: 60.5,-30.5
+ parent: 5350
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Atmos Air Resevoir
- uid: 23218
components:
- type: Transform
@@ -153967,80 +151269,6 @@ entities:
- SurveillanceCameraEngineering
nameSet: True
id: Engineering Airlock
- - uid: 23776
- components:
- - type: Transform
- pos: 61.5,-30.5
- parent: 5350
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: Gas Tank - Carbon Dioxide
- - uid: 23778
- components:
- - type: Transform
- pos: 57.5,-30.5
- parent: 5350
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: Gas Tank - Oxygen
- - uid: 23779
- components:
- - type: Transform
- pos: 53.5,-30.5
- parent: 5350
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: Gas Tank - Nitrogen
- - uid: 23786
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 69.5,-9.5
- parent: 5350
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: Gas Tank - Waste 1
- - uid: 23787
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 69.5,-5.5
- parent: 5350
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: Gas Tank - Waste 2
- - uid: 23788
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 69.5,-13.5
- parent: 5350
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: Gas Tank - Plasma
- - uid: 23809
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 69.5,-17.5
- parent: 5350
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: Gas Tank - Water Vapor
- uid: 23866
components:
- type: Transform
@@ -154095,7 +151323,18 @@ entities:
setupAvailableNetworks:
- SurveillanceCameraEngineering
nameSet: True
- id: Suit Storage
+ id: Engi Storage
+ - uid: 23872
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,38.5
+ parent: 5350
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Grav Gen
- uid: 23873
components:
- type: Transform
@@ -154139,6 +151378,17 @@ entities:
- SurveillanceCameraEngineering
nameSet: True
id: Engineering South
+ - uid: 23877
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,6.5
+ parent: 5350
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: AME
- uid: 24054
components:
- type: Transform
@@ -154148,7 +151398,7 @@ entities:
setupAvailableNetworks:
- SurveillanceCameraEngineering
nameSet: True
- id: Gravity Generator 1
+ id: Grav Gen
- uid: 26699
components:
- type: Transform
@@ -154168,6 +151418,26 @@ entities:
- SurveillanceCameraEngineering
nameSet: True
id: Atmos Desk
+ - uid: 26783
+ components:
+ - type: Transform
+ pos: 56.5,-30.5
+ parent: 5350
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Atmos Tank Oxy
+ - uid: 26784
+ components:
+ - type: Transform
+ pos: 52.5,-30.5
+ parent: 5350
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Atmos Tank Nitro
- uid: 26792
components:
- type: Transform
@@ -154179,6 +151449,17 @@ entities:
- SurveillanceCameraEngineering
nameSet: True
id: Materials Room
+ - uid: 26794
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,37.5
+ parent: 5350
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: NE Solars
- uid: 26795
components:
- type: Transform
@@ -154188,7 +151469,7 @@ entities:
setupAvailableNetworks:
- SurveillanceCameraEngineering
nameSet: True
- id: Gravity Generator - Exterior
+ id: Grav Gen Exterior
- uid: 26849
components:
- type: Transform
@@ -154198,7 +151479,7 @@ entities:
setupAvailableNetworks:
- SurveillanceCameraEngineering
nameSet: True
- id: Solars - SE
+ id: Solars SE
- uid: 27139
components:
- type: MetaData
@@ -154233,28 +151514,30 @@ entities:
parent: 5350
- type: SurveillanceCamera
id: Atmos TEG Exterior south
- - uid: 27680
+ - uid: 27844
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 69.5,7.5
+ rot: 1.5707963267948966 rad
+ pos: 76.5,29.5
parent: 5350
- type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: Antimatter Engine
- - uid: 27833
+ id: Singularity NE
+ - uid: 27856
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 78.5,14.5
+ pos: 77.5,14.5
parent: 5350
- type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: Containment - SE
+ id: Singularity SE
+ - uid: 27858
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,29.5
+ parent: 5350
+ - type: SurveillanceCamera
+ id: Singularity NW
- uid: 27859
components:
- type: Transform
@@ -154269,53 +151552,14 @@ entities:
pos: 59.5,11.5
parent: 5350
- type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: Containment Airlock - South
+ id: South Singularity Airlock
- uid: 27861
components:
- type: Transform
pos: 58.5,28.5
parent: 5350
- type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: Containment Airlock - North
- - uid: 28227
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 62.5,36.5
- parent: 5350
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: Solars - NE
- - uid: 28465
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 71.5,-25.5
- parent: 5350
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: Atmos TEG Secure Storage
- - uid: 28636
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 64.5,29.5
- parent: 5350
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: Containment - NW
+ id: North Singularity Airlock
- proto: SurveillanceCameraGeneral
entities:
- uid: 4385
@@ -154462,7 +151706,7 @@ entities:
setupAvailableNetworks:
- SurveillanceCameraGeneral
nameSet: True
- id: Main Loop - South 2
+ id: Main Loop South 2
- uid: 22939
components:
- type: Transform
@@ -154604,6 +151848,16 @@ entities:
- SurveillanceCameraGeneral
nameSet: True
id: Dorms Hall 1
+ - uid: 23207
+ components:
+ - type: Transform
+ pos: 31.5,48.5
+ parent: 5350
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Garden
- uid: 23208
components:
- type: Transform
@@ -154670,16 +151924,6 @@ entities:
- SurveillanceCameraGeneral
nameSet: True
id: Arrivals
- - uid: 23775
- components:
- - type: Transform
- pos: 33.5,48.5
- parent: 5350
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraGeneral
- nameSet: True
- id: Dorms - Garden
- uid: 26420
components:
- type: Transform
@@ -154745,6 +151989,28 @@ entities:
- SurveillanceCameraGeneral
nameSet: True
id: Main Hall Captain
+ - uid: 26750
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -34.5,0.5
+ parent: 5350
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Main Hall Cargo
+ - uid: 26751
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -46.5,1.5
+ parent: 5350
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Main Hall Arrivals
- uid: 26752
components:
- type: Transform
@@ -154799,61 +152065,50 @@ entities:
- SurveillanceCameraGeneral
nameSet: True
id: East Corridor 2
- - uid: 26799
+ - uid: 26796
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,17.5
+ rot: -1.5707963267948966 rad
+ pos: 36.5,47.5
parent: 5350
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraGeneral
nameSet: True
- id: North Corridor
- - uid: 27196
+ id: Boxing Ring Escape Pod
+ - uid: 26799
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,-18.5
+ rot: 1.5707963267948966 rad
+ pos: -1.5,17.5
parent: 5350
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraGeneral
nameSet: True
- id: Main Loop - South 1
- - uid: 28525
+ id: North Corridor
+ - uid: 26800
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -30.5,0.5
- parent: 5350
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraGeneral
- nameSet: True
- id: West Corridor 2
- - uid: 28526
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 36.5,47.5
+ pos: -16.5,6.5
parent: 5350
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraGeneral
nameSet: True
- id: Dorms - Escape Pod
- - uid: 28527
+ id: Bridge Shop
+ - uid: 27196
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -42.5,0.5
+ pos: -11.5,-18.5
parent: 5350
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraGeneral
nameSet: True
- id: West Corridor 1
+ id: Main Loop South 1
- proto: SurveillanceCameraMedical
entities:
- uid: 16656
@@ -155228,8 +152483,6 @@ entities:
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraScience
- nameSet: True
- id: Anomaly Lab
- uid: 20862
components:
- type: Transform
@@ -155262,27 +152515,28 @@ entities:
- SurveillanceCameraScience
nameSet: True
id: Servers
- - uid: 28117
+ - uid: 23145
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 15.5,-38.5
+ pos: 16.5,-29.5
parent: 5350
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraScience
nameSet: True
- id: Central Hall
- - uid: 28524
+ id: Robotics Surgery
+ - uid: 28117
components:
- type: Transform
- pos: 18.5,-32.5
+ rot: 3.141592653589793 rad
+ pos: 15.5,-38.5
parent: 5350
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraScience
nameSet: True
- id: Robotics - Surgery
+ id: Central Hall
- proto: SurveillanceCameraSecurity
entities:
- uid: 6549
@@ -155371,17 +152625,17 @@ entities:
- SurveillanceCameraSecurity
nameSet: True
id: Shuttle Dock
- - uid: 14095
+ - uid: 11646
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,63.5
+ rot: -1.5707963267948966 rad
+ pos: -9.5,37.5
parent: 5350
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraSecurity
nameSet: True
- id: Security Exterior 2
+ id: Secure Armory
- uid: 17398
components:
- type: Transform
@@ -155393,6 +152647,17 @@ entities:
- SurveillanceCameraSecurity
nameSet: True
id: Perma Entry
+ - uid: 21164
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,38.5
+ parent: 5350
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Warden's Office
- uid: 22593
components:
- type: Transform
@@ -155468,7 +152733,7 @@ entities:
setupAvailableNetworks:
- SurveillanceCameraSecurity
nameSet: True
- id: Armory
+ id: Armory 1
- uid: 22617
components:
- type: Transform
@@ -155511,6 +152776,17 @@ entities:
- SurveillanceCameraSecurity
nameSet: True
id: Security External 4
+ - uid: 22621
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -13.5,63.5
+ parent: 5350
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Security External 2
- uid: 23058
components:
- type: Transform
@@ -155550,27 +152826,6 @@ entities:
- SurveillanceCameraSecurity
nameSet: True
id: Evac Security post
- - uid: 28528
- components:
- - type: Transform
- pos: -9.5,36.5
- parent: 5350
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: Armory - Secure
- - uid: 28529
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,39.5
- parent: 5350
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: Warden's Office
- proto: SurveillanceCameraService
entities:
- uid: 185
@@ -155677,7 +152932,7 @@ entities:
setupAvailableNetworks:
- SurveillanceCameraService
nameSet: True
- id: Janitorial Closet 2
+ id: Secondary Janitorial Closet
- uid: 20916
components:
- type: Transform
@@ -156009,11 +153264,31 @@ entities:
- type: Transform
pos: -18.5,-13.5
parent: 5350
+ - uid: 1485
+ components:
+ - type: Transform
+ pos: -18.5,-12.5
+ parent: 5350
+ - uid: 1487
+ components:
+ - type: Transform
+ pos: -18.5,-14.5
+ parent: 5350
- uid: 1529
components:
- type: Transform
pos: -16.5,-14.5
parent: 5350
+ - uid: 1530
+ components:
+ - type: Transform
+ pos: -16.5,-13.5
+ parent: 5350
+ - uid: 1531
+ components:
+ - type: Transform
+ pos: -16.5,-12.5
+ parent: 5350
- uid: 1702
components:
- type: Transform
@@ -156330,11 +153605,6 @@ entities:
- type: Transform
pos: -0.5,44.5
parent: 5350
- - uid: 6645
- components:
- - type: Transform
- pos: -18.5,-5.5
- parent: 5350
- uid: 6663
components:
- type: Transform
@@ -157087,11 +154357,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 16.5,-51.5
parent: 5350
- - uid: 16672
- components:
- - type: Transform
- pos: -16.5,-13.5
- parent: 5350
- uid: 16678
components:
- type: Transform
@@ -157221,11 +154486,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 13.5,-47.5
parent: 5350
- - uid: 19863
- components:
- - type: Transform
- pos: 76.5,8.5
- parent: 5350
- uid: 20049
components:
- type: Transform
@@ -157441,11 +154701,6 @@ entities:
- type: Transform
pos: 53.5,23.5
parent: 5350
- - uid: 23889
- components:
- - type: Transform
- pos: -16.5,-12.5
- parent: 5350
- uid: 23943
components:
- type: Transform
@@ -157651,11 +154906,6 @@ entities:
- type: Transform
pos: 0.5,-42.5
parent: 5350
- - uid: 28638
- components:
- - type: Transform
- pos: 76.5,7.5
- parent: 5350
- proto: TableCarpet
entities:
- uid: 693
@@ -158530,12 +155780,6 @@ entities:
- type: Transform
pos: 37.5,34.5
parent: 5350
- - uid: 688
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -46.5,-43.5
- parent: 5350
- uid: 1003
components:
- type: Transform
@@ -158824,11 +156068,10 @@ entities:
- type: Transform
pos: 12.5,27.5
parent: 5350
- - uid: 7797
+ - uid: 7765
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -47.5,-43.5
+ pos: -3.5,37.5
parent: 5350
- uid: 8418
components:
@@ -158922,11 +156165,6 @@ entities:
- type: Transform
pos: 36.5,34.5
parent: 5350
- - uid: 12448
- components:
- - type: Transform
- pos: 53.5,13.5
- parent: 5350
- uid: 12736
components:
- type: Transform
@@ -159401,27 +156639,6 @@ entities:
- type: Transform
pos: 106.5,-5.5
parent: 5350
- - uid: 27662
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -45.5,-43.5
- parent: 5350
- - uid: 28000
- components:
- - type: Transform
- pos: 54.5,13.5
- parent: 5350
- - uid: 28001
- components:
- - type: Transform
- pos: 55.5,13.5
- parent: 5350
- - uid: 28002
- components:
- - type: Transform
- pos: 55.5,14.5
- parent: 5350
- uid: 28328
components:
- type: Transform
@@ -159432,34 +156649,6 @@ entities:
- type: Transform
pos: 1.5,-46.5
parent: 5350
- - uid: 28366
- components:
- - type: Transform
- pos: 53.5,14.5
- parent: 5350
- - uid: 28367
- components:
- - type: Transform
- pos: 54.5,14.5
- parent: 5350
- - uid: 28464
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.5,-43.5
- parent: 5350
- - uid: 28497
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -48.5,-43.5
- parent: 5350
- - uid: 28533
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,37.5
- parent: 5350
- proto: TargetClown
entities:
- uid: 22356
@@ -159712,172 +156901,138 @@ entities:
parent: 5350
- proto: TeslaCoil
entities:
- - uid: 20051
+ - uid: 6448
components:
- type: Transform
anchored: False
- rot: -1.5707963267948966 rad
- pos: 73.5,30.5
+ pos: 70.5,10.5
parent: 5350
- type: Physics
bodyType: Dynamic
- - uid: 20706
+ - uid: 9070
components:
- type: Transform
anchored: False
- rot: -1.5707963267948966 rad
- pos: 72.5,30.5
+ pos: 67.5,30.5
parent: 5350
- type: Physics
bodyType: Dynamic
- - uid: 20742
+ - uid: 9186
components:
- type: Transform
anchored: False
- rot: -1.5707963267948966 rad
- pos: 74.5,30.5
+ pos: 68.5,30.5
parent: 5350
- type: Physics
bodyType: Dynamic
- - uid: 23284
+ - uid: 9187
components:
- type: Transform
anchored: False
- rot: -1.5707963267948966 rad
- pos: 71.5,30.5
+ pos: 69.5,30.5
parent: 5350
- type: Physics
bodyType: Dynamic
- - uid: 23378
+ - uid: 9188
components:
- type: Transform
anchored: False
- rot: 3.141592653589793 rad
- pos: 78.5,13.5
+ pos: 69.5,10.5
parent: 5350
- type: Physics
bodyType: Dynamic
- - uid: 27844
+ - uid: 9189
components:
- type: Transform
anchored: False
- rot: 3.141592653589793 rad
- pos: 78.5,16.5
+ pos: 68.5,10.5
parent: 5350
- type: Physics
bodyType: Dynamic
- - uid: 27856
+ - uid: 9190
components:
- type: Transform
anchored: False
- rot: 3.141592653589793 rad
- pos: 78.5,15.5
+ pos: 67.5,10.5
parent: 5350
- type: Physics
bodyType: Dynamic
- - uid: 28194
+ - uid: 23043
components:
- type: Transform
anchored: False
- rot: 3.141592653589793 rad
- pos: 78.5,14.5
+ pos: 70.5,30.5
parent: 5350
- type: Physics
bodyType: Dynamic
- proto: TeslaGenerator
entities:
- - uid: 23589
+ - uid: 9185
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 45.5,21.5
+ pos: 45.5,20.5
parent: 5350
- proto: TeslaGroundingRod
entities:
- - uid: 8232
+ - uid: 23785
components:
- type: Transform
anchored: False
- rot: 1.5707963267948966 rad
- pos: 69.5,10.5
+ pos: 61.5,12.5
parent: 5350
- type: Physics
bodyType: Dynamic
- - uid: 23099
+ - uid: 23786
components:
- type: Transform
anchored: False
- rot: 1.5707963267948966 rad
- pos: 70.5,10.5
+ pos: 61.5,13.5
parent: 5350
- type: Physics
bodyType: Dynamic
- - uid: 23177
+ - uid: 23787
components:
- type: Transform
anchored: False
- rot: 1.5707963267948966 rad
- pos: 68.5,10.5
+ pos: 61.5,14.5
parent: 5350
- type: Physics
bodyType: Dynamic
- - uid: 23207
+ - uid: 23788
components:
- type: Transform
anchored: False
- rot: 1.5707963267948966 rad
- pos: 67.5,10.5
+ pos: 61.5,15.5
parent: 5350
- type: Physics
bodyType: Dynamic
- proto: ThrusterFlatpack
entities:
- - uid: 17032
- components:
- - type: Transform
- parent: 17031
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 17033
- components:
- - type: Transform
- parent: 17031
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 17038
- components:
- - type: Transform
- parent: 17031
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 28451
+ - uid: 24478
components:
- type: Transform
- parent: 28450
+ parent: 24070
- type: Physics
canCollide: False
- type: InsideEntityStorage
- - uid: 28453
+ - uid: 27208
components:
- type: Transform
- parent: 28450
+ parent: 24070
- type: Physics
canCollide: False
- type: InsideEntityStorage
- - uid: 28454
+ - uid: 27680
components:
- type: Transform
- parent: 28450
+ parent: 24070
- type: Physics
canCollide: False
- type: InsideEntityStorage
- - uid: 28455
+ - uid: 28201
components:
- type: Transform
- parent: 28450
+ parent: 24070
- type: Physics
canCollide: False
- type: InsideEntityStorage
@@ -159893,6 +157048,11 @@ entities:
- type: Transform
pos: 15.5,-31.5
parent: 5350
+ - uid: 8575
+ components:
+ - type: Transform
+ pos: 32.5,47.5
+ parent: 5350
- uid: 11178
components:
- type: Transform
@@ -160008,6 +157168,16 @@ entities:
- type: Transform
pos: 15.5,-29.5
parent: 5350
+ - uid: 23288
+ components:
+ - type: Transform
+ pos: 30.5,47.5
+ parent: 5350
+ - uid: 24074
+ components:
+ - type: Transform
+ pos: 31.5,47.5
+ parent: 5350
- uid: 24683
components:
- type: Transform
@@ -160096,6 +157266,11 @@ entities:
parent: 5350
- proto: ToolboxElectricalFilled
entities:
+ - uid: 1520
+ components:
+ - type: Transform
+ pos: -18.599995,-12.350811
+ parent: 5350
- uid: 3592
components:
- type: Transform
@@ -160106,11 +157281,6 @@ entities:
- type: Transform
pos: 38.4915,6.594829
parent: 5350
- - uid: 24074
- components:
- - type: Transform
- pos: -16.571823,-12.293222
- parent: 5350
- uid: 26466
components:
- type: Transform
@@ -160147,6 +157317,11 @@ entities:
parent: 5350
- proto: ToolboxMechanicalFilled
entities:
+ - uid: 1521
+ components:
+ - type: Transform
+ pos: -18.45937,-12.553936
+ parent: 5350
- uid: 3635
components:
- type: Transform
@@ -160172,11 +157347,6 @@ entities:
- type: Transform
pos: 26.555069,19.506002
parent: 5350
- - uid: 24244
- components:
- - type: Transform
- pos: -16.321823,-12.808847
- parent: 5350
- uid: 26465
components:
- type: Transform
@@ -160261,13 +157431,6 @@ entities:
- type: Transform
pos: -25.337606,-65.35234
parent: 5350
-- proto: ToyFigurineChiefEngineer
- entities:
- - uid: 28392
- components:
- - type: Transform
- pos: 54.180107,13.748585
- parent: 5350
- proto: ToyFigurineHoloClown
entities:
- uid: 28312
@@ -160723,11 +157886,6 @@ entities:
- type: Transform
pos: -19.5,6.5
parent: 5350
- - uid: 6514
- components:
- - type: Transform
- pos: 53.5,5.5
- parent: 5350
- uid: 7936
components:
- type: MetaData
@@ -160757,11 +157915,6 @@ entities:
- type: Transform
pos: -6.5,-40.5
parent: 5350
- - uid: 12451
- components:
- - type: Transform
- pos: 46.5,12.5
- parent: 5350
- uid: 16821
components:
- type: MetaData
@@ -160802,6 +157955,13 @@ entities:
parent: 5350
- proto: VendingMachineCoffee
entities:
+ - uid: 1376
+ components:
+ - type: MetaData
+ name: Hot drinks machine
+ - type: Transform
+ pos: -18.5,-5.5
+ parent: 5350
- uid: 4325
components:
- type: Transform
@@ -161055,7 +158215,7 @@ entities:
- type: Transform
pos: -3.5,42.5
parent: 5350
- - uid: 8518
+ - uid: 23409
components:
- type: Transform
pos: 0.5,40.5
@@ -161114,13 +158274,15 @@ entities:
- type: Transform
pos: 53.5,19.5
parent: 5350
- - uid: 23730
+- proto: VendingMachineTankDispenserEVA
+ entities:
+ - uid: 1486
components:
+ - type: MetaData
+ name: tank dispenser
- type: Transform
- pos: 42.5,22.5
+ pos: -14.5,-12.5
parent: 5350
-- proto: VendingMachineTankDispenserEVA
- entities:
- uid: 9181
components:
- type: Transform
@@ -161141,25 +158303,20 @@ entities:
- type: Transform
pos: 49.5,11.5
parent: 5350
- - uid: 23388
- components:
- - type: Transform
- pos: 18.5,-61.5
- parent: 5350
- - uid: 23816
+ - uid: 16464
components:
- type: Transform
- pos: -18.5,-12.5
+ pos: 18.5,-60.5
parent: 5350
- uid: 23828
components:
- type: Transform
pos: -29.5,-48.5
parent: 5350
- - uid: 23877
+ - uid: 24449
components:
- type: Transform
- pos: -18.5,-14.5
+ pos: -14.5,-14.5
parent: 5350
- uid: 26140
components:
@@ -161679,12 +158836,6 @@ entities:
- type: Transform
pos: -8.5,3.5
parent: 5350
- - uid: 504
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 41.5,21.5
- parent: 5350
- uid: 559
components:
- type: Transform
@@ -162210,6 +159361,11 @@ entities:
- type: Transform
pos: 26.5,-60.5
parent: 5350
+ - uid: 2149
+ components:
+ - type: Transform
+ pos: -8.5,35.5
+ parent: 5350
- uid: 2525
components:
- type: Transform
@@ -163630,6 +160786,11 @@ entities:
- type: Transform
pos: -0.5,27.5
parent: 5350
+ - uid: 6490
+ components:
+ - type: Transform
+ pos: -7.5,35.5
+ parent: 5350
- uid: 6491
components:
- type: Transform
@@ -164265,6 +161426,11 @@ entities:
- type: Transform
pos: -10.5,42.5
parent: 5350
+ - uid: 7722
+ components:
+ - type: Transform
+ pos: 12.5,49.5
+ parent: 5350
- uid: 7726
components:
- type: Transform
@@ -164470,12 +161636,6 @@ entities:
- type: Transform
pos: 19.5,27.5
parent: 5350
- - uid: 7958
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,35.5
- parent: 5350
- uid: 7965
components:
- type: Transform
@@ -165111,6 +162271,36 @@ entities:
- type: Transform
pos: 61.5,-3.5
parent: 5350
+ - uid: 9094
+ components:
+ - type: Transform
+ pos: 42.5,19.5
+ parent: 5350
+ - uid: 9095
+ components:
+ - type: Transform
+ pos: 43.5,19.5
+ parent: 5350
+ - uid: 9096
+ components:
+ - type: Transform
+ pos: 44.5,19.5
+ parent: 5350
+ - uid: 9097
+ components:
+ - type: Transform
+ pos: 45.5,19.5
+ parent: 5350
+ - uid: 9098
+ components:
+ - type: Transform
+ pos: 46.5,19.5
+ parent: 5350
+ - uid: 9100
+ components:
+ - type: Transform
+ pos: 47.5,19.5
+ parent: 5350
- uid: 9101
components:
- type: Transform
@@ -165121,6 +162311,11 @@ entities:
- type: Transform
pos: 48.5,20.5
parent: 5350
+ - uid: 9103
+ components:
+ - type: Transform
+ pos: 48.5,24.5
+ parent: 5350
- uid: 9104
components:
- type: Transform
@@ -165189,6 +162384,7 @@ entities:
- uid: 9279
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 2.5,-54.5
parent: 5350
- uid: 9280
@@ -165209,16 +162405,19 @@ entities:
- uid: 9336
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 4.5,-54.5
parent: 5350
- uid: 9338
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 0.5,-54.5
parent: 5350
- uid: 9339
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 6.5,-54.5
parent: 5350
- uid: 9340
@@ -166946,6 +164145,11 @@ entities:
- type: Transform
pos: 41.5,22.5
parent: 5350
+ - uid: 13886
+ components:
+ - type: Transform
+ pos: 41.5,21.5
+ parent: 5350
- uid: 13887
components:
- type: Transform
@@ -167409,6 +164613,7 @@ entities:
- uid: 15156
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 108.5,-1.5
parent: 5350
- uid: 15178
@@ -167574,6 +164779,7 @@ entities:
- uid: 16050
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 3.5,-54.5
parent: 5350
- uid: 16080
@@ -167644,6 +164850,7 @@ entities:
- uid: 16201
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 5.5,-54.5
parent: 5350
- uid: 16208
@@ -167679,6 +164886,7 @@ entities:
- uid: 16322
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 1.5,-54.5
parent: 5350
- uid: 16324
@@ -167734,6 +164942,7 @@ entities:
- uid: 16398
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -0.5,-42.5
parent: 5350
- uid: 16437
@@ -167834,6 +165043,7 @@ entities:
- uid: 16597
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 7.5,-47.5
parent: 5350
- uid: 16599
@@ -167906,11 +165116,25 @@ entities:
- type: Transform
pos: -50.5,-41.5
parent: 5350
+ - uid: 16670
+ components:
+ - type: Transform
+ pos: -44.5,-43.5
+ parent: 5350
- uid: 16671
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -41.5,-48.5
+ pos: -44.5,-42.5
+ parent: 5350
+ - uid: 16672
+ components:
+ - type: Transform
+ pos: -48.5,-42.5
+ parent: 5350
+ - uid: 16673
+ components:
+ - type: Transform
+ pos: -49.5,-42.5
parent: 5350
- uid: 16674
components:
@@ -167997,11 +165221,6 @@ entities:
- type: Transform
pos: -38.5,-61.5
parent: 5350
- - uid: 17064
- components:
- - type: Transform
- pos: 59.5,17.5
- parent: 5350
- uid: 17462
components:
- type: Transform
@@ -168012,10 +165231,10 @@ entities:
- type: Transform
pos: -0.5,-37.5
parent: 5350
- - uid: 18015
+ - uid: 17666
components:
- type: Transform
- pos: 19.5,-63.5
+ pos: 2.5,63.5
parent: 5350
- uid: 18392
components:
@@ -168097,11 +165316,6 @@ entities:
- type: Transform
pos: -8.5,-10.5
parent: 5350
- - uid: 18689
- components:
- - type: Transform
- pos: 12.5,49.5
- parent: 5350
- uid: 19063
components:
- type: Transform
@@ -168120,6 +165334,7 @@ entities:
- uid: 19100
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -0.5,-44.5
parent: 5350
- uid: 19133
@@ -168352,11 +165567,6 @@ entities:
- type: Transform
pos: 20.5,-53.5
parent: 5350
- - uid: 19481
- components:
- - type: Transform
- pos: 2.5,63.5
- parent: 5350
- uid: 19489
components:
- type: Transform
@@ -168752,48 +165962,6 @@ entities:
- type: Transform
pos: 39.5,-56.5
parent: 5350
- - uid: 19808
- components:
- - type: Transform
- pos: 15.5,-65.5
- parent: 5350
- - uid: 19815
- components:
- - type: Transform
- pos: 15.5,-64.5
- parent: 5350
- - uid: 19816
- components:
- - type: Transform
- pos: 15.5,-63.5
- parent: 5350
- - uid: 19819
- components:
- - type: Transform
- pos: 19.5,-65.5
- parent: 5350
- - uid: 19820
- components:
- - type: Transform
- pos: 19.5,-64.5
- parent: 5350
- - uid: 19825
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,-62.5
- parent: 5350
- - uid: 19922
- components:
- - type: Transform
- pos: 59.5,23.5
- parent: 5350
- - uid: 19933
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 44.5,45.5
- parent: 5350
- uid: 20034
components:
- type: Transform
@@ -168972,11 +166140,13 @@ entities:
- uid: 20689
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 8.5,-47.5
parent: 5350
- uid: 20721
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: -0.5,-48.5
parent: 5350
- uid: 20733
@@ -169047,6 +166217,7 @@ entities:
- uid: 20872
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: -0.5,-54.5
parent: 5350
- uid: 20878
@@ -169192,6 +166363,7 @@ entities:
- uid: 21361
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: -0.5,-50.5
parent: 5350
- uid: 21370
@@ -169199,24 +166371,6 @@ entities:
- type: Transform
pos: 40.5,-43.5
parent: 5350
- - uid: 21681
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.5,-44.5
- parent: 5350
- - uid: 21812
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -48.5,-44.5
- parent: 5350
- - uid: 21813
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -45.5,-44.5
- parent: 5350
- uid: 22145
components:
- type: Transform
@@ -169230,6 +166384,7 @@ entities:
- uid: 22258
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: -0.5,-52.5
parent: 5350
- uid: 22265
@@ -169377,12 +166532,6 @@ entities:
- type: Transform
pos: 47.5,28.5
parent: 5350
- - uid: 23240
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 75.5,31.5
- parent: 5350
- uid: 23241
components:
- type: Transform
@@ -169408,171 +166557,146 @@ entities:
- type: Transform
pos: 43.5,27.5
parent: 5350
- - uid: 23288
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 75.5,30.5
- parent: 5350
- uid: 23307
components:
- type: Transform
pos: 45.5,14.5
parent: 5350
- - uid: 23356
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 76.5,30.5
- parent: 5350
- - uid: 23379
- components:
- - type: Transform
- pos: 48.5,21.5
- parent: 5350
- - uid: 23396
- components:
- - type: Transform
- pos: 43.5,20.5
- parent: 5350
- uid: 23401
components:
- type: Transform
pos: 44.5,-29.5
parent: 5350
- - uid: 23534
+ - uid: 23719
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -43.5,-45.5
+ pos: 78.5,17.5
parent: 5350
- - uid: 23590
+ - uid: 23743
components:
- type: Transform
- pos: 44.5,20.5
+ pos: 77.5,10.5
parent: 5350
- - uid: 23592
+ - uid: 23744
components:
- type: Transform
- pos: 45.5,20.5
+ pos: 77.5,11.5
parent: 5350
- - uid: 23616
+ - uid: 23745
components:
- type: Transform
- pos: 40.5,45.5
+ pos: 78.5,11.5
parent: 5350
- - uid: 23617
+ - uid: 23746
components:
- type: Transform
- pos: 39.5,45.5
+ pos: 78.5,12.5
parent: 5350
- - uid: 23637
+ - uid: 23747
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,-44.5
+ pos: 79.5,12.5
parent: 5350
- - uid: 23638
+ - uid: 23748
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,-43.5
+ pos: 79.5,14.5
parent: 5350
- - uid: 23639
+ - uid: 23749
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -47.5,-44.5
+ pos: 78.5,14.5
parent: 5350
- - uid: 23640
+ - uid: 23750
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,-62.5
+ pos: 78.5,15.5
parent: 5350
- - uid: 23652
+ - uid: 23751
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -43.5,-47.5
+ pos: 79.5,15.5
parent: 5350
- - uid: 23731
+ - uid: 23752
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -42.5,-48.5
+ pos: 79.5,16.5
parent: 5350
- - uid: 23743
+ - uid: 23753
components:
- type: Transform
- pos: 77.5,10.5
+ pos: 78.5,16.5
parent: 5350
- - uid: 23744
+ - uid: 23754
components:
- type: Transform
- pos: 77.5,11.5
+ pos: 78.5,18.5
parent: 5350
- - uid: 23745
+ - uid: 23755
components:
- type: Transform
- pos: 78.5,11.5
+ pos: 79.5,25.5
parent: 5350
- - uid: 23746
+ - uid: 23756
components:
- type: Transform
- pos: 78.5,12.5
+ pos: 78.5,20.5
parent: 5350
- - uid: 23747
+ - uid: 23757
components:
- type: Transform
- pos: 79.5,12.5
+ pos: 78.5,21.5
parent: 5350
- - uid: 23748
+ - uid: 23758
components:
- type: Transform
- pos: 79.5,14.5
+ pos: 78.5,22.5
parent: 5350
- - uid: 23749
+ - uid: 23759
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 79.5,20.5
+ pos: 79.5,21.5
parent: 5350
- - uid: 23751
+ - uid: 23760
components:
- type: Transform
- pos: 79.5,15.5
+ pos: 78.5,23.5
parent: 5350
- - uid: 23752
+ - uid: 23761
components:
- type: Transform
- pos: 79.5,16.5
+ pos: 79.5,26.5
parent: 5350
- - uid: 23755
+ - uid: 23762
components:
- type: Transform
- pos: 79.5,25.5
+ pos: 78.5,26.5
parent: 5350
- - uid: 23759
+ - uid: 23763
components:
- type: Transform
- pos: 79.5,21.5
+ pos: 77.5,26.5
parent: 5350
- - uid: 23761
+ - uid: 23765
components:
- type: Transform
- pos: 79.5,26.5
+ pos: 79.5,28.5
parent: 5350
- - uid: 23765
+ - uid: 23766
components:
- type: Transform
- pos: 79.5,28.5
+ pos: 78.5,28.5
parent: 5350
- uid: 23767
components:
- type: Transform
pos: 78.5,29.5
parent: 5350
+ - uid: 23768
+ components:
+ - type: Transform
+ pos: 77.5,29.5
+ parent: 5350
- uid: 23769
components:
- type: Transform
@@ -169588,12 +166712,6 @@ entities:
- type: Transform
pos: 74.5,31.5
parent: 5350
- - uid: 23773
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 79.5,13.5
- parent: 5350
- uid: 23821
components:
- type: Transform
@@ -169644,12 +166762,6 @@ entities:
- type: Transform
pos: 1.5,-9.5
parent: 5350
- - uid: 24248
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -43.5,-48.5
- parent: 5350
- uid: 24299
components:
- type: Transform
@@ -170775,17 +167887,6 @@ entities:
- type: Transform
pos: 68.5,-24.5
parent: 5350
- - uid: 27208
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -46.5,-44.5
- parent: 5350
- - uid: 27236
- components:
- - type: Transform
- pos: 47.5,20.5
- parent: 5350
- uid: 27246
components:
- type: Transform
@@ -170961,64 +168062,16 @@ entities:
- type: Transform
pos: 74.5,-30.5
parent: 5350
- - uid: 27997
- components:
- - type: Transform
- pos: 46.5,20.5
- parent: 5350
- - uid: 28003
- components:
- - type: Transform
- pos: 42.5,20.5
- parent: 5350
- - uid: 28008
- components:
- - type: Transform
- pos: 45.5,18.5
- parent: 5350
- - uid: 28199
- components:
- - type: Transform
- pos: 79.5,17.5
- parent: 5350
- - uid: 28202
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 79.5,23.5
- parent: 5350
- - uid: 28203
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 79.5,22.5
- parent: 5350
- - uid: 28210
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 80.5,21.5
- parent: 5350
- - uid: 28219
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 78.5,30.5
- parent: 5350
- - uid: 28226
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 79.5,29.5
- parent: 5350
- uid: 28243
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 112.5,1.5
parent: 5350
- uid: 28245
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 107.5,1.5
parent: 5350
- uid: 28313
@@ -171026,18 +168079,6 @@ entities:
- type: Transform
pos: -0.5,-46.5
parent: 5350
- - uid: 28479
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -8.5,35.5
- parent: 5350
- - uid: 28523
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 44.5,49.5
- parent: 5350
- proto: WallSolid
entities:
- uid: 57
@@ -171298,6 +168339,7 @@ entities:
- uid: 1144
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 2.5,-60.5
parent: 5350
- uid: 1221
@@ -172145,6 +169187,11 @@ entities:
- type: Transform
pos: 34.5,-48.5
parent: 5350
+ - uid: 3116
+ components:
+ - type: Transform
+ pos: 55.5,6.5
+ parent: 5350
- uid: 3170
components:
- type: Transform
@@ -173413,6 +170460,7 @@ entities:
- uid: 6400
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 3.5,-60.5
parent: 5350
- uid: 6423
@@ -174458,6 +171506,7 @@ entities:
- uid: 10394
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 7.5,-58.5
parent: 5350
- uid: 10397
@@ -174488,6 +171537,7 @@ entities:
- uid: 10495
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 5.5,-56.5
parent: 5350
- uid: 10503
@@ -174513,6 +171563,7 @@ entities:
- uid: 10695
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: 5.5,-47.5
parent: 5350
- uid: 10705
@@ -174795,11 +171846,21 @@ entities:
- type: Transform
pos: 45.5,34.5
parent: 5350
+ - uid: 13103
+ components:
+ - type: Transform
+ pos: 54.5,6.5
+ parent: 5350
- uid: 13113
components:
- type: Transform
pos: -20.5,42.5
parent: 5350
+ - uid: 13159
+ components:
+ - type: Transform
+ pos: 19.5,-58.5
+ parent: 5350
- uid: 13314
components:
- type: Transform
@@ -175355,6 +172416,7 @@ entities:
- uid: 15147
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: -43.5,7.5
parent: 5350
- uid: 15171
@@ -175435,6 +172497,7 @@ entities:
- uid: 15325
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 4.5,-47.5
parent: 5350
- uid: 15332
@@ -176380,6 +173443,7 @@ entities:
- uid: 17513
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 4.5,-60.5
parent: 5350
- uid: 17539
@@ -176955,6 +174019,7 @@ entities:
- uid: 19417
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 0.5,-47.5
parent: 5350
- uid: 19419
@@ -177055,16 +174120,19 @@ entities:
- uid: 19604
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 6.5,-47.5
parent: 5350
- uid: 19605
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: 5.5,-46.5
parent: 5350
- uid: 19606
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 2.5,-47.5
parent: 5350
- uid: 19718
@@ -177075,6 +174143,7 @@ entities:
- uid: 19724
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: 5.5,-30.5
parent: 5350
- uid: 19739
@@ -177082,6 +174151,11 @@ entities:
- type: Transform
pos: -37.5,-41.5
parent: 5350
+ - uid: 19848
+ components:
+ - type: Transform
+ pos: 46.5,-84.5
+ parent: 5350
- uid: 20024
components:
- type: Transform
@@ -177380,6 +174454,7 @@ entities:
- uid: 20282
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: 5.5,-45.5
parent: 5350
- uid: 20283
@@ -177530,6 +174605,7 @@ entities:
- uid: 20659
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: 6.5,-42.5
parent: 5350
- uid: 20660
@@ -177540,6 +174616,7 @@ entities:
- uid: 20661
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 8.5,-42.5
parent: 5350
- uid: 20669
@@ -177547,9 +174624,16 @@ entities:
- type: Transform
pos: 11.5,-42.5
parent: 5350
+ - uid: 20706
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,-41.5
+ parent: 5350
- uid: 20710
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 7.5,-41.5
parent: 5350
- uid: 20711
@@ -177560,11 +174644,13 @@ entities:
- uid: 20717
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 9.5,-41.5
parent: 5350
- uid: 20718
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 10.5,-42.5
parent: 5350
- uid: 20719
@@ -177575,6 +174661,7 @@ entities:
- uid: 20720
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 7.5,-42.5
parent: 5350
- uid: 20726
@@ -177615,11 +174702,13 @@ entities:
- uid: 20816
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 9.5,-42.5
parent: 5350
- uid: 20824
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 7.5,-56.5
parent: 5350
- uid: 20876
@@ -178212,12 +175301,6 @@ entities:
- type: Transform
pos: 33.5,-1.5
parent: 5350
- - uid: 23732
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 19.5,-58.5
- parent: 5350
- uid: 23998
components:
- type: Transform
@@ -178363,31 +175446,31 @@ entities:
- type: Transform
pos: -30.5,-58.5
parent: 5350
- - uid: 25049
+ - uid: 24921
components:
- type: Transform
- pos: 92.5,6.5
+ pos: 53.5,6.5
parent: 5350
- - uid: 26794
+ - uid: 25049
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -44.5,-43.5
+ pos: 92.5,6.5
parent: 5350
- - uid: 26842
+ - uid: 27833
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -44.5,-42.5
+ pos: 1.5,-41.5
parent: 5350
- uid: 28309
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 7.5,-59.5
parent: 5350
- uid: 28310
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 7.5,-60.5
parent: 5350
- uid: 28335
@@ -178619,29 +175702,29 @@ entities:
parent: 5350
- proto: WallWeaponCapacitorRecharger
entities:
- - uid: 24478
+ - uid: 23091
components:
- type: Transform
- rot: 1.5707963267948966 rad
+ rot: -1.5707963267948966 rad
pos: -4.5,43.5
parent: 5350
- - uid: 24489
+ - uid: 23615
components:
- type: Transform
- rot: 1.5707963267948966 rad
+ rot: -1.5707963267948966 rad
pos: -14.5,46.5
parent: 5350
- - uid: 28124
+ - uid: 23616
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,34.5
+ rot: 1.5707963267948966 rad
+ pos: -14.5,44.5
parent: 5350
- - uid: 28218
+ - uid: 28124
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,44.5
+ rot: 3.141592653589793 rad
+ pos: 8.5,34.5
parent: 5350
- uid: 28251
components:
@@ -178847,24 +175930,24 @@ entities:
showEnts: False
occludes: True
ents:
- - 8227
- - 8128
- - 8127
- - 7888
- - 7885
- - 8126
- - 8101
- - 8095
- - 7873
- - 7882
- - 7880
- - 7883
- - 7886
- - 7884
- - 7854
- - 7874
- - 7871
- 7859
+ - 7871
+ - 7874
+ - 7854
+ - 7884
+ - 7886
+ - 7883
+ - 7880
+ - 7882
+ - 7873
+ - 8095
+ - 8101
+ - 8126
+ - 7885
+ - 7888
+ - 8127
+ - 8128
+ - 8227
paper_label: !type:ContainerSlot
showEnts: False
occludes: True
@@ -178945,8 +176028,6 @@ entities:
entities:
- uid: 26378
components:
- - type: MetaData
- name: Nitrogen Tank
- type: Transform
rot: 1.5707963267948966 rad
pos: 50.5,-27.5
@@ -178955,8 +176036,6 @@ entities:
entities:
- uid: 26369
components:
- - type: MetaData
- name: Oxygen Tank
- type: Transform
rot: 1.5707963267948966 rad
pos: 54.5,-27.5
@@ -178975,7 +176054,7 @@ entities:
- uid: 11115
components:
- type: MetaData
- name: Water Vapor Tank
+ name: Water Tank
- type: Transform
pos: 66.5,-16.5
parent: 5350
@@ -179093,6 +176172,11 @@ entities:
- type: Transform
pos: -37.5,-38.5
parent: 5350
+ - uid: 21477
+ components:
+ - type: Transform
+ pos: 14.5,-55.5
+ parent: 5350
- uid: 22116
components:
- type: Transform
@@ -179108,11 +176192,6 @@ entities:
- type: Transform
pos: -25.5,-19.5
parent: 5350
- - uid: 23395
- components:
- - type: Transform
- pos: 8.5,-64.5
- parent: 5350
- uid: 28113
components:
- type: Transform
@@ -179152,11 +176231,6 @@ entities:
- type: Transform
pos: 48.5,-9.5
parent: 5350
- - uid: 12405
- components:
- - type: Transform
- pos: 69.5,-25.5
- parent: 5350
- proto: WeaponCapacitorRecharger
entities:
- uid: 1036
@@ -179270,35 +176344,45 @@ entities:
parent: 5350
- proto: WeaponLaserCarbine
entities:
- - uid: 28447
+ - uid: 1569
components:
- type: Transform
- pos: -5.40834,37.35076
+ pos: -5.433402,36.501247
parent: 5350
- - uid: 28448
+ - uid: 21248
components:
- type: Transform
- pos: -5.40834,37.135483
+ pos: -5.419513,36.355415
parent: 5350
- - uid: 28449
+ - uid: 21468
components:
- type: Transform
- pos: -5.401396,37.572983
+ pos: -5.433402,36.66097
parent: 5350
- - uid: 28456
+ - uid: 23027
components:
- type: Transform
- pos: -5.4152846,36.704926
+ pos: -5.4681244,37.17486
parent: 5350
- - uid: 28457
+ - uid: 23653
components:
- type: Transform
- pos: -5.4152846,36.482704
+ pos: -5.482013,37.605415
parent: 5350
- - uid: 28458
+ - uid: 23654
components:
- type: Transform
- pos: -5.422229,36.92715
+ pos: -5.475069,37.320694
+ parent: 5350
+ - uid: 23720
+ components:
+ - type: Transform
+ pos: -5.4472914,36.79986
+ parent: 5350
+ - uid: 23733
+ components:
+ - type: Transform
+ pos: -5.482013,37.459583
parent: 5350
- proto: WeaponLaserCarbinePractice
entities:
@@ -179337,32 +176421,39 @@ entities:
- uid: 8084
components:
- type: Transform
- pos: -18.483227,41.285686
+ pos: -18.471203,41.255257
parent: 5350
- proto: WeaponRifleLecter
entities:
- - uid: 28446
+ - uid: 23730
components:
- type: Transform
- parent: 22966
+ parent: 23721
- type: Physics
canCollide: False
- type: InsideEntityStorage
+- proto: WeaponShotgunEnforcer
+ entities:
+ - uid: 28199
+ components:
+ - type: Transform
+ pos: -3.527783,37.985577
+ parent: 5350
- proto: WeaponShotgunKammerer
entities:
- - uid: 3634
+ - uid: 15052
components:
- type: Transform
- parent: 11588
+ parent: 13851
- type: Physics
canCollide: False
- type: InsideEntityStorage
- proto: WeaponSubMachineGunDrozd
entities:
- - uid: 28207
+ - uid: 9195
components:
- type: Transform
- parent: 13851
+ parent: 9194
- type: Physics
canCollide: False
- type: InsideEntityStorage
@@ -179432,11 +176523,21 @@ entities:
- type: Transform
pos: 55.5,-12.5
parent: 5350
+ - uid: 13496
+ components:
+ - type: Transform
+ pos: 45.5,26.5
+ parent: 5350
- uid: 15934
components:
- type: Transform
pos: -36.5,-38.5
parent: 5350
+ - uid: 16636
+ components:
+ - type: Transform
+ pos: 13.5,-55.5
+ parent: 5350
- uid: 22648
components:
- type: Transform
@@ -179447,11 +176548,6 @@ entities:
- type: Transform
pos: -5.5,-47.5
parent: 5350
- - uid: 23389
- components:
- - type: Transform
- pos: 7.5,-64.5
- parent: 5350
- uid: 24130
components:
- type: Transform
@@ -179472,13 +176568,6 @@ entities:
- type: Transform
pos: 49.5,-3.5
parent: 5350
-- proto: WeldingFuelTankHighCapacity
- entities:
- - uid: 23756
- components:
- - type: Transform
- pos: 44.5,26.5
- parent: 5350
- proto: WetFloorSign
entities:
- uid: 22726
@@ -179813,17 +176902,6 @@ entities:
- DoorStatus: Close
- proto: WindoorSecure
entities:
- - uid: 7206
- components:
- - type: Transform
- pos: -12.5,-4.5
- parent: 5350
- - type: DeviceLinkSink
- invokeCounter: 1
- - type: DeviceLinkSource
- linkedPorts:
- 987:
- - DoorStatus: Close
- uid: 15701
components:
- type: Transform
@@ -179842,58 +176920,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -17.5,48.5
parent: 5350
-- proto: WindoorSecureArmoryLocked
- entities:
- - uid: 1876
- components:
- - type: MetaData
- name: Armor Safe
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,38.5
- parent: 5350
- - type: Airlock
- autoClose: False
- - uid: 6962
- components:
- - type: MetaData
- name: Armor Safe
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,40.5
- parent: 5350
- - type: Airlock
- autoClose: False
- - uid: 8868
- components:
- - type: MetaData
- name: Laser Safe
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,37.5
- parent: 5350
- - type: Airlock
- autoClose: False
- - uid: 23027
- components:
- - type: MetaData
- name: Laser Safe
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,36.5
- parent: 5350
- - type: Airlock
- autoClose: False
- - uid: 28459
- components:
- - type: MetaData
- name: Armor Safe
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,39.5
- parent: 5350
- - type: Airlock
- autoClose: False
- proto: WindoorSecureAtmosphericsLocked
entities:
- uid: 5236
@@ -180044,19 +177070,13 @@ entities:
rot: 1.5707963267948966 rad
pos: 48.5,-1.5
parent: 5350
- - uid: 28376
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 45.5,15.5
- parent: 5350
- - uid: 28377
+ - uid: 23593
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 45.5,16.5
parent: 5350
- - uid: 28378
+ - uid: 23594
components:
- type: Transform
rot: 1.5707963267948966 rad
@@ -180071,10 +177091,21 @@ entities:
pos: -12.5,-4.5
parent: 5350
- type: DeviceLinkSink
- invokeCounter: 3
+ invokeCounter: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 10668:
+ - DoorStatus: Close
+ - uid: 10668
+ components:
+ - type: Transform
+ pos: -12.5,-4.5
+ parent: 5350
+ - type: DeviceLinkSink
+ invokeCounter: 2
- type: DeviceLinkSource
linkedPorts:
- 7206:
+ 987:
- DoorStatus: Close
- proto: WindoorSecureMedicalLocked
entities:
@@ -180199,6 +177230,46 @@ entities:
linkedPorts:
23114:
- DoorStatus: Close
+ - uid: 23634
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -9.5,38.5
+ parent: 5350
+ - type: Airlock
+ autoClose: False
+ - uid: 23635
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -9.5,40.5
+ parent: 5350
+ - type: Airlock
+ autoClose: False
+ - uid: 23636
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -9.5,39.5
+ parent: 5350
+ - type: Airlock
+ autoClose: False
+ - uid: 23652
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,37.5
+ parent: 5350
+ - type: Airlock
+ autoClose: False
+ - uid: 23732
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,36.5
+ parent: 5350
+ - type: Airlock
+ autoClose: False
- proto: WindoorSecureServiceLocked
entities:
- uid: 14569
@@ -180220,11 +177291,6 @@ entities:
parent: 5350
- proto: Window
entities:
- - uid: 1520
- components:
- - type: Transform
- pos: 0.5,-41.5
- parent: 5350
- uid: 2129
components:
- type: Transform
@@ -180403,6 +177469,7 @@ entities:
- uid: 13737
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: 5.5,-28.5
parent: 5350
- uid: 14151
@@ -180443,6 +177510,7 @@ entities:
- uid: 14672
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: -0.5,-58.5
parent: 5350
- uid: 14674
@@ -180453,6 +177521,7 @@ entities:
- uid: 14689
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 1.5,-47.5
parent: 5350
- uid: 14733
@@ -180643,28 +177712,9 @@ entities:
- uid: 22605
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: -0.5,-56.5
parent: 5350
- - uid: 24050
- components:
- - type: Transform
- pos: 32.5,47.5
- parent: 5350
- - uid: 24056
- components:
- - type: Transform
- pos: 30.5,47.5
- parent: 5350
- - uid: 24070
- components:
- - type: Transform
- pos: 31.5,47.5
- parent: 5350
- - uid: 28402
- components:
- - type: Transform
- pos: 1.5,-41.5
- parent: 5350
- proto: WindowDirectional
entities:
- uid: 22260
@@ -181372,11 +178422,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 30.5,42.5
parent: 5350
- - uid: 8867
- components:
- - type: Transform
- pos: -5.5,36.5
- parent: 5350
- uid: 8997
components:
- type: Transform
@@ -181389,12 +178434,6 @@ entities:
rot: 3.141592653589793 rad
pos: -36.5,34.5
parent: 5350
- - uid: 9376
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,37.5
- parent: 5350
- uid: 9514
components:
- type: Transform
@@ -181725,6 +178764,29 @@ entities:
rot: -1.5707963267948966 rad
pos: 7.5,20.5
parent: 5350
+ - uid: 23589
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,18.5
+ parent: 5350
+ - uid: 23590
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,15.5
+ parent: 5350
+ - uid: 23631
+ components:
+ - type: Transform
+ pos: -5.5,36.5
+ parent: 5350
+ - uid: 23638
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,37.5
+ parent: 5350
- uid: 24147
components:
- type: Transform
@@ -184678,7 +181740,7 @@ entities:
pos: -28.5,-5.5
parent: 5350
- type: Door
- secondsUntilStateChange: -35267.9
+ secondsUntilStateChange: -16035.059
state: Opening
- uid: 17570
components:
@@ -184762,6 +181824,13 @@ entities:
- type: Transform
pos: 27.49365,-58.477535
parent: 5350
+ - uid: 13782
+ components:
+ - type: Transform
+ parent: 6696
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- uid: 18439
components:
- type: Transform
diff --git a/Resources/Maps/oasis.yml b/Resources/Maps/oasis.yml
index 05bc7c2b739..6326e2d5321 100644
--- a/Resources/Maps/oasis.yml
+++ b/Resources/Maps/oasis.yml
@@ -12629,7 +12629,7 @@ entities:
pos: 38.5,-9.5
parent: 2
- type: Door
- secondsUntilStateChange: -11933.729
+ secondsUntilStateChange: -10670.9795
state: Opening
- type: DeviceLinkSource
lastSignals:
@@ -14550,7 +14550,7 @@ entities:
pos: -22.5,26.5
parent: 2
- type: Door
- secondsUntilStateChange: -33985.9
+ secondsUntilStateChange: -32723.152
state: Opening
- type: DeviceLinkSource
lastSignals:
@@ -15401,7 +15401,7 @@ entities:
lastSignals:
DoorStatus: True
- type: Door
- secondsUntilStateChange: -132814.52
+ secondsUntilStateChange: -131551.77
state: Opening
- uid: 6934
components:
@@ -15413,7 +15413,7 @@ entities:
lastSignals:
DoorStatus: True
- type: Door
- secondsUntilStateChange: -132817.14
+ secondsUntilStateChange: -131554.39
state: Opening
- uid: 6935
components:
@@ -15425,7 +15425,7 @@ entities:
lastSignals:
DoorStatus: True
- type: Door
- secondsUntilStateChange: -132816
+ secondsUntilStateChange: -131553.25
state: Opening
- uid: 6936
components:
@@ -15436,7 +15436,7 @@ entities:
lastSignals:
DoorStatus: True
- type: Door
- secondsUntilStateChange: -132815.22
+ secondsUntilStateChange: -131552.47
state: Opening
- proto: AirlockTheatreLocked
entities:
@@ -77007,6 +77007,18 @@ entities:
rot: 3.141592653589793 rad
pos: -54.5,7.5
parent: 2
+ - uid: 11826
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -45.5,3.5
+ parent: 2
+ - uid: 11827
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -45.5,2.5
+ parent: 2
- uid: 11829
components:
- type: Transform
@@ -77017,6 +77029,18 @@ entities:
- type: Transform
pos: -43.5,1.5
parent: 2
+ - uid: 13133
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 62.5,0.5
+ parent: 2
+ - uid: 13134
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 62.5,-0.5
+ parent: 2
- uid: 15043
components:
- type: Transform
@@ -77035,6 +77059,18 @@ entities:
rot: 1.5707963267948966 rad
pos: 59.5,-1.5
parent: 2
+ - uid: 15617
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 53.5,-2.5
+ parent: 2
+ - uid: 18032
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 62.5,-1.5
+ parent: 2
- uid: 18087
components:
- type: Transform
@@ -77109,6 +77145,12 @@ entities:
rot: 1.5707963267948966 rad
pos: 53.5,2.5
parent: 2
+ - uid: 23418
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 53.5,-1.5
+ parent: 2
- uid: 26296
components:
- type: Transform
@@ -78160,16 +78202,6 @@ entities:
parent: 2
- proto: ClosetEmergencyFilledRandom
entities:
- - uid: 1367
- components:
- - type: Transform
- pos: -46.5,3.5
- parent: 2
- - uid: 1371
- components:
- - type: Transform
- pos: -1.5,33.5
- parent: 2
- uid: 3478
components:
- type: Transform
@@ -78215,26 +78247,6 @@ entities:
- type: Transform
pos: 10.5,-39.5
parent: 2
- - uid: 11826
- components:
- - type: Transform
- pos: 0.5,-62.5
- parent: 2
- - uid: 13134
- components:
- - type: Transform
- pos: 59.5,5.5
- parent: 2
- - uid: 15617
- components:
- - type: Transform
- pos: -5.5,-62.5
- parent: 2
- - uid: 18032
- components:
- - type: Transform
- pos: 62.5,-0.5
- parent: 2
- uid: 18917
components:
- type: Transform
@@ -78300,11 +78312,6 @@ entities:
- type: Transform
pos: 45.5,-45.5
parent: 2
- - uid: 20868
- components:
- - type: Transform
- pos: 53.5,-2.5
- parent: 2
- uid: 23044
components:
- type: Transform
@@ -78372,11 +78379,6 @@ entities:
- type: Transform
pos: -11.5,-59.5
parent: 2
- - uid: 30121
- components:
- - type: Transform
- pos: 62.5,-1.5
- parent: 2
- proto: ClosetFireFilled
entities:
- uid: 3477
@@ -78429,11 +78431,6 @@ entities:
- type: Transform
pos: 13.5,-33.5
parent: 2
- - uid: 13133
- components:
- - type: Transform
- pos: 62.5,0.5
- parent: 2
- uid: 18965
components:
- type: Transform
@@ -78494,26 +78491,6 @@ entities:
- type: Transform
pos: 11.5,29.5
parent: 2
- - uid: 30122
- components:
- - type: Transform
- pos: -45.5,3.5
- parent: 2
- - uid: 30124
- components:
- - type: Transform
- pos: 1.5,-62.5
- parent: 2
- - uid: 30125
- components:
- - type: Transform
- pos: -6.5,-62.5
- parent: 2
- - uid: 30129
- components:
- - type: Transform
- pos: -1.5,32.5
- parent: 2
- proto: ClosetJanitorFilled
entities:
- uid: 3055
@@ -96292,7 +96269,7 @@ entities:
pos: -13.5,-1.5
parent: 2
- type: Door
- secondsUntilStateChange: -124138.516
+ secondsUntilStateChange: -122875.75
- type: DeviceNetwork
deviceLists:
- 18275
@@ -142240,7 +142217,7 @@ entities:
pos: 36.5,-35.5
parent: 2
- type: Door
- secondsUntilStateChange: -160970.33
+ secondsUntilStateChange: -159707.58
state: Opening
- uid: 5211
components:
@@ -166440,6 +166417,11 @@ entities:
- type: Transform
pos: 33.5,-3.5
parent: 2
+ - uid: 20868
+ components:
+ - type: Transform
+ pos: 62.5,-0.5
+ parent: 2
- uid: 20869
components:
- type: Transform
@@ -167067,12 +167049,24 @@ entities:
rot: 1.5707963267948966 rad
pos: -2.5,-39.5
parent: 2
+ - uid: 1367
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-33.5
+ parent: 2
- uid: 1369
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -2.5,-38.5
parent: 2
+ - uid: 1371
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-32.5
+ parent: 2
- uid: 3438
components:
- type: Transform
@@ -167148,18 +167142,6 @@ entities:
- type: Transform
pos: 44.5,-11.5
parent: 2
- - uid: 9676
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,-32.5
- parent: 2
- - uid: 11827
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,-33.5
- parent: 2
- proto: Stool
entities:
- uid: 930
@@ -193347,7 +193329,7 @@ entities:
lastSignals:
DoorStatus: True
- type: Door
- secondsUntilStateChange: -11936.562
+ secondsUntilStateChange: -10673.8125
state: Opening
- type: Airlock
autoClose: False
@@ -194781,7 +194763,7 @@ entities:
pos: 24.5,2.5
parent: 21002
- type: Door
- secondsUntilStateChange: -506174.9
+ secondsUntilStateChange: -504912.22
state: Opening
- uid: 28863
components:
diff --git a/Resources/Maps/omega.yml b/Resources/Maps/omega.yml
index a048ce2483f..534171d25de 100644
--- a/Resources/Maps/omega.yml
+++ b/Resources/Maps/omega.yml
@@ -1118,17 +1118,19 @@ entities:
color: '#FFFFFFFF'
id: Dirt
decals:
+ 2025: -42,-18
1030: -44,-28
1031: -45,-29
1032: -43,-27
1033: -44,-30
- 2025: -42,-18
- node:
cleanable: True
zIndex: 1
color: '#FFFFFFFF'
id: DirtHeavy
decals:
+ 2026: -41,-18
+ 2027: -40,-19
801: 7,-33
802: 8,-32
809: 5,-39
@@ -1141,16 +1143,6 @@ entities:
1537: -47,-8
1538: -47,-7
1539: -47,-10
- 2026: -41,-18
- 2027: -40,-19
- 2478: -48,0
- 2479: -50,1
- 2480: -57,3
- 2481: -50,4
- 2482: -55,1
- 2483: -54,0
- 2494: -54,6
- 2495: -55,8
2510: -51,-16
2511: -49,-18
2512: -49,-16
@@ -1159,6 +1151,14 @@ entities:
2515: -49,-17
2516: -49,-16
2520: -49,-5
+ 2478: -48,0
+ 2479: -50,1
+ 2480: -57,3
+ 2481: -50,4
+ 2482: -55,1
+ 2483: -54,0
+ 2494: -54,6
+ 2495: -55,8
- node:
cleanable: True
zIndex: 1
@@ -1184,6 +1184,14 @@ entities:
color: '#FFFFFFFF'
id: DirtLight
decals:
+ 2028: -40,-18
+ 910: 20,27
+ 911: 19,26
+ 912: 17,26
+ 913: 16,24
+ 914: 16,30
+ 915: 17,32
+ 916: 16,35
804: 8,-34
805: 8,-36
806: 13,-39
@@ -1219,13 +1227,6 @@ entities:
843: -6,-28
844: -6,-33
845: -11,-38
- 910: 20,27
- 911: 19,26
- 912: 17,26
- 913: 16,24
- 914: 16,30
- 915: 17,32
- 916: 16,35
1536: -47,-9
1543: -46,-13
1544: -45,-12
@@ -1237,7 +1238,6 @@ entities:
1550: -46,-7
1551: -45,-6
1552: -40,-6
- 2028: -40,-18
2517: -50,-16
2518: -50,-18
2519: -51,-16
@@ -1247,11 +1247,11 @@ entities:
color: '#FFFFFFFF'
id: DirtMedium
decals:
+ 2031: -41,-19
803: 8,-33
1540: -46,-10
1541: -46,-9
1542: -46,-12
- 2031: -41,-19
- node:
color: '#FFFFFFFF'
id: FlowersBROne
@@ -4470,7 +4470,7 @@ entities:
4: 2184
-13,4:
3: 2184
- 5: 546
+ 6: 546
-12,5:
0: 1
1: 3856
@@ -4479,7 +4479,7 @@ entities:
-11,5:
1: 784
-11,4:
- 6: 546
+ 5: 546
-11,6:
0: 49152
-11,3:
@@ -4809,9 +4809,9 @@ entities:
temperature: 293.15
moles:
- 0
+ - 6666.982
- 0
- 0
- - 6666.982
- 0
- 0
- 0
@@ -4824,9 +4824,9 @@ entities:
temperature: 293.15
moles:
- 0
- - 6666.982
- 0
- 0
+ - 6666.982
- 0
- 0
- 0
@@ -47363,6 +47363,12 @@ entities:
parent: 4812
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 5032
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -14.5,-27.5
+ parent: 4812
- uid: 5077
components:
- type: Transform
@@ -53859,11 +53865,6 @@ entities:
parent: 4812
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 5032
- components:
- - type: Transform
- pos: -14.5,-27.5
- parent: 4812
- uid: 5096
components:
- type: Transform
diff --git a/Resources/Maps/packed.yml b/Resources/Maps/packed.yml
index 57aeaad7882..5c912ee2c70 100644
--- a/Resources/Maps/packed.yml
+++ b/Resources/Maps/packed.yml
@@ -158,7 +158,7 @@ entities:
version: 6
2,2:
ind: 2,2
- tiles: ewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAACHQAAAAABewAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAHQAAAAACNgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAADewAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAHQAAAAAAHQAAAAADewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAHQAAAAABHQAAAAABHQAAAAABewAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAEQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAADeAAAAAADeAAAAAACeAAAAAAAeAAAAAACeAAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAADeAAAAAABeAAAAAAAewAAAAAAeAAAAAADeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAeAAAAAAAeAAAAAADeAAAAAADewAAAAAAeAAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAeAAAAAADeAAAAAAAeAAAAAADewAAAAAAHQAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAegAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAegAAAAAAegAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAABewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAACewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAA
+ tiles: ewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAACHQAAAAABewAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAHQAAAAACNgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAADewAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAHQAAAAAAHQAAAAADewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAHQAAAAABHQAAAAABHQAAAAABewAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAEQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAADeAAAAAADeAAAAAACeAAAAAAAeAAAAAACeAAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAADeAAAAAABeAAAAAAAewAAAAAAeAAAAAADeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAeAAAAAAAeAAAAAADeAAAAAADewAAAAAAeAAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAeAAAAAADeAAAAAAAeAAAAAADewAAAAAAHQAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAegAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAegAAAAAAegAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAABewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAACewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAA
version: 6
1,3:
ind: 1,3
@@ -166,7 +166,7 @@ entities:
version: 6
2,3:
ind: 2,3
- tiles: HQAAAAADewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: HQAAAAADewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
4,-1:
ind: 4,-1
@@ -174,7 +174,7 @@ entities:
version: 6
4,-2:
ind: 4,-2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAeAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAACeAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAagAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAeAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAACeAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAagAAAAAA
version: 6
3,0:
ind: 3,0
@@ -1287,17 +1287,16 @@ entities:
0: 36795
9,10:
0: 15291
- 9,12:
- 1: 4369
9,11:
- 0: 8
+ 1: 57344
10,9:
0: 3
1: 3720
10,10:
- 0: 40944
+ 0: 36848
10,11:
- 0: 2203
+ 1: 12561
+ 0: 2184
10,12:
1: 50244
11,10:
@@ -1367,7 +1366,7 @@ entities:
18,-1:
0: 65399
18,-5:
- 0: 62692
+ 0: 61440
18,0:
0: 4081
19,-4:
@@ -3066,24 +3065,20 @@ entities:
color: '#FFFFFFFF'
id: DirtHeavy
decals:
+ 2895: 41,34
+ 2901: 39,34
+ 2906: 46,27
+ 2922: 49,33
426: 40,-41
427: 40,-40
484: 31,-36
1485: 18,21
1507: 23,23
2260: 55,-15
- 2895: 41,34
- 2901: 39,34
- 2906: 46,27
- 2922: 49,33
2995: 54,32
2996: 53,37
2997: 58,36
- 3007: 59,34
- 3008: 59,38
3009: 58,32
- 3010: 59,32
- 3011: 59,40
3029: 38,22
3041: 54,47
3132: 58,31
@@ -3167,6 +3162,10 @@ entities:
5182: 5,-21
5253: 30,-26
5256: 30,-25
+ 3010: 59,32
+ 3011: 59,40
+ 3007: 59,34
+ 3008: 59,38
- node:
cleanable: True
zIndex: 1
@@ -3178,9 +3177,6 @@ entities:
2932: 37,19
2933: 38,17
3000: 55,34
- 3001: 54,35
- 3002: 56,38
- 3003: 54,39
3024: 37,31
3025: 40,30
3033: 59,36
@@ -3205,7 +3201,6 @@ entities:
3435: 6,31
3437: 8,30
3457: 6,23
- 3592: 4,40
3608: 4,38
3609: 6,37
3865: 70,-2
@@ -3286,12 +3281,22 @@ entities:
5184: 7,-19
5238: 31,-24
5254: 31,-26
+ 3001: 54,35
+ 3002: 56,38
+ 3003: 54,39
+ 3592: 4,40
- node:
cleanable: True
zIndex: 1
color: '#FFFFFFFF'
id: DirtLight
decals:
+ 2896: 39,35
+ 2897: 41,36
+ 2900: 41,33
+ 2902: 39,36
+ 2903: 40,34
+ 2908: 49,35
429: 42,-41
430: 42,-40
431: 46,-41
@@ -3362,12 +3367,6 @@ entities:
2267: 57,-16
2268: 57,-15
2269: 57,-14
- 2896: 39,35
- 2897: 41,36
- 2900: 41,33
- 2902: 39,36
- 2903: 40,34
- 2908: 49,35
2935: 39,18
2982: 54,34
2983: 55,37
@@ -3383,8 +3382,6 @@ entities:
2993: 53,34
2994: 53,33
2999: 55,35
- 3004: 57,39
- 3006: 55,32
3012: 55,38
3013: 46,33
3015: 36,30
@@ -3492,12 +3489,18 @@ entities:
5210: 19,-37
5212: 19,-29
5236: 31,-25
+ 3004: 57,39
+ 3006: 55,32
- node:
cleanable: True
zIndex: 1
color: '#FFFFFFFF'
id: DirtMedium
decals:
+ 2891: 33,30
+ 2898: 40,33
+ 2899: 39,35
+ 2918: 58,40
421: 38,-41
422: 39,-40
423: 45,-41
@@ -3515,10 +3518,6 @@ entities:
1506: 23,21
2261: 56,-14
2262: 55,-16
- 2891: 33,30
- 2898: 40,33
- 2899: 39,35
- 2918: 58,40
2936: 37,18
2975: 53,32
2976: 56,34
@@ -3527,9 +3526,6 @@ entities:
2979: 56,32
2981: 55,31
3019: 37,30
- 3020: 39,30
- 3021: 43,30
- 3022: 38,31
3023: 42,31
3043: 56,47
3291: 8,25
@@ -3593,6 +3589,9 @@ entities:
5211: 22,-36
5237: 31,-25
5257: 30,-24
+ 3020: 39,30
+ 3021: 43,30
+ 3022: 38,31
- node:
color: '#FFFFFFFF'
id: FlowersBRThree
@@ -8090,11 +8089,6 @@ entities:
- type: Transform
pos: 85.5,4.5
parent: 2
- - uid: 3072
- components:
- - type: Transform
- pos: 74.5,-17.5
- parent: 2
- uid: 11758
components:
- type: Transform
@@ -8135,11 +8129,6 @@ entities:
- type: Transform
pos: 101.5,-20.5
parent: 2
- - uid: 15456
- components:
- - type: Transform
- pos: 40.5,43.5
- parent: 2
- proto: AirlockExternalAtmosphericsLocked
entities:
- uid: 4391
@@ -8461,17 +8450,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 87.5,4.5
parent: 2
- - uid: 15442
- components:
- - type: Transform
- pos: 74.5,-19.5
- parent: 2
- - uid: 15457
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 40.5,45.5
- parent: 2
- proto: AirlockExternalGlassShuttleLocked
entities:
- uid: 509
@@ -10921,12 +10899,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 3.5,23.5
parent: 2
- - uid: 15466
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 40.5,45.5
- parent: 2
- proto: AtmosFixBlockerMarker
entities:
- uid: 1457
@@ -22071,21 +22043,6 @@ entities:
- type: Transform
pos: 11.5,-29.5
parent: 2
- - uid: 15463
- components:
- - type: Transform
- pos: 54.5,-19.5
- parent: 2
- - uid: 15464
- components:
- - type: Transform
- pos: 55.5,-19.5
- parent: 2
- - uid: 15465
- components:
- - type: Transform
- pos: 40.5,42.5
- parent: 2
- proto: CableApcStack
entities:
- uid: 5386
@@ -34427,11 +34384,6 @@ entities:
- type: Transform
pos: 79.5,-9.5
parent: 2
- - uid: 3851
- components:
- - type: Transform
- pos: 74.5,-18.5
- parent: 2
- uid: 3904
components:
- type: Transform
@@ -36955,11 +36907,6 @@ entities:
- type: Transform
pos: 32.5,-22.5
parent: 2
- - uid: 15455
- components:
- - type: Transform
- pos: 40.5,44.5
- parent: 2
- proto: Cautery
entities:
- uid: 7791
@@ -38178,11 +38125,6 @@ entities:
- type: Transform
pos: -21.5,-11.5
parent: 2
- - uid: 3852
- components:
- - type: Transform
- pos: 52.5,-20.5
- parent: 2
- uid: 5261
components:
- type: Transform
@@ -38203,6 +38145,11 @@ entities:
- type: Transform
pos: 36.5,-38.5
parent: 2
+ - uid: 5685
+ components:
+ - type: Transform
+ pos: 52.5,-20.5
+ parent: 2
- uid: 5901
components:
- type: Transform
@@ -38265,11 +38212,6 @@ entities:
- type: Transform
pos: 24.5,-5.5
parent: 2
- - uid: 3853
- components:
- - type: Transform
- pos: 51.5,-20.5
- parent: 2
- uid: 7537
components:
- type: Transform
@@ -38280,6 +38222,11 @@ entities:
- type: Transform
pos: 5.5,-31.5
parent: 2
+ - uid: 15442
+ components:
+ - type: Transform
+ pos: 51.5,-20.5
+ parent: 2
- proto: ClosetFireFilled
entities:
- uid: 99
@@ -38379,11 +38326,6 @@ entities:
- type: Transform
pos: 37.5,36.5
parent: 2
- - uid: 3854
- components:
- - type: Transform
- pos: 53.5,-20.5
- parent: 2
- uid: 5437
components:
- type: Transform
@@ -38399,6 +38341,11 @@ entities:
- type: Transform
pos: 65.5,9.5
parent: 2
+ - uid: 13125
+ components:
+ - type: Transform
+ pos: 53.5,-20.5
+ parent: 2
- uid: 13969
components:
- type: Transform
@@ -38882,13 +38829,6 @@ entities:
- type: Transform
pos: 102.40892,-16.268303
parent: 2
-- proto: ClothingMaskBlushingMime
- entities:
- - uid: 8345
- components:
- - type: Transform
- pos: 25.245346,6.3236885
- parent: 2
- proto: ClothingMaskBreathMedical
entities:
- uid: 12657
@@ -38935,6 +38875,13 @@ entities:
- type: Transform
pos: 81.53254,11.610725
parent: 2
+- proto: ClothingMaskSexyMime
+ entities:
+ - uid: 8345
+ components:
+ - type: Transform
+ pos: 25.245346,6.3236885
+ parent: 2
- proto: ClothingMaskSterile
entities:
- uid: 11969
@@ -40838,16 +40785,6 @@ entities:
- type: Transform
pos: 86.5,4.5
parent: 2
- - uid: 14796
- components:
- - type: Transform
- pos: 74.5,-18.5
- parent: 2
- - uid: 15454
- components:
- - type: Transform
- pos: 40.5,44.5
- parent: 2
- proto: DefaultStationBeaconEvac
entities:
- uid: 4139
@@ -63566,10 +63503,25 @@ entities:
- type: Transform
pos: 79.5,-8.5
parent: 2
- - uid: 3844
+ - uid: 3851
+ components:
+ - type: Transform
+ pos: 73.5,-17.5
+ parent: 2
+ - uid: 3852
components:
- type: Transform
- pos: 36.5,50.5
+ pos: 74.5,-17.5
+ parent: 2
+ - uid: 3853
+ components:
+ - type: Transform
+ pos: 75.5,-17.5
+ parent: 2
+ - uid: 3854
+ components:
+ - type: Transform
+ pos: 76.5,-17.5
parent: 2
- uid: 3855
components:
@@ -66841,6 +66793,16 @@ entities:
- type: Transform
pos: 35.5,52.5
parent: 2
+ - uid: 14796
+ components:
+ - type: Transform
+ pos: 39.5,47.5
+ parent: 2
+ - uid: 14797
+ components:
+ - type: Transform
+ pos: 40.5,47.5
+ parent: 2
- uid: 14800
components:
- type: Transform
@@ -67271,11 +67233,6 @@ entities:
- type: Transform
pos: 33.5,57.5
parent: 2
- - uid: 15449
- components:
- - type: Transform
- pos: 36.5,48.5
- parent: 2
- proto: GrilleBroken
entities:
- uid: 1247
@@ -67339,11 +67296,6 @@ entities:
- type: Transform
pos: 1.5,42.5
parent: 2
- - uid: 4173
- components:
- - type: Transform
- pos: 36.5,49.5
- parent: 2
- uid: 5289
components:
- type: Transform
@@ -67444,6 +67396,11 @@ entities:
- type: Transform
pos: 47.5,51.5
parent: 2
+ - uid: 14795
+ components:
+ - type: Transform
+ pos: 38.5,47.5
+ parent: 2
- uid: 14798
components:
- type: Transform
@@ -69289,15 +69246,15 @@ entities:
- type: Transform
pos: 2.5,-8.5
parent: 2
- - uid: 12857
+ - uid: 12856
components:
- type: Transform
- pos: 71.5,34.5
+ pos: 54.5,-20.5
parent: 2
- - uid: 15450
+ - uid: 12857
components:
- type: Transform
- pos: 54.5,-20.5
+ pos: 71.5,34.5
parent: 2
- proto: MaintenanceToolSpawner
entities:
@@ -75566,6 +75523,26 @@ entities:
- type: Transform
pos: 79.5,-8.5
parent: 2
+ - uid: 3865
+ components:
+ - type: Transform
+ pos: 73.5,-17.5
+ parent: 2
+ - uid: 3866
+ components:
+ - type: Transform
+ pos: 74.5,-17.5
+ parent: 2
+ - uid: 3867
+ components:
+ - type: Transform
+ pos: 75.5,-17.5
+ parent: 2
+ - uid: 3868
+ components:
+ - type: Transform
+ pos: 76.5,-17.5
+ parent: 2
- uid: 3869
components:
- type: Transform
@@ -78342,16 +78319,6 @@ entities:
- type: Transform
pos: 85.5,3.5
parent: 2
- - uid: 15453
- components:
- - type: Transform
- pos: 41.5,43.5
- parent: 2
- - uid: 15458
- components:
- - type: Transform
- pos: 75.5,-17.5
- parent: 2
- proto: SignEVA
entities:
- uid: 5204
@@ -87367,12 +87334,17 @@ entities:
- uid: 3071
components:
- type: Transform
- pos: 55.5,-20.5
+ pos: 39.5,43.5
+ parent: 2
+ - uid: 3072
+ components:
+ - type: Transform
+ pos: 40.5,43.5
parent: 2
- uid: 3073
components:
- type: Transform
- pos: 55.5,-21.5
+ pos: 41.5,43.5
parent: 2
- uid: 3074
components:
@@ -88874,6 +88846,11 @@ entities:
- type: Transform
pos: 66.5,-20.5
parent: 2
+ - uid: 3844
+ components:
+ - type: Transform
+ pos: 57.5,-20.5
+ parent: 2
- uid: 3847
components:
- type: Transform
@@ -88894,26 +88871,6 @@ entities:
- type: Transform
pos: 72.5,-17.5
parent: 2
- - uid: 3865
- components:
- - type: Transform
- pos: 76.5,-17.5
- parent: 2
- - uid: 3866
- components:
- - type: Transform
- pos: 76.5,-18.5
- parent: 2
- - uid: 3867
- components:
- - type: Transform
- pos: 76.5,-19.5
- parent: 2
- - uid: 3868
- components:
- - type: Transform
- pos: 73.5,-19.5
- parent: 2
- uid: 3879
components:
- type: Transform
@@ -89117,12 +89074,17 @@ entities:
- uid: 4172
components:
- type: Transform
- pos: 75.5,-17.5
+ pos: 54.5,-21.5
+ parent: 2
+ - uid: 4173
+ components:
+ - type: Transform
+ pos: 55.5,-21.5
parent: 2
- uid: 4174
components:
- type: Transform
- pos: 73.5,-17.5
+ pos: 55.5,-20.5
parent: 2
- uid: 4175
components:
@@ -89534,11 +89496,6 @@ entities:
- type: Transform
pos: 53.5,46.5
parent: 2
- - uid: 5685
- components:
- - type: Transform
- pos: 54.5,-21.5
- parent: 2
- uid: 5724
components:
- type: Transform
@@ -89612,7 +89569,7 @@ entities:
- uid: 6212
components:
- type: Transform
- pos: 39.5,43.5
+ pos: 56.5,-20.5
parent: 2
- uid: 6335
components:
@@ -90919,11 +90876,6 @@ entities:
- type: Transform
pos: 20.5,-60.5
parent: 2
- - uid: 12856
- components:
- - type: Transform
- pos: 39.5,45.5
- parent: 2
- uid: 12888
components:
- type: Transform
@@ -91069,11 +91021,6 @@ entities:
- type: Transform
pos: 36.5,20.5
parent: 2
- - uid: 13125
- components:
- - type: Transform
- pos: 38.5,45.5
- parent: 2
- uid: 13184
components:
- type: Transform
@@ -92304,17 +92251,6 @@ entities:
- type: Transform
pos: 4.5,41.5
parent: 2
- - uid: 14795
- components:
- - type: Transform
- pos: 56.5,-20.5
- parent: 2
- - uid: 14797
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 57.5,-20.5
- parent: 2
- uid: 14809
components:
- type: Transform
@@ -92440,21 +92376,6 @@ entities:
- type: Transform
pos: 12.5,-54.5
parent: 2
- - uid: 15451
- components:
- - type: Transform
- pos: 41.5,43.5
- parent: 2
- - uid: 15452
- components:
- - type: Transform
- pos: 41.5,45.5
- parent: 2
- - uid: 15459
- components:
- - type: Transform
- pos: 75.5,-19.5
- parent: 2
- proto: WallReinforcedRust
entities:
- uid: 14967
diff --git a/Resources/Maps/plasma.yml b/Resources/Maps/plasma.yml
index 17be2136162..b5b2c2ee6c3 100644
--- a/Resources/Maps/plasma.yml
+++ b/Resources/Maps/plasma.yml
@@ -29,7 +29,6 @@ tilemap:
15: FloorKitchen
16: FloorLaundry
26: FloorLino
- 43: FloorMowedAstroGrass
20: FloorPlanetGrass
35: FloorRGlass
18: FloorReinforced
@@ -63,8 +62,6 @@ entities:
- type: Broadphase
- type: OccluderTree
- type: LoadedMap
- - type: Parallax
- parallax: PlasmaStation
- uid: 2
components:
- type: MetaData
@@ -76,15 +73,15 @@ entities:
chunks:
-10,-4:
ind: -10,-4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAAB
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAHwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAD
version: 6
-1,0:
ind: -1,0
- tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAALBwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAGAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAFBwAAAAAKAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAABAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAMBwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAHAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAGBwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAACBwAAAAAABwAAAAAMBwAAAAAABwAAAAABBwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAABwAAAAADBwAAAAAABwAAAAAIBwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
version: 6
-1,-1:
ind: -1,-1
- tiles: gwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAADBAAAAAADBAAAAAABBAAAAAAABAAAAAACgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAACwAAAAAABAAAAAAABAAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAAABAAAAAADgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAACwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAABgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAAABAAAAAABBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAADBAAAAAADBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAABBAAAAAAABAAAAAAAgwAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAABBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAABBAAAAAADBAAAAAABBAAAAAABBAAAAAADBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAACBAAAAAACBAAAAAADBAAAAAABgwAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAACBAAAAAABgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAGAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAA
+ tiles: gwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAADBAAAAAADBAAAAAACBAAAAAACBAAAAAABBAAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAABBAAAAAADBAAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAACBAAAAAABgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAACwAAAAAABAAAAAADBAAAAAABBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAABgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAACwAAAAAABAAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAADgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAACBAAAAAACBAAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAADBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAABBAAAAAACBAAAAAACBAAAAAABgwAAAAAABAAAAAADBAAAAAAABAAAAAADBAAAAAADBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAAABAAAAAACBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAADBAAAAAADgwAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAADBAAAAAABgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAKBwAAAAAMBwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAMAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAABBwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAA
version: 6
0,-2:
ind: 0,-2
@@ -96,207 +93,207 @@ entities:
version: 6
-5,-5:
ind: -5,-5
- tiles: BwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAKBwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAgwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAgwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAGBwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAALBwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAIgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAMBwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
+ tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAALBwAAAAACBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAALBwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAEgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAKBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
version: 6
-2,-1:
ind: -2,-1
- tiles: BwAAAAAACgAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAABwAAAAAECgAAAAAACgAAAAAACgAAAAAABwAAAAADBwAAAAAABwAAAAAAgwAAAAAABAAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAJBwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAADBAAAAAABBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAACAgAAAAAAAgAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAABBAAAAAABBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAJAgAAAAAABwAAAAADgwAAAAAABAAAAAACBAAAAAADBAAAAAADBAAAAAACBAAAAAADBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAADBAAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAACBAAAAAACgwAAAAAAAwAAAAADBwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAABgwAAAAAAgwAAAAAABwAAAAAJAgAAAAAABwAAAAAFgwAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAABBAAAAAABBAAAAAADBAAAAAABBAAAAAABBAAAAAACBAAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAKgwAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAAABAAAAAAABAAAAAABgwAAAAAABAAAAAADBAAAAAADBAAAAAABgwAAAAAAgwAAAAAABwAAAAAIAgAAAAAABwAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAADBAAAAAADBAAAAAABBAAAAAABBAAAAAADBAAAAAADBAAAAAADBAAAAAACBAAAAAACgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAABBAAAAAACBAAAAAABBAAAAAACgwAAAAAAAwAAAAACAwAAAAADAwAAAAABgwAAAAAAgwAAAAAABwAAAAABAgAAAAAABwAAAAAAgwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
+ tiles: BwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAALBwAAAAADgwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAAABwAAAAAABwAAAAABAgAAAAAABwAAAAAABwAAAAAIBwAAAAAHBwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAACwAAAAAABwAAAAAFBwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAACBAAAAAACBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAALAgAAAAAAAgAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAACAgAAAAAABwAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAACBAAAAAABBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAHAgAAAAAABwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAABBAAAAAABBAAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAAAgwAAAAAAAwAAAAADBwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAACBAAAAAACgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAADBAAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAAABAAAAAADgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAADgwAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAAABAAAAAABBAAAAAACgwAAAAAABAAAAAAABAAAAAAABAAAAAADgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAACBAAAAAAABAAAAAACBAAAAAABgwAAAAAABAAAAAABBAAAAAABBAAAAAABgwAAAAAAgwAAAAAABwAAAAAJAgAAAAAABwAAAAAAgwAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAADBAAAAAAABAAAAAADgwAAAAAAAwAAAAABAwAAAAAAAwAAAAACgwAAAAAAgwAAAAAABwAAAAALAgAAAAAABwAAAAAAgwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
version: 6
-3,0:
ind: -3,0
- tiles: gwAAAAAABQAAAAACBQAAAAAABQAAAAABBQAAAAADBQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADBQAAAAAABQAAAAACBQAAAAACBQAAAAAABQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAACBQAAAAABBQAAAAACBQAAAAACBQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAEBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAMgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAgwAAAAAABAAAAAADBAAAAAAABAAAAAAABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAACBAAAAAACgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAAgwAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAAgwAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAAA
+ tiles: gwAAAAAABQAAAAACBQAAAAADBQAAAAACBQAAAAAABQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACBQAAAAACBQAAAAADBQAAAAABBQAAAAADBQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAABBQAAAAABBQAAAAAABQAAAAABBQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAACBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAEBwAAAAAGBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAIBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAgwAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAACBAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAABBAAAAAADgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAAgwAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAAA
version: 6
-3,-1:
ind: -3,-1
- tiles: BwAAAAAABwAAAAAABwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAFCgAAAAAACgAAAAAACgAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAMBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAwAAAAADgwAAAAAABwAAAAAKAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAABAAAAAADBAAAAAACBAAAAAAAAwAAAAAAAwAAAAAAgwAAAAAABQAAAAADBQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADBAAAAAAABAAAAAACBAAAAAAAAwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADBAAAAAADBAAAAAABBAAAAAACAwAAAAACAwAAAAADgwAAAAAABQAAAAABBQAAAAAABQAAAAACBQAAAAACBQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAABBAAAAAADAwAAAAAABQAAAAABBQAAAAABBQAAAAACBQAAAAAABQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAAABAAAAAABgwAAAAAABQAAAAAABQAAAAACBQAAAAADBQAAAAAABQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAADBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAABAAAAAADBAAAAAADBAAAAAACAwAAAAADAwAAAAAAgwAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACBAAAAAACBAAAAAAABAAAAAABAwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAABAAAAAACBAAAAAACBAAAAAAAAwAAAAACAwAAAAABgwAAAAAAAwAAAAADgwAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
+ tiles: BwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAJBwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACgAAAAAACgAAAAAACgAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAALBwAAAAAAgwAAAAAABwAAAAAIBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADBAAAAAAABAAAAAADBAAAAAABAwAAAAACAwAAAAABgwAAAAAABQAAAAACBQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABBAAAAAAABAAAAAAABAAAAAACAwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAAwAAAAABgwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADBAAAAAADBAAAAAACBAAAAAACAwAAAAADAwAAAAACgwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAABBQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACBAAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAACAwAAAAACBQAAAAACBQAAAAAABQAAAAACBQAAAAAABQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAABBAAAAAABBAAAAAACBAAAAAADBAAAAAAABAAAAAADgwAAAAAABQAAAAACBQAAAAAABQAAAAADBQAAAAABBQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACBAAAAAACBAAAAAADBAAAAAAABAAAAAACBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACBAAAAAABBAAAAAADBAAAAAACAwAAAAADAwAAAAACgwAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACBAAAAAACBAAAAAAABAAAAAAAAwAAAAABAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACBAAAAAACBAAAAAACBAAAAAADAwAAAAADAwAAAAADgwAAAAAAAwAAAAACgwAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
version: 6
-6,0:
ind: -6,0
- tiles: AwAAAAACAwAAAAAAAwAAAAADgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADAAAAAAABAAAAAACDAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAADAwAAAAACgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADAAAAAAABAAAAAABDAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAADAwAAAAADgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADAAAAAAABAAAAAAADAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAADBAAAAAAAAwAAAAACgwAAAAAAAwAAAAACBAAAAAAABAAAAAABAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAABBAAAAAADAwAAAAAAgwAAAAAAAwAAAAADBAAAAAAABAAAAAABAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABBAAAAAAABAAAAAADAwAAAAAAgwAAAAAAAwAAAAACBAAAAAACBAAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAwAAAAADBAAAAAADBAAAAAACAwAAAAABgwAAAAAAAwAAAAAABAAAAAACBAAAAAADBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAwAAAAADBAAAAAACBAAAAAADAwAAAAADgwAAAAAAAwAAAAADBAAAAAABBAAAAAABAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABAAAAAADBAAAAAADBAAAAAACAwAAAAADgwAAAAAAAwAAAAADBAAAAAADBAAAAAACAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAACBAAAAAADBAAAAAABCgAAAAAACgAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAACBAAAAAACCgAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAA
+ tiles: KgAAAAAAKgAAAAAAKgAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADAAAAAAABAAAAAACDAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADAAAAAAABAAAAAADDAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADAAAAAAABAAAAAAADAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAABBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAACBAAAAAACAwAAAAACgwAAAAAAAwAAAAAABAAAAAAABAAAAAADAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAHgwAAAAAAgwAAAAAABAAAAAAABAAAAAACBAAAAAAAAwAAAAACgwAAAAAAAwAAAAACBAAAAAACBAAAAAABAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAEgwAAAAAAgwAAAAAAAwAAAAADBAAAAAAABAAAAAAAAwAAAAABgwAAAAAAAwAAAAABBAAAAAADBAAAAAABAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAwAAAAABBAAAAAAABAAAAAAAAwAAAAACgwAAAAAAAwAAAAADBAAAAAAABAAAAAACBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAwAAAAACBAAAAAADBAAAAAABAwAAAAABgwAAAAAAAwAAAAABBAAAAAADBAAAAAACAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABAAAAAADBAAAAAADBAAAAAADAwAAAAABgwAAAAAAAwAAAAADBAAAAAABBAAAAAADAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABAAAAAACBAAAAAADBAAAAAADBAAAAAACBAAAAAADBAAAAAAABAAAAAABCgAAAAAACgAAAAAABwAAAAACBwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAIgAAAAACIgAAAAADBAAAAAADCgAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAA
version: 6
-4,-1:
ind: -4,-1
- tiles: CgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAgwAAAAAAgwAAAAAABQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABQAAAAABBQAAAAABBQAAAAAABQAAAAAABQAAAAABBQAAAAABgwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABQAAAAAABQAAAAABBQAAAAACBQAAAAAABQAAAAADBQAAAAADgwAAAAAAAgAAAAAAAgAAAAAABwAAAAAACgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACgAAAAAABwAAAAAABQAAAAACBQAAAAABBQAAAAAABQAAAAABBQAAAAADBQAAAAACgwAAAAAACwAAAAAACwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABgwAAAAAABQAAAAAABQAAAAABBQAAAAABBQAAAAADBQAAAAACBQAAAAACgwAAAAAAAwAAAAACAwAAAAABgwAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAACgwAAAAAAgwAAAAAABQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAAwAAAAADAwAAAAAABQAAAAAAAwAAAAACAwAAAAADAwAAAAAAgwAAAAAAAwAAAAAAAwAAAAABgwAAAAAABQAAAAABBQAAAAADBQAAAAACBQAAAAAABQAAAAABBQAAAAACBQAAAAAABQAAAAAABQAAAAABBQAAAAADBQAAAAADBQAAAAADgwAAAAAAAwAAAAADAwAAAAACgwAAAAAABQAAAAABBQAAAAADBQAAAAABBQAAAAABBQAAAAAABQAAAAABBQAAAAACBQAAAAAABQAAAAABBQAAAAAABQAAAAABBQAAAAACgwAAAAAAAwAAAAACAwAAAAABAwAAAAABBQAAAAACBQAAAAABBQAAAAAABQAAAAABBQAAAAAABQAAAAABBQAAAAACBQAAAAACBQAAAAABBQAAAAAABQAAAAABBQAAAAADCwAAAAAAAwAAAAADAwAAAAABgwAAAAAABQAAAAAABQAAAAADBQAAAAADBQAAAAAABQAAAAAABQAAAAADBQAAAAABBQAAAAABBQAAAAADBQAAAAACBQAAAAAABQAAAAADCwAAAAAAAwAAAAADAwAAAAACgwAAAAAABQAAAAADBQAAAAABBQAAAAAABQAAAAAABQAAAAABBQAAAAAABQAAAAADBQAAAAACBQAAAAABBQAAAAABBQAAAAACBQAAAAACCwAAAAAAAwAAAAADAwAAAAACgwAAAAAABQAAAAADBQAAAAACgwAAAAAAgwAAAAAAAwAAAAABAwAAAAACBQAAAAACBQAAAAADBQAAAAABBQAAAAACBQAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAADgwAAAAAABQAAAAABBQAAAAABBQAAAAADBQAAAAADBQAAAAACBQAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAAABAAAAAADBAAAAAACgwAAAAAAAwAAAAACAwAAAAABAwAAAAAABQAAAAACBQAAAAADBQAAAAACBQAAAAADBQAAAAABBQAAAAAD
+ tiles: CgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAALCgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAgwAAAAAAgwAAAAAABQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABQAAAAADBQAAAAACBQAAAAABBQAAAAAABQAAAAACBQAAAAADgwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABQAAAAADBQAAAAAABQAAAAAABQAAAAABBQAAAAACBQAAAAADgwAAAAAAAgAAAAAAAgAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAABBwAAAAAABQAAAAAABQAAAAADBQAAAAADBQAAAAAABQAAAAADBQAAAAADgwAAAAAAAwAAAAADAwAAAAABgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAABQAAAAACBQAAAAADBQAAAAACBQAAAAAABQAAAAABBQAAAAACgwAAAAAAAwAAAAABAwAAAAACgwAAAAAABAAAAAACBAAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAACgwAAAAAAgwAAAAAABQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAAwAAAAACAwAAAAABBQAAAAAAAwAAAAACAwAAAAABAwAAAAAAgwAAAAAAAwAAAAADAwAAAAABgwAAAAAABQAAAAABBQAAAAAABQAAAAADBQAAAAACBQAAAAABBQAAAAABBQAAAAABBQAAAAABBQAAAAABBQAAAAAABQAAAAAABQAAAAAAgwAAAAAAAwAAAAACAwAAAAABgwAAAAAABQAAAAACBQAAAAACBQAAAAAABQAAAAAABQAAAAABBQAAAAACBQAAAAACBQAAAAABBQAAAAAABQAAAAAABQAAAAACBQAAAAACgwAAAAAAAwAAAAABAwAAAAACAwAAAAAABQAAAAACBQAAAAADBQAAAAABBQAAAAADBQAAAAACBQAAAAAABQAAAAAABQAAAAABBQAAAAACBQAAAAACBQAAAAABBQAAAAAACwAAAAAAAwAAAAACAwAAAAAAgwAAAAAABQAAAAAABQAAAAACBQAAAAACBQAAAAADBQAAAAAABQAAAAAABQAAAAADBQAAAAAABQAAAAABBQAAAAABBQAAAAACBQAAAAAACwAAAAAAAwAAAAADAwAAAAACgwAAAAAABQAAAAABBQAAAAAABQAAAAADBQAAAAACBQAAAAAABQAAAAACBQAAAAAABQAAAAABBQAAAAAABQAAAAABBQAAAAACBQAAAAADCwAAAAAAAwAAAAABAwAAAAAAgwAAAAAABQAAAAABBQAAAAACgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAABBQAAAAAABQAAAAAABQAAAAABBQAAAAADBQAAAAABgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAABgwAAAAAABQAAAAADBQAAAAACBQAAAAACBQAAAAADBQAAAAADBQAAAAACBAAAAAADBAAAAAACBAAAAAADBAAAAAADBAAAAAABBAAAAAACgwAAAAAAAwAAAAAAAwAAAAADAwAAAAACBQAAAAACBQAAAAABBQAAAAABBQAAAAACBQAAAAACBQAAAAAB
version: 6
-4,0:
ind: -4,0
- tiles: BAAAAAABBAAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAACgwAAAAAAAwAAAAABAwAAAAABgwAAAAAABQAAAAAABQAAAAABBQAAAAADBQAAAAABBQAAAAADBQAAAAADgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAAgwAAAAAABQAAAAABBQAAAAADBQAAAAAABQAAAAADBQAAAAAABQAAAAACgwAAAAAABAAAAAADBAAAAAADBAAAAAACgwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADgwAAAAAAgwAAAAAABQAAAAACBQAAAAADBQAAAAADBQAAAAABBQAAAAADgwAAAAAABAAAAAAABAAAAAACBAAAAAABgwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADAAAAAAADAAAAAAADAAAAAAAgwAAAAAAAwAAAAAAIwAAAAADIwAAAAABAwAAAAABAwAAAAABgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAABIwAAAAACIwAAAAADAwAAAAACAwAAAAABgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: BAAAAAADBAAAAAADBAAAAAABBAAAAAACBAAAAAABBAAAAAAAgwAAAAAAAwAAAAAAAwAAAAABgwAAAAAABQAAAAABBQAAAAACBQAAAAABBQAAAAAABQAAAAACBQAAAAABgwAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAACgwAAAAAABQAAAAAABQAAAAAABQAAAAABBQAAAAAABQAAAAACBQAAAAADgwAAAAAABAAAAAABBAAAAAABBAAAAAADgwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAADBQAAAAABBQAAAAADBQAAAAAAgwAAAAAABAAAAAAABAAAAAADBAAAAAADgwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADAAAAAAADAAAAAAADAAAAAAAgwAAAAAAAwAAAAACIwAAAAACIwAAAAACAwAAAAAAAwAAAAABgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAABIwAAAAADIwAAAAAAAwAAAAABAwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAADgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-5,-1:
ind: -5,-1
- tiles: BwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADAgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAABCwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAgwAAAAAABQAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAgwAAAAAABQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAAgwAAAAAABQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAADgwAAAAAABQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAADgwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAAAgwAAAAAABQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAABgwAAAAAABQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAACCwAAAAAABQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAADAAAAAAADAAAAAAADAAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAAACwAAAAAABQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAADAAAAAAADAAAAAAADAAAAAAACwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAAACwAAAAAABQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAADAAAAAAADAAAAAAADAAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAAAgwAAAAAABAAAAAAD
+ tiles: BwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABwAAAAADBwAAAAAABwAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAADCwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAgwAAAAAABQAAAAACBwAAAAAABwAAAAAGBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAgwAAAAAABQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAACgwAAAAAABQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAACgwAAAAAABQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAABgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAACgwAAAAAABQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAADgwAAAAAABQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAAACwAAAAAABQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAADAAAAAAADAAAAAAADAAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAAACwAAAAAABQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAADAAAAAAADAAAAAAADAAAAAAACwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAADCwAAAAAABQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAADAAAAAAADAAAAAAADAAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAABgwAAAAAABAAAAAAA
version: 6
-5,0:
ind: -5,0
- tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAADgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAAwAAAAADAwAAAAAAIwAAAAADIwAAAAACAwAAAAACgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAAwAAAAACAwAAAAADIwAAAAABIwAAAAACAwAAAAADgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAACgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAADgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAABgwAAAAAAgwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAAwAAAAAAAwAAAAADIwAAAAADIwAAAAABAwAAAAADgwAAAAAAgwAAAAAABwAAAAAMBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAAwAAAAAAAwAAAAADIwAAAAABIwAAAAADAwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAACgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-6,-1:
ind: -6,-1
- tiles: CgAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAADgwAAAAAAAwAAAAAAgwAAAAAABwAAAAAABwAAAAAFBwAAAAAHBwAAAAAKBwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAFgAAAAAAFgAAAAAAKQAAAAAAFgAAAAALBwAAAAAABwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAABgwAAAAAAgwAAAAAAFgAAAAAAFgAAAAAAKQAAAAAAFgAAAAAAFgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAADgwAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAACgwAAAAAAgwAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAABwAAAAAAgwAAAAAABAAAAAACCQAAAAAACQAAAAAABAAAAAACCQAAAAAACQAAAAAABAAAAAACgwAAAAAAgwAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAABwAAAAADBwAAAAAAgwAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAABBAAAAAABBAAAAAAABAAAAAABgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHgwAAAAAABAAAAAABCQAAAAAACQAAAAAABAAAAAAACQAAAAAACQAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAAABAAAAAACBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAABAAAAAACCQAAAAAACQAAAAAABAAAAAADCQAAAAAACQAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
+ tiles: AgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAEBwAAAAACBwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAADBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAwAAAAADgwAAAAAABwAAAAAGBwAAAAAKBwAAAAAABwAAAAAABwAAAAALBwAAAAADBwAAAAAABwAAAAAABwAAAAADBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAALBwAAAAAFBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAADBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAABAAAAAACCQAAAAAACQAAAAAABAAAAAABCQAAAAAACQAAAAAABAAAAAADgwAAAAAAgwAAAAAAKgAAAAAMKgAAAAAAKgAAAAALKgAAAAAAgwAAAAAABwAAAAAAgwAAAAAABAAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAACBAAAAAAABAAAAAADgwAAAAAAgwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAACgwAAAAAABwAAAAAAgwAAAAAABAAAAAADCQAAAAAACQAAAAAABAAAAAAACQAAAAAACQAAAAAABAAAAAADgwAAAAAAgwAAAAAAKgAAAAALKgAAAAAEKgAAAAAAKgAAAAAAgwAAAAAABwAAAAALgwAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAACgwAAAAAAgwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAgwAAAAAABwAAAAAAgwAAAAAABAAAAAABCQAAAAAACQAAAAAABAAAAAACCQAAAAAACQAAAAAABAAAAAABgwAAAAAAgwAAAAAAKgAAAAAMKgAAAAAAKgAAAAAGKgAAAAAAgwAAAAAABwAAAAALgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
version: 6
-6,-4:
ind: -6,-4
- tiles: gwAAAAAABwAAAAAFFgAAAAAFFgAAAAAAFgAAAAAAFgAAAAAAKQAAAAAAFgAAAAAFFgAAAAAAFgAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAAgwAAAAAABwAAAAAAFgAAAAAFFgAAAAAAFgAAAAAAFgAAAAAAKQAAAAAAFgAAAAADFgAAAAAAFgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAAgwAAAAAABwAAAAAABwAAAAAAKQAAAAAAKQAAAAAAFgAAAAAAKQAAAAAAFgAAAAAKFgAAAAAABwAAAAAABwAAAAAKBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAKgwAAAAAABwAAAAAFBwAAAAAABwAAAAAAKQAAAAAAFgAAAAAFKQAAAAAAFgAAAAAAFgAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAHBwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAACBwAAAAAABwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAHBwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACAAAAAAACAAAAAAACAAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAABBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACAAAAAAACAAAAAAACAAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAABAAAAAADBAAAAAABBAAAAAADBwAAAAAEBwAAAAAABwAAAAAABwAAAAAEBwAAAAABBwAAAAAA
+ tiles: KgAAAAAAKgAAAAAGKgAAAAAAKgAAAAAAKgAAAAACKgAAAAAEKgAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAFgAAAAAAFgAAAAAAFgAAAAAHKQAAAAAAFgAAAAAFFgAAAAAAFgAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAFBwAAAAAABwAAAAAJgwAAAAAAFgAAAAAAFgAAAAAAKQAAAAAAFgAAAAAAFgAAAAAKgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAKBwAAAAAABwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAABBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACAAAAAAACAAAAAAACAAAAAAABAAAAAACBAAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGgwAAAAAAgwAAAAAAgwAAAAAACAAAAAAACAAAAAAACAAAAAAABAAAAAAABAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAABAAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA
version: 6
-3,-2:
ind: -3,-2
- tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAAADQAAAAABDQAAAAADDQAAAAAADQAAAAAADQAAAAABDQAAAAADDQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAABDQAAAAACDQAAAAACDQAAAAADDQAAAAADDQAAAAAADQAAAAABDQAAAAACDQAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAABDQAAAAABDQAAAAAADQAAAAADDQAAAAADDQAAAAABDQAAAAADDQAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAADDQAAAAAADQAAAAADDQAAAAABDQAAAAAADQAAAAACDQAAAAAADQAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAABDQAAAAADDQAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAADAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAAAAwAAAAADDQAAAAABgwAAAAAADQAAAAABDQAAAAAADQAAAAABBAAAAAACBAAAAAABBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAABAwAAAAADDQAAAAABAwAAAAACDQAAAAACDQAAAAAADQAAAAABBAAAAAADBAAAAAABBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAABAAAAAACDQAAAAABDQAAAAACDQAAAAACDQAAAAADgwAAAAAADQAAAAADDQAAAAADDQAAAAABBAAAAAACBAAAAAACBAAAAAACAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABDQAAAAAADQAAAAACDQAAAAAADQAAAAADgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAAwAAAAABBAAAAAABBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADDQAAAAABDQAAAAACDQAAAAACDQAAAAACgwAAAAAADQAAAAACDQAAAAACDQAAAAADAwAAAAABBAAAAAABBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABDQAAAAACDQAAAAAADQAAAAAADQAAAAABgwAAAAAADQAAAAABDQAAAAADDQAAAAAAAwAAAAABBAAAAAACBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACDQAAAAACDQAAAAAADQAAAAADDQAAAAABgwAAAAAADQAAAAADDQAAAAACDQAAAAABBAAAAAACBAAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAADAwAAAAACDQAAAAABgwAAAAAADQAAAAADDQAAAAADDQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAABAwAAAAACDQAAAAACgwAAAAAADQAAAAABDQAAAAAADQAAAAADBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
+ tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAADDQAAAAABDQAAAAACDQAAAAADDQAAAAABDQAAAAAADQAAAAADDQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAABDQAAAAABDQAAAAABDQAAAAACDQAAAAABDQAAAAABDQAAAAAADQAAAAAADQAAAAADCAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAABDQAAAAADDQAAAAADDQAAAAABDQAAAAABDQAAAAAADQAAAAADDQAAAAADDQAAAAACCAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAADDQAAAAABDQAAAAABDQAAAAADDQAAAAABDQAAAAADDQAAAAACDQAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAAADQAAAAABDQAAAAAADQAAAAADDQAAAAAADQAAAAABDQAAAAADDQAAAAADCAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAAAAwAAAAAADQAAAAADgwAAAAAADQAAAAADDQAAAAAADQAAAAAABAAAAAABBAAAAAABBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADDQAAAAABAwAAAAAADQAAAAAADQAAAAACDQAAAAADBAAAAAAABAAAAAADBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAABAAAAAADDQAAAAABDQAAAAACDQAAAAABDQAAAAAAgwAAAAAADQAAAAAADQAAAAACDQAAAAAABAAAAAACBAAAAAACBAAAAAADAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABDQAAAAADDQAAAAACDQAAAAAADQAAAAADgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAAwAAAAABBAAAAAADBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABDQAAAAADDQAAAAADDQAAAAABDQAAAAAAgwAAAAAADQAAAAABDQAAAAAADQAAAAADAwAAAAACBAAAAAACBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABDQAAAAADDQAAAAADDQAAAAAADQAAAAAAgwAAAAAADQAAAAABDQAAAAAADQAAAAAAAwAAAAAABAAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADDQAAAAAADQAAAAABDQAAAAADDQAAAAACgwAAAAAADQAAAAADDQAAAAADDQAAAAADBAAAAAADBAAAAAACBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAAAAwAAAAABDQAAAAAAgwAAAAAADQAAAAACDQAAAAABDQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAABAwAAAAAADQAAAAAAgwAAAAAADQAAAAACDQAAAAAADQAAAAAABwAAAAALBwAAAAAFBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAACAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
version: 6
-3,-4:
ind: -3,-4
- tiles: BwAAAAAJgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAABgwAAAAAAgwAAAAAABAAAAAACBAAAAAACBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAADBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAAAHgAAAAAAHgAAAAACHgAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAABHgAAAAAAHgAAAAADHgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAACBQAAAAAABQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAADBQAAAAABBQAAAAACBQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAABBQAAAAADBQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAABDQAAAAACDQAAAAACDQAAAAABDQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAADDQAAAAADDQAAAAAADQAAAAACgwAAAAAABQAAAAAABQAAAAAABQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAADDQAAAAABDQAAAAABDQAAAAAAgwAAAAAABQAAAAACBQAAAAADBQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAADBQAAAAADBQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAADHQAAAAAAHQAAAAADgwAAAAAABQAAAAADBQAAAAACBQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAADHQAAAAACHQAAAAABHQAAAAACHQAAAAADHQAAAAABHQAAAAABgwAAAAAAgwAAAAAADgAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABgwAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAABHQAAAAABHQAAAAAD
+ tiles: AgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAACBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAADHgAAAAACHgAAAAABHgAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAHgAAAAACHgAAAAADHgAAAAABHgAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAAAHgAAAAACHgAAAAAAHgAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAABHgAAAAABHgAAAAAAHgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAADBQAAAAADBQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAACBQAAAAADBQAAAAACBQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAACBQAAAAACBQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAABDQAAAAACDQAAAAAADQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAAADQAAAAACDQAAAAADDQAAAAACDQAAAAADgwAAAAAABQAAAAACBQAAAAABBQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAADDQAAAAADDQAAAAAADQAAAAABgwAAAAAABQAAAAAABQAAAAADBQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAACBQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAADgwAAAAAABQAAAAAABQAAAAADBQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAHQAAAAADgwAAAAAAgwAAAAAADgAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAAAHQAAAAACHQAAAAAB
version: 6
-3,-3:
ind: -3,-3
- tiles: DgAAAAAADgAAAAADBAAAAAABBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABgwAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAAAHQAAAAABHQAAAAAADgAAAAABBAAAAAAABAAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAAAHQAAAAACHQAAAAADDgAAAAAABAAAAAABBAAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADgAAAAABBAAAAAABBAAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADgAAAAAADgAAAAAABAAAAAABBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAACBQAAAAABAwAAAAABAwAAAAADAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAADBQAAAAADBQAAAAAAAwAAAAADAwAAAAACAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAADBQAAAAACBQAAAAACAwAAAAAAAwAAAAAAAwAAAAABgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAABBQAAAAADBQAAAAACAwAAAAADAwAAAAABAwAAAAABgwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAAADQAAAAADDQAAAAABDQAAAAAAgwAAAAAAgwAAAAAABQAAAAADgwAAAAAAgwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAADDQAAAAACDQAAAAACDQAAAAADgwAAAAAABQAAAAACBQAAAAADgwAAAAAADQAAAAACDQAAAAADAwAAAAACgwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAADgwAAAAAABQAAAAADBQAAAAAAgwAAAAAADQAAAAABDQAAAAAAAwAAAAACgwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAAAgwAAAAAABQAAAAABBQAAAAABgwAAAAAADQAAAAABDQAAAAADAwAAAAADgwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAACgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAACDQAAAAAADQAAAAABDQAAAAACDQAAAAABDQAAAAADDQAAAAAADQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAABDQAAAAACDQAAAAADDQAAAAABDQAAAAABDQAAAAACDQAAAAAADQAAAAAC
+ tiles: DgAAAAADDgAAAAACBAAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAACHQAAAAACDgAAAAAABAAAAAABBAAAAAABBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAADDgAAAAACBAAAAAABBAAAAAADBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADgAAAAADBAAAAAABBAAAAAACBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADgAAAAACDgAAAAABBAAAAAABBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADgAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAADBQAAAAAABQAAAAABAwAAAAABAwAAAAADAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAABBQAAAAACBQAAAAADAwAAAAACAwAAAAACAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAABBQAAAAABAwAAAAADAwAAAAADAwAAAAABgwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAACBQAAAAADBQAAAAACAwAAAAABAwAAAAAAAwAAAAACgwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAABDQAAAAADDQAAAAADDQAAAAABgwAAAAAAgwAAAAAABQAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADDQAAAAADDQAAAAADDQAAAAABgwAAAAAABQAAAAACBQAAAAAAgwAAAAAADQAAAAAADQAAAAAAAwAAAAACgwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAACgwAAAAAABQAAAAADBQAAAAABgwAAAAAADQAAAAAADQAAAAADAwAAAAADgwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAgwAAAAAABQAAAAADBQAAAAACgwAAAAAADQAAAAABDQAAAAAAAwAAAAABgwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAABgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAADDQAAAAABDQAAAAADDQAAAAABDQAAAAAADQAAAAABDQAAAAABDQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAAADQAAAAACDQAAAAACDQAAAAACDQAAAAADDQAAAAACDQAAAAAADQAAAAADDQAAAAAA
version: 6
-4,-3:
ind: -4,-3
- tiles: BwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAALBwAAAAACAgAAAAAABwAAAAAAgwAAAAAADgAAAAABDgAAAAADDgAAAAACDgAAAAADDgAAAAAADgAAAAABDgAAAAABBwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAACDgAAAAAADgAAAAAADgAAAAADDgAAAAADDgAAAAABDgAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAAAgAAAAAAAgAAAAAADgAAAAABDgAAAAACDgAAAAADDgAAAAABDgAAAAADDgAAAAACDgAAAAABDgAAAAABBwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAHgwAAAAAADgAAAAAADgAAAAAADgAAAAACDgAAAAADDgAAAAAADgAAAAAADgAAAAADBwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAADgAAAAACDgAAAAAADgAAAAACDgAAAAAADgAAAAABDgAAAAADDgAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAFAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAKBwAAAAAAgwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAABBAAAAAACBAAAAAACBAAAAAADBAAAAAADgwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAABBAAAAAACBAAAAAACAwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAA
+ tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAADgAAAAABDgAAAAAADgAAAAABDgAAAAABDgAAAAADDgAAAAACDgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACAgAAAAAAAgAAAAAADgAAAAAADgAAAAADDgAAAAACDgAAAAABDgAAAAACDgAAAAADDgAAAAAADgAAAAADBwAAAAAHBwAAAAADBwAAAAAABwAAAAACBwAAAAAABwAAAAAAAgAAAAAAAgAAAAAADgAAAAADDgAAAAACDgAAAAACDgAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAABBwAAAAAABwAAAAABBwAAAAAFBwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAADgAAAAAADgAAAAADDgAAAAABDgAAAAAADgAAAAABDgAAAAADDgAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAADgAAAAABDgAAAAAADgAAAAAADgAAAAACDgAAAAACDgAAAAACDgAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAACAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAHgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAABwAAAAAABwAAAAADBwAAAAAIBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAACBAAAAAADBAAAAAABBAAAAAADgwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAABBAAAAAACBAAAAAACBAAAAAABBAAAAAACBAAAAAABAwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAA
version: 6
-4,-4:
ind: -4,-4
- tiles: EAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAADQAAAAAAgwAAAAAAIAAAAAAAIAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACIAAAAAAAIAAAAAAAIAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAKHgAAAAADDQAAAAAAgwAAAAAAIAAAAAAAIAAAAAAAgwAAAAAABAAAAAACBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAHgAAAAAADQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAHgAAAAAAHgAAAAABgwAAAAAAgwAAAAAAAwAAAAABAwAAAAACgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAACHgAAAAADHgAAAAACBAAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAADBAAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAAABAAAAAABBAAAAAABAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAABBQAAAAADBQAAAAABBQAAAAADBAAAAAADBAAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAADBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAABBQAAAAADBQAAAAACBQAAAAADBQAAAAADBAAAAAADBAAAAAABBAAAAAABBAAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAABQAAAAABBQAAAAAAgwAAAAAABQAAAAADBQAAAAABBQAAAAACBQAAAAABBQAAAAADBAAAAAAABAAAAAAABAAAAAAABAAAAAAAgwAAAAAABAAAAAACBAAAAAACgwAAAAAABQAAAAABBQAAAAAABQAAAAABBQAAAAADBQAAAAACBQAAAAAABQAAAAAABQAAAAACBAAAAAAABAAAAAAABAAAAAAABAAAAAACgwAAAAAABAAAAAADBAAAAAAAgwAAAAAABQAAAAABBQAAAAACBQAAAAADBQAAAAACBQAAAAACBQAAAAACBQAAAAAABQAAAAADBAAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAABQAAAAACBQAAAAADBQAAAAAABQAAAAACBQAAAAABBQAAAAACBQAAAAADBQAAAAABBAAAAAACBwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAABQAAAAABBQAAAAAABQAAAAADBQAAAAADBQAAAAACBQAAAAACBQAAAAACBQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADgAAAAABgwAAAAAAgwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAEgwAAAAAADgAAAAABDgAAAAABDgAAAAADDgAAAAACDgAAAAAADgAAAAABDgAAAAAB
+ tiles: EAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADQAAAAAAgwAAAAAAIAAAAAAAIAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAABIAAAAAAAIAAAAAAAIAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAHgAAAAAADQAAAAACgwAAAAAAIAAAAAAAIAAAAAAAgwAAAAAABAAAAAABBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAHgAAAAAADQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAHgAAAAABHgAAAAABgwAAAAAAgwAAAAAAAwAAAAABAwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAACHgAAAAAAHgAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAACBAAAAAACBAAAAAABBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAAABAAAAAAABAAAAAABBAAAAAACBAAAAAACAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAADBQAAAAACBQAAAAACBQAAAAADBAAAAAAABAAAAAABBAAAAAADBAAAAAADBAAAAAAABAAAAAADBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAACBQAAAAABBQAAAAACBQAAAAADBQAAAAACBAAAAAADBAAAAAACBAAAAAABBAAAAAADgwAAAAAABAAAAAACgwAAAAAAgwAAAAAABQAAAAACBQAAAAACgwAAAAAABQAAAAAABQAAAAACBQAAAAABBQAAAAACBQAAAAACBAAAAAADBAAAAAADBAAAAAABBAAAAAABgwAAAAAABAAAAAACBAAAAAAAgwAAAAAABQAAAAACBQAAAAABBQAAAAADBQAAAAABBQAAAAADBQAAAAAABQAAAAACBQAAAAABBAAAAAABBAAAAAACBAAAAAADBAAAAAADgwAAAAAABAAAAAADBAAAAAADgwAAAAAABQAAAAAABQAAAAABBQAAAAADBQAAAAACBQAAAAABBQAAAAABBQAAAAAABQAAAAACBAAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAABQAAAAACBQAAAAADBQAAAAAABQAAAAACBQAAAAACBQAAAAABBQAAAAAABQAAAAAABAAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAALBwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAADBQAAAAACBQAAAAADBQAAAAACBQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADgAAAAABgwAAAAAAgwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAADgAAAAACDgAAAAACDgAAAAAADgAAAAABDgAAAAADDgAAAAABDgAAAAAA
version: 6
-5,-2:
ind: -5,-2
- tiles: gwAAAAAABQAAAAABBQAAAAACBQAAAAADgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAEQAAAAABEQAAAAADEQAAAAABEQAAAAAAEQAAAAACBAAAAAABBAAAAAAAgwAAAAAABQAAAAAABQAAAAABBQAAAAABgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAEQAAAAACEQAAAAACEQAAAAABEQAAAAACEQAAAAACBAAAAAACBAAAAAABgwAAAAAABQAAAAACBQAAAAABBQAAAAACgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAEQAAAAACEQAAAAAAEQAAAAADEQAAAAACEQAAAAACBAAAAAACBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABQAAAAAABQAAAAAABQAAAAADgwAAAAAABAAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAABwAAAAAABwAAAAABAgAAAAAABwAAAAAJgwAAAAAABQAAAAACBQAAAAABBQAAAAADgwAAAAAABAAAAAABBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAEBwAAAAAAAgAAAAAABwAAAAAABQAAAAAAAwAAAAACAwAAAAACAwAAAAAABQAAAAAABAAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAwAAAAABAwAAAAADAwAAAAACgwAAAAAABAAAAAADBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACQAAAAAAAwAAAAABBAAAAAADBAAAAAACBAAAAAADgwAAAAAABAAAAAACBAAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAADBAAAAAABBAAAAAADBAAAAAACgwAAAAAABAAAAAADBAAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACQAAAAAAAwAAAAABBAAAAAACBAAAAAADBAAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAACBAAAAAAABAAAAAADBAAAAAABBAAAAAAACwAAAAAABAAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAKgwAAAAAAgwAAAAAAgwAAAAAACQAAAAAAAwAAAAABBAAAAAAABAAAAAADBAAAAAACBAAAAAADgwAAAAAABAAAAAACBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAA
+ tiles: gwAAAAAABQAAAAAABQAAAAABBQAAAAABgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAEQAAAAABEQAAAAACEQAAAAAAEQAAAAAAEQAAAAAABAAAAAAABAAAAAACgwAAAAAABQAAAAAABQAAAAADBQAAAAACgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAEQAAAAAAEQAAAAACEQAAAAACEQAAAAADEQAAAAAABAAAAAABBAAAAAABgwAAAAAABQAAAAADBQAAAAAABQAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAEQAAAAADEQAAAAADEQAAAAADEQAAAAABEQAAAAABBAAAAAACBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAADgwAAAAAAgwAAAAAABAAAAAACBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAFBwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABQAAAAACBQAAAAACBQAAAAABgwAAAAAABAAAAAABBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABQAAAAADBQAAAAAABQAAAAACgwAAAAAABAAAAAABBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABQAAAAABAwAAAAAAAwAAAAABAwAAAAAABQAAAAABBAAAAAACBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAHgwAAAAAAAwAAAAAAAwAAAAABAwAAAAACgwAAAAAABAAAAAACBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACQAAAAAAAwAAAAABBAAAAAABBAAAAAACBAAAAAACgwAAAAAABAAAAAADBAAAAAADBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAAABAAAAAACBAAAAAADBAAAAAABgwAAAAAABAAAAAACBAAAAAACBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACQAAAAAAAwAAAAACBAAAAAADBAAAAAADBAAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAACBAAAAAABBAAAAAAABAAAAAACBAAAAAABCwAAAAAABAAAAAABBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACQAAAAAAAwAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAACgwAAAAAABAAAAAADBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAACgAAAAAACgAAAAAACgAAAAAA
version: 6
-4,-2:
ind: -4,-2
- tiles: AwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAADBAAAAAAABAAAAAACAwAAAAADDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAABBAAAAAABBAAAAAADAwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAACBAAAAAAABAAAAAACBAAAAAAAAwAAAAABDwAAAAAADwAAAAAADwAAAAAADwAAAAAAgwAAAAAACAAAAAAACAAAAAAACAAAAAAAKwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAKwAAAAAABAAAAAACBAAAAAABgwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgwAAAAAACAAAAAAACAAAAAAACAAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAABAAAAAABBAAAAAACAwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAwAAAAACCAAAAAAACAAAAAAACAAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAABAAAAAADBAAAAAADgwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgwAAAAAACAAAAAAACAAAAAAACAAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAABBAAAAAAABAAAAAABBAAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAABBAAAAAAABAAAAAAAgwAAAAAABAAAAAACBAAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAADgwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAAABAAAAAACBAAAAAABAwAAAAABBAAAAAACBAAAAAAAAwAAAAABAwAAAAAAAwAAAAAABAAAAAADBAAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAACBAAAAAABBAAAAAAAAwAAAAABBAAAAAADBAAAAAABAwAAAAACAwAAAAABAwAAAAABBAAAAAAABAAAAAADgwAAAAAAgwAAAAAABAAAAAAABAAAAAADBAAAAAABgwAAAAAABAAAAAADBAAAAAAAAwAAAAADBAAAAAADBAAAAAADAwAAAAACAwAAAAABAwAAAAACBAAAAAABBwAAAAAAgwAAAAAABAAAAAABBAAAAAAABAAAAAADBAAAAAACBAAAAAABCwAAAAAACwAAAAAAgwAAAAAABAAAAAAABAAAAAACAwAAAAADAwAAAAABAwAAAAAABAAAAAACBwAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAADBwAAAAAABwAAAAAAgwAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAADgwAAAAAABAAAAAAABAAAAAABBAAAAAACBwAAAAAGBwAAAAAABwAAAAAABwAAAAAAgwAAAAAABAAAAAABBAAAAAADgwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA
+ tiles: BAAAAAACBAAAAAADBAAAAAADBAAAAAAABAAAAAACBAAAAAAABAAAAAADAwAAAAADDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAACBAAAAAABBAAAAAABBAAAAAAAAwAAAAADDwAAAAAADwAAAAAADwAAAAAADwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAAAAwAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAAgwAAAAAACAAAAAAACAAAAAAACAAAAAAABAAAAAADHgAAAAABHgAAAAADHgAAAAABBAAAAAABBAAAAAADBAAAAAABgwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgwAAAAAACAAAAAAACAAAAAAACAAAAAAABAAAAAACHgAAAAADHgAAAAABHgAAAAADBAAAAAADBAAAAAAABAAAAAADAwAAAAADDwAAAAAADwAAAAAADwAAAAAADwAAAAAAAwAAAAAACAAAAAAACAAAAAAACAAAAAAABAAAAAABHgAAAAADHgAAAAADHgAAAAAABAAAAAABBAAAAAADBAAAAAADgwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgwAAAAAACAAAAAAACAAAAAAACAAAAAAABAAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAABBAAAAAABBAAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAACBAAAAAADgwAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAABgwAAAAAABAAAAAABBAAAAAACBAAAAAAABAAAAAADBAAAAAAABAAAAAAABAAAAAAAAwAAAAAABAAAAAAABAAAAAADAwAAAAACAwAAAAAAAwAAAAABBAAAAAADBAAAAAACAwAAAAACBAAAAAABBAAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAACBAAAAAADAwAAAAAABAAAAAADBAAAAAAAAwAAAAAAAwAAAAADAwAAAAADBAAAAAADBAAAAAADgwAAAAAAgwAAAAAABAAAAAADBAAAAAABBAAAAAADgwAAAAAABAAAAAACBAAAAAACAwAAAAACBAAAAAACBAAAAAADAwAAAAADAwAAAAAAAwAAAAACBAAAAAABBwAAAAAAgwAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAAABAAAAAABCwAAAAAACwAAAAAAgwAAAAAABAAAAAADBAAAAAADAwAAAAABAwAAAAABAwAAAAABBAAAAAABBwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAADBAAAAAABBAAAAAACBAAAAAABBAAAAAADBAAAAAADBAAAAAAABAAAAAACBAAAAAACBAAAAAABBwAAAAAABwAAAAAJgwAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAABBAAAAAADBAAAAAAABAAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABAAAAAACBAAAAAADgwAAAAAABAAAAAADBAAAAAAABAAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA
version: 6
-6,-2:
ind: -6,-2
- tiles: BAAAAAAAAwAAAAABAwAAAAACAwAAAAAABAAAAAAABAAAAAADgwAAAAAAAwAAAAAAAwAAAAABAwAAAAACgwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADBAAAAAACAwAAAAADAwAAAAADAwAAAAAABAAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABgwAAAAAAgwAAAAAABAAAAAABAwAAAAAAAwAAAAAAAwAAAAABBAAAAAABBAAAAAAAgwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAACBAAAAAACAwAAAAADAwAAAAACAwAAAAABBAAAAAAABAAAAAAAgwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAABBAAAAAAAgwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADBAAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAAAgwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAAABAAAAAABBAAAAAABgwAAAAAABAAAAAACBAAAAAADBAAAAAACgwAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAABgwAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAACBAAAAAADBAAAAAADBAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABAAAAAADBAAAAAAAgwAAAAAABAAAAAAABAAAAAABBAAAAAABBAAAAAACBAAAAAADBAAAAAACBAAAAAACgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAACwAAAAAACwAAAAAAgwAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAADEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAABAAAAAADgwAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAACBAAAAAAABAAAAAADBAAAAAADgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABAAAAAAABAAAAAACgwAAAAAABAAAAAABBAAAAAACBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABAAAAAADBAAAAAAABAAAAAADBAAAAAACBAAAAAACBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAACgwAAAAAABAAAAAADBAAAAAACBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
+ tiles: BAAAAAADAwAAAAAAAwAAAAADAwAAAAADBAAAAAACBAAAAAADgwAAAAAAAwAAAAACAwAAAAABAwAAAAABgwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAAABAAAAAAAAwAAAAACAwAAAAADAwAAAAAABAAAAAABBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAABAAAAAACAwAAAAADAwAAAAABAwAAAAAABAAAAAADBAAAAAACgwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACBAAAAAABAwAAAAACAwAAAAAAAwAAAAAABAAAAAADBAAAAAADgwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAABBAAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAABBAAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAADBAAAAAADBAAAAAADBAAAAAADBAAAAAABBAAAAAAABAAAAAABgwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAADBAAAAAADBAAAAAABBAAAAAABBAAAAAAABAAAAAACBAAAAAABgwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAABBAAAAAADBAAAAAABgwAAAAAABAAAAAACBAAAAAABBAAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAADgwAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAABgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABAAAAAABBAAAAAACgwAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAADgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAACwAAAAAACwAAAAAAgwAAAAAABAAAAAACBAAAAAADBAAAAAADBAAAAAABBAAAAAADBAAAAAADBAAAAAABEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAABAAAAAACgwAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAACBAAAAAABBAAAAAADBAAAAAADgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABAAAAAAABAAAAAADgwAAAAAABAAAAAADBAAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAAAgwAAAAAABAAAAAACBAAAAAADBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
version: 6
-5,-4:
ind: -5,-4
- tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEAAAAAAAEAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAADDQAAAAACDQAAAAACDQAAAAABBwAAAAAABwAAAAAIBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAABDQAAAAABBwAAAAAABwAAAAAABwAAAAABBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAAAgwAAAAAADQAAAAABDQAAAAABDQAAAAAADQAAAAABDQAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAAADQAAAAADBwAAAAACBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAAAgwAAAAAAAwAAAAAAAwAAAAADgwAAAAAAgwAAAAAADQAAAAACBwAAAAAFBwAAAAAABwAAAAAMBwAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAACBAAAAAADBAAAAAACBAAAAAAABAAAAAACAgAAAAAAAgAAAAAABwAAAAAABwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAACBAAAAAADBAAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAACBAAAAAACBAAAAAAABAAAAAADBAAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAACBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAABgwAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAADBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAACgwAAAAAAAwAAAAADAwAAAAABAwAAAAADBAAAAAADBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAFBwAAAAAABAAAAAABBAAAAAACBwAAAAAABwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABAAAAAABgwAAAAAABwAAAAAEBwAAAAAJgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAGBwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAALBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAIBwAAAAAABwAAAAAA
+ tiles: BwAAAAAJBwAAAAAHgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEAAAAAAAEAAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAABDQAAAAADDQAAAAADDQAAAAABBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAADgwAAAAAADQAAAAACDQAAAAABDQAAAAACDQAAAAAADQAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAABDQAAAAADBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAACgwAAAAAAAwAAAAACAwAAAAABgwAAAAAAgwAAAAAADQAAAAADBwAAAAADBwAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAACBAAAAAACBAAAAAABBAAAAAAABAAAAAAABAAAAAADBAAAAAABAgAAAAAAAgAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAADBAAAAAACBAAAAAADBAAAAAACBAAAAAAABAAAAAABBAAAAAACBwAAAAAHBwAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAABgwAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAADBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAABgwAAAAAAAwAAAAACAwAAAAACAwAAAAABBAAAAAABBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAJBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAKBwAAAAAHBwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAD
version: 6
-6,-3:
ind: -6,-3
- tiles: gwAAAAAAgwAAAAAAgwAAAAAAHAAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAABBAAAAAADBAAAAAADDwAAAAAADwAAAAAADwAAAAAADwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHAAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAAABAAAAAAABAAAAAABDwAAAAAADwAAAAAADwAAAAAADwAAAAAABAAAAAACBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHAAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAABAAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHAAAAAAABAAAAAABBAAAAAADBAAAAAADBAAAAAAABAAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAABBAAAAAABBAAAAAABBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAACBAAAAAABgwAAAAAAEQAAAAACEQAAAAACEQAAAAABgwAAAAAAEQAAAAADEQAAAAADEQAAAAADgwAAAAAAEQAAAAABGgAAAAAAGgAAAAAAgwAAAAAABAAAAAADBAAAAAABBAAAAAADgwAAAAAAEQAAAAABEQAAAAAAEQAAAAACgwAAAAAAEQAAAAAAEQAAAAABEQAAAAACgwAAAAAAEQAAAAADGgAAAAAABQAAAAACgwAAAAAABAAAAAABBAAAAAABBAAAAAADgwAAAAAAEQAAAAAAEQAAAAAAEQAAAAABgwAAAAAAEQAAAAABEQAAAAADEQAAAAACgwAAAAAAEQAAAAADBQAAAAAABQAAAAACAwAAAAAABAAAAAABBAAAAAACBAAAAAABgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAABQAAAAABBQAAAAAAAwAAAAAABAAAAAABBAAAAAAABAAAAAADgwAAAAAAAwAAAAACBAAAAAADBAAAAAABBAAAAAACAwAAAAACBAAAAAABBAAAAAAABAAAAAABAwAAAAAABQAAAAAABQAAAAADAwAAAAADBAAAAAACBAAAAAADBAAAAAACBAAAAAACBAAAAAADBAAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAABBAAAAAACBAAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAACgwAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAAwAAAAADAwAAAAABAwAAAAABgwAAAAAABQAAAAADBQAAAAACBQAAAAACBQAAAAAABQAAAAABBAAAAAADBAAAAAADBAAAAAACBAAAAAAABAAAAAACBAAAAAAAgwAAAAAAAwAAAAACAwAAAAABAwAAAAACgwAAAAAABQAAAAAABQAAAAAABQAAAAADBQAAAAAABQAAAAADBAAAAAAABAAAAAABBAAAAAACBAAAAAAABAAAAAADBAAAAAAABAAAAAACAwAAAAADAwAAAAABAwAAAAAAgwAAAAAABQAAAAAABQAAAAADBQAAAAACBQAAAAACBQAAAAABBAAAAAADAwAAAAABAwAAAAACAwAAAAAABAAAAAABBAAAAAABgwAAAAAAAwAAAAABAwAAAAACAwAAAAABgwAAAAAABQAAAAAABQAAAAABBQAAAAABBQAAAAAABQAAAAAB
+ tiles: gwAAAAAAgwAAAAAAgwAAAAAAHAAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAABBAAAAAABDwAAAAAADwAAAAAADwAAAAAABAAAAAADBwAAAAAABwAAAAAMBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHAAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAABDwAAAAAADwAAAAAADwAAAAAABAAAAAADBwAAAAACBwAAAAABBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHAAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAABBAAAAAADDwAAAAAADwAAAAAADwAAAAAABAAAAAABBAAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHAAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAABBAAAAAACDwAAAAAADwAAAAAADwAAAAAABAAAAAACBAAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAEQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEQAAAAACEQAAAAABEQAAAAACgwAAAAAAEQAAAAADEQAAAAAAEQAAAAABgwAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAADBAAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAEQAAAAABEQAAAAABEQAAAAABgwAAAAAAEQAAAAACEQAAAAACEQAAAAABgwAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAACBAAAAAADGgAAAAAABQAAAAADgwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAACgwAAAAAABAAAAAAABAAAAAABBQAAAAAABQAAAAAAAwAAAAABBAAAAAACBAAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAABBAAAAAADgwAAAAAABAAAAAAABAAAAAADgwAAAAAABAAAAAADBAAAAAADBQAAAAABBQAAAAACAwAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAACBAAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAACBAAAAAAABQAAAAABBQAAAAACAwAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAACgwAAAAAABAAAAAABBAAAAAAABAAAAAADBAAAAAADBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAADBAAAAAAABAAAAAACgwAAAAAAAwAAAAAAAwAAAAACAwAAAAABgwAAAAAABQAAAAADBQAAAAACBQAAAAAABQAAAAACBQAAAAADBAAAAAABBAAAAAACBAAAAAACBAAAAAACBAAAAAAABAAAAAABgwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAgwAAAAAABQAAAAACBQAAAAABBQAAAAABBQAAAAACBQAAAAACBAAAAAADBAAAAAABBAAAAAADBAAAAAACBAAAAAADBAAAAAABBAAAAAACAwAAAAABAwAAAAAAAwAAAAADgwAAAAAABQAAAAABBQAAAAAABQAAAAACBQAAAAACBQAAAAAABAAAAAACAwAAAAAAAwAAAAACAwAAAAABBAAAAAAABAAAAAADgwAAAAAAAwAAAAADAwAAAAADAwAAAAAAgwAAAAAABQAAAAAABQAAAAABBQAAAAADBQAAAAADBQAAAAAB
version: 6
-5,-3:
ind: -5,-3
- tiles: BwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAACBwAAAAAMBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABAAAAAADBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAABBwAAAAAABwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAEQAAAAACEQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAEQAAAAAAEQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAEQAAAAABEQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAABBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAgAAAAAAAgAAAAAABAAAAAABBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAgAAAAAAAgAAAAAABAAAAAABBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACgAAAAAABQAAAAACBQAAAAADBQAAAAABBQAAAAABCgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAABBQAAAAACBQAAAAACBQAAAAADgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAABQAAAAAABQAAAAACBQAAAAACBQAAAAAAgwAAAAAABAAAAAACBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEQAAAAACgwAAAAAAEQAAAAADBAAAAAACBAAAAAABgwAAAAAABQAAAAABBQAAAAAABQAAAAACgwAAAAAABwAAAAAABwAAAAAFAgAAAAAAgwAAAAAAEQAAAAACEQAAAAACEQAAAAAAEQAAAAAAgwAAAAAABAAAAAADBAAAAAAABQAAAAABBQAAAAACBQAAAAAABQAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAEQAAAAAAEQAAAAABEQAAAAADEQAAAAAAEQAAAAADBAAAAAAABAAAAAAC
+ tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAKBwAAAAACBwAAAAAEBwAAAAAEBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAEBwAAAAADBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAECgAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACgAAAAAACgAAAAAACgAAAAAABQAAAAADBQAAAAACBQAAAAACBQAAAAABCgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAACBQAAAAADBQAAAAABBQAAAAABgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAABQAAAAAABQAAAAADBQAAAAADBQAAAAABgwAAAAAABAAAAAADBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEQAAAAADgwAAAAAAEQAAAAACBAAAAAADBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAKAgAAAAAAgwAAAAAAEQAAAAAAEQAAAAACEQAAAAADEQAAAAACgwAAAAAABAAAAAABBAAAAAADBQAAAAABBQAAAAADBQAAAAACBQAAAAADgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAEQAAAAACEQAAAAAAEQAAAAACEQAAAAAAEQAAAAACBAAAAAAABAAAAAAC
version: 6
-2,0:
ind: -2,0
- tiles: gwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAABAAAAAABBAAAAAAABAAAAAADBAAAAAABgwAAAAAABAAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAADgwAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAABBAAAAAABBAAAAAACBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAACBAAAAAADBAAAAAACBAAAAAACBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAAAgwAAAAAABAAAAAABBAAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAADgwAAAAAABAAAAAACBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAACgwAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAADBAAAAAABBAAAAAAABAAAAAADBAAAAAAABAAAAAABgwAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgwAAAAAABwAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAACgwAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgwAAAAAABwAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAACHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAACBAAAAAABgwAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgwAAAAAABwAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAACgwAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgwAAAAAABwAAAAAABAAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAADBAAAAAACBAAAAAADBAAAAAACBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAJ
+ tiles: gwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAAAgwAAAAAABAAAAAABBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAABBAAAAAACgwAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAACBAAAAAACBAAAAAAABAAAAAADBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAADBAAAAAABgwAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAAABAAAAAADBAAAAAACBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAAAgwAAAAAABAAAAAACBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAAABAAAAAADgwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAAABAAAAAACBAAAAAACBAAAAAACgwAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgwAAAAAABwAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAADgwAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgwAAAAAABwAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAADBAAAAAABHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgwAAAAAABwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAABBAAAAAAAgwAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgwAAAAAABwAAAAAABAAAAAAABAAAAAABBAAAAAABBAAAAAACBAAAAAACBAAAAAADBAAAAAABBAAAAAABBAAAAAADgwAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgwAAAAAABwAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAACBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAA
version: 6
-2,-2:
ind: -2,-2
- tiles: AwAAAAABDQAAAAABDQAAAAADDQAAAAADCwAAAAAADQAAAAADDQAAAAADDQAAAAAADQAAAAADDQAAAAACCwAAAAAADQAAAAAADQAAAAADDQAAAAAADQAAAAABgwAAAAAAgwAAAAAADQAAAAACDQAAAAAADQAAAAACCwAAAAAADQAAAAACDQAAAAABDQAAAAAADQAAAAACDQAAAAAACwAAAAAADQAAAAAADQAAAAABDQAAAAAADQAAAAAAAwAAAAABAwAAAAAADQAAAAACDQAAAAADDQAAAAABCwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAADCwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAAADQAAAAADgwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAABDQAAAAAADQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAADQAAAAADDQAAAAADDQAAAAAADQAAAAAADQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAABDQAAAAABDQAAAAAADQAAAAADAwAAAAADDQAAAAAADQAAAAADDQAAAAABDQAAAAADDQAAAAABgwAAAAAAKAAAAAABgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAADQAAAAADDQAAAAADDQAAAAABDQAAAAACAwAAAAABDQAAAAACDQAAAAACDQAAAAABDQAAAAABDQAAAAABgwAAAAAAKAAAAAABKAAAAAABBwAAAAAABwAAAAAAgwAAAAAADQAAAAAADQAAAAACDQAAAAADDQAAAAAAgwAAAAAADQAAAAADDQAAAAABDQAAAAACDQAAAAADDQAAAAAAgwAAAAAAKAAAAAADKAAAAAADKAAAAAADKAAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAACwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAABBAAAAAACBAAAAAACBAAAAAAABAAAAAADBAAAAAAABAAAAAABgwAAAAAABQAAAAADBQAAAAABBQAAAAABBQAAAAACBQAAAAAAgwAAAAAADQAAAAADBAAAAAABBAAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAADBAAAAAADBAAAAAADgwAAAAAABQAAAAADBQAAAAABBQAAAAAABQAAAAACBQAAAAADAwAAAAADDQAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAABBAAAAAADBAAAAAACBAAAAAACBAAAAAADAwAAAAABBQAAAAADBQAAAAABBQAAAAACBQAAAAACBQAAAAADgwAAAAAADQAAAAADBAAAAAABBAAAAAABBAAAAAADBAAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAAAgwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAABgwAAAAAAgwAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAADBAAAAAADBAAAAAABBAAAAAACBAAAAAABgwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAABwAAAAAABwAAAAACBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
+ tiles: AwAAAAACDQAAAAACDQAAAAAADQAAAAABCwAAAAAADQAAAAACDQAAAAAADQAAAAABDQAAAAAADQAAAAAACwAAAAAADQAAAAACDQAAAAADDQAAAAADDQAAAAADgwAAAAAAgwAAAAAADQAAAAADDQAAAAADDQAAAAAACwAAAAAADQAAAAABDQAAAAADDQAAAAABDQAAAAADDQAAAAABCwAAAAAADQAAAAABDQAAAAADDQAAAAADDQAAAAADAwAAAAABAwAAAAAADQAAAAABDQAAAAACDQAAAAACCwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAABCwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAACgwAAAAAAgwAAAAAADQAAAAAADQAAAAADDQAAAAACgwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAAADQAAAAAADQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAADQAAAAADDQAAAAABDQAAAAADDQAAAAADDQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAABDQAAAAACDQAAAAACDQAAAAAAAwAAAAADDQAAAAABDQAAAAACDQAAAAABDQAAAAADDQAAAAABgwAAAAAAKAAAAAAAgwAAAAAAgwAAAAAABwAAAAALgwAAAAAADQAAAAAADQAAAAACDQAAAAAADQAAAAACAwAAAAABDQAAAAADDQAAAAABDQAAAAACDQAAAAADDQAAAAACgwAAAAAAKAAAAAAAKAAAAAABBwAAAAAABwAAAAAAgwAAAAAADQAAAAAADQAAAAADDQAAAAADDQAAAAAAgwAAAAAADQAAAAAADQAAAAAADQAAAAACDQAAAAACDQAAAAABgwAAAAAAKAAAAAADKAAAAAADKAAAAAADKAAAAAABgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAACwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAACBAAAAAACBAAAAAAABAAAAAAAgwAAAAAABQAAAAABBQAAAAADBQAAAAACBQAAAAABBQAAAAADgwAAAAAADQAAAAABBAAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAADBAAAAAACgwAAAAAABQAAAAAABQAAAAABBQAAAAABBQAAAAADBQAAAAACAwAAAAADDQAAAAADBAAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAAABAAAAAAAAwAAAAAABQAAAAACBQAAAAABBQAAAAABBQAAAAAABQAAAAABgwAAAAAADQAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAADgwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAABgwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAABBAAAAAABgwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAABwAAAAAABwAAAAALBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
version: 6
-2,-4:
ind: -2,-4
- tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAADBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAJBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAADQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAEgwAAAAAAgwAAAAAADQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAADQAAAAABDQAAAAADDQAAAAADgwAAAAAADQAAAAABDQAAAAADDQAAAAAADQAAAAADDQAAAAACDQAAAAADgwAAAAAADQAAAAACDQAAAAADgwAAAAAABwAAAAAAgwAAAAAADQAAAAACDQAAAAAADQAAAAADgwAAAAAADQAAAAACDQAAAAABDQAAAAADDQAAAAACDQAAAAAADQAAAAADDQAAAAACDQAAAAABDQAAAAABgwAAAAAABwAAAAAAgwAAAAAADQAAAAABDQAAAAAADQAAAAADgwAAAAAADQAAAAAADQAAAAADDQAAAAADDQAAAAAADQAAAAADDQAAAAACgwAAAAAADQAAAAADDQAAAAADgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAABDQAAAAAADQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAADQAAAAACDQAAAAABDQAAAAAAgwAAAAAACwAAAAAAAwAAAAACgwAAAAAADQAAAAAADQAAAAABDQAAAAADgwAAAAAADQAAAAADDQAAAAABgwAAAAAABwAAAAAAgwAAAAAADQAAAAACDQAAAAACDQAAAAAAAwAAAAABCwAAAAAAAwAAAAACAwAAAAADDQAAAAACDQAAAAABDQAAAAADDQAAAAADDQAAAAACDQAAAAACgwAAAAAABwAAAAAAAwAAAAADDQAAAAAADQAAAAADDQAAAAAAgwAAAAAACwAAAAAAAwAAAAABgwAAAAAADQAAAAACDQAAAAADDQAAAAACgwAAAAAADQAAAAABDQAAAAABgwAAAAAABwAAAAAA
+ tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAADBwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAJBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAABwAAAAAABwAAAAAIBwAAAAAAgwAAAAAAgwAAAAAADQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAADQAAAAAADQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAADQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAAADQAAAAAADQAAAAAAgwAAAAAADQAAAAACDQAAAAACDQAAAAABDQAAAAADDQAAAAADDQAAAAADgwAAAAAADQAAAAABDQAAAAACDQAAAAACgwAAAAAAgwAAAAAADQAAAAACDQAAAAAADQAAAAAAgwAAAAAADQAAAAABDQAAAAAADQAAAAAADQAAAAAADQAAAAABDQAAAAAADQAAAAAADQAAAAADDQAAAAACDQAAAAACgwAAAAAAgwAAAAAADQAAAAAADQAAAAABDQAAAAAAgwAAAAAADQAAAAABDQAAAAABDQAAAAACDQAAAAACDQAAAAACDQAAAAADgwAAAAAADQAAAAADDQAAAAAADQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAABDQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAAADQAAAAACgwAAAAAACwAAAAAAAwAAAAADgwAAAAAADQAAAAABDQAAAAABDQAAAAAAgwAAAAAADQAAAAABDQAAAAAADQAAAAACgwAAAAAAgwAAAAAADQAAAAACDQAAAAABDQAAAAADAwAAAAABCwAAAAAAAwAAAAACAwAAAAADDQAAAAAADQAAAAADDQAAAAACDQAAAAABDQAAAAADDQAAAAABDQAAAAACgwAAAAAAAwAAAAABDQAAAAACDQAAAAACDQAAAAAAgwAAAAAACwAAAAAAAwAAAAAAgwAAAAAADQAAAAACDQAAAAAADQAAAAAAgwAAAAAADQAAAAABDQAAAAACDQAAAAADgwAAAAAA
version: 6
-2,-3:
ind: -2,-3
- tiles: gwAAAAAADQAAAAADDQAAAAAADQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAACDQAAAAAAgwAAAAAABAAAAAADBAAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAACgwAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAADQAAAAABDQAAAAABDQAAAAAAgwAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAADBAAAAAADBAAAAAABgwAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAADQAAAAABDQAAAAADDQAAAAADBAAAAAACBAAAAAACBAAAAAACBAAAAAADBAAAAAADBAAAAAADBAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAADQAAAAAADQAAAAAADQAAAAABgwAAAAAABAAAAAACBAAAAAADBAAAAAACBAAAAAABBAAAAAABBAAAAAACgwAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAABDQAAAAACgwAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAAABAAAAAADBAAAAAABgwAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAADQAAAAADDQAAAAADDQAAAAAADQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAAADQAAAAAADQAAAAADgwAAAAAAAwAAAAABAwAAAAAAgwAAAAAADQAAAAAADQAAAAABDQAAAAAAgwAAAAAADQAAAAACDQAAAAACDQAAAAADgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAAwAAAAACAwAAAAAAgwAAAAAADQAAAAACDQAAAAABDQAAAAACDQAAAAACDQAAAAAADQAAAAADDQAAAAACgwAAAAAAgwAAAAAADQAAAAADDQAAAAACDQAAAAACgwAAAAAAAwAAAAACAwAAAAABgwAAAAAADQAAAAADDQAAAAADDQAAAAACgwAAAAAADQAAAAACDQAAAAACDQAAAAABgwAAAAAAgwAAAAAADQAAAAACDQAAAAABDQAAAAADAwAAAAAAAwAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAACDQAAAAABgwAAAAAAgwAAAAAADQAAAAADDQAAAAAADQAAAAACgwAAAAAAAwAAAAAAAwAAAAADgwAAAAAADQAAAAAADQAAAAAADQAAAAAAgwAAAAAADQAAAAADDQAAAAACDQAAAAACgwAAAAAAgwAAAAAADQAAAAACDQAAAAADDQAAAAAAgwAAAAAAAwAAAAADAwAAAAABgwAAAAAADQAAAAAADQAAAAABDQAAAAACDQAAAAACDQAAAAADDQAAAAACDQAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAADDQAAAAAAgwAAAAAAAwAAAAABAwAAAAADgwAAAAAADQAAAAACDQAAAAACDQAAAAAAgwAAAAAADQAAAAABDQAAAAADDQAAAAACgwAAAAAAgwAAAAAADQAAAAACDQAAAAACDQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAABDQAAAAABgwAAAAAADQAAAAADDQAAAAAADQAAAAACDQAAAAADDQAAAAAAgwAAAAAADQAAAAADDQAAAAADDQAAAAADDQAAAAACgwAAAAAA
+ tiles: gwAAAAAADQAAAAACDQAAAAABDQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAAADQAAAAACgwAAAAAABAAAAAADBAAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAACgwAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAACDQAAAAAAgwAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAACBAAAAAABgwAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAADQAAAAAADQAAAAABDQAAAAADBAAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAACBAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAACDQAAAAABgwAAAAAABAAAAAACBAAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAAAgwAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAADQAAAAAADQAAAAABDQAAAAADgwAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAABBAAAAAADBAAAAAADgwAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAADQAAAAACDQAAAAADDQAAAAACDQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAABDQAAAAABDQAAAAACgwAAAAAAAwAAAAAAAwAAAAACgwAAAAAADQAAAAACDQAAAAACDQAAAAADgwAAAAAADQAAAAACDQAAAAACDQAAAAADgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAAwAAAAABAwAAAAADgwAAAAAADQAAAAACDQAAAAACDQAAAAABDQAAAAABDQAAAAADDQAAAAAADQAAAAACgwAAAAAAgwAAAAAADQAAAAAADQAAAAADDQAAAAACgwAAAAAAAwAAAAADAwAAAAACgwAAAAAADQAAAAAADQAAAAABDQAAAAACgwAAAAAADQAAAAABDQAAAAACDQAAAAABgwAAAAAAgwAAAAAADQAAAAACDQAAAAABDQAAAAABAwAAAAABAwAAAAABAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAADDQAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAAADQAAAAACgwAAAAAAAwAAAAAAAwAAAAABgwAAAAAADQAAAAACDQAAAAABDQAAAAAAgwAAAAAADQAAAAACDQAAAAAADQAAAAACgwAAAAAAgwAAAAAADQAAAAAADQAAAAAADQAAAAAAgwAAAAAAAwAAAAABAwAAAAACgwAAAAAADQAAAAADDQAAAAABDQAAAAABDQAAAAAADQAAAAADDQAAAAAADQAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAAADQAAAAADgwAAAAAAAwAAAAACAwAAAAACgwAAAAAADQAAAAADDQAAAAADDQAAAAABgwAAAAAADQAAAAAADQAAAAAADQAAAAADgwAAAAAAgwAAAAAADQAAAAAADQAAAAADDQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAABDQAAAAADDQAAAAADgwAAAAAADQAAAAABDQAAAAADDQAAAAADDQAAAAADDQAAAAACgwAAAAAADQAAAAADDQAAAAACDQAAAAABDQAAAAABgwAAAAAA
version: 6
-1,-3:
ind: -1,-3
- tiles: AgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAABBQAAAAAABQAAAAACBQAAAAADBQAAAAADBwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAABQAAAAADJAAAAAADBQAAAAACJAAAAAADgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAMBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAABBQAAAAACBQAAAAAABQAAAAABBwAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAADBQAAAAAAJAAAAAAFBQAAAAACJAAAAAACgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-1,-2:
ind: -1,-2
- tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAABBQAAAAABBQAAAAAAJAAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAACJAAAAAAAJAAAAAABgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAMBwAAAAAKBwAAAAAABwAAAAACBwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACBAAAAAACBAAAAAADBAAAAAADAwAAAAACgwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAABAAAAAABBAAAAAADBAAAAAAAAwAAAAAAgwAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAABBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADBAAAAAABBAAAAAABBAAAAAACAwAAAAADgwAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAABBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAAABAAAAAABBAAAAAADgwAAAAAAgwAAAAAA
+ tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAEBQAAAAADBQAAAAACJAAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAGJAAAAAADJAAAAAADgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADBAAAAAACBAAAAAABBAAAAAADAwAAAAADgwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADBAAAAAAABAAAAAAABAAAAAAAAwAAAAABgwAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAADBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABBAAAAAADBAAAAAACBAAAAAADAwAAAAADgwAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAABBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAACBAAAAAADBAAAAAABBAAAAAABBAAAAAADgwAAAAAAgwAAAAAA
version: 6
-1,-4:
ind: -1,-4
- tiles: gwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAKAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAHBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAKBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAAABwAAAAAABwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAADBwAAAAAHBwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: gwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAAgwAAAAAABwAAAAABBwAAAAAABwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAADBwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAFBwAAAAAABwAAAAAJBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-7,-4:
ind: -7,-4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAMAQAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAEBwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAKBwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAEwAAAAAAEwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAGBwAAAAACBwAAAAAABwAAAAAABwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAJBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAAAgAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAALBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAIBwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAEwAAAAAAEwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAHBwAAAAALBwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKAgAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAHAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAHgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAIBwAAAAAAAgAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAADAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAEAgAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAEAgAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
version: 6
-7,-3:
ind: -7,-3
- tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAAgwAAAAAAAwAAAAADAwAAAAADBQAAAAAABQAAAAACBQAAAAADCwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAgwAAAAAAAwAAAAACAwAAAAACBQAAAAACBQAAAAAABQAAAAADCwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAgwAAAAAAAwAAAAAAAwAAAAADBQAAAAACBQAAAAADBQAAAAADCwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACgAAAAAACgAAAAAACgAAAAAABwAAAAAFgwAAAAAAAwAAAAADAwAAAAADBQAAAAAABQAAAAAABQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAACgAAAAAACgAAAAAABwAAAAAAgwAAAAAAAwAAAAACAwAAAAABBQAAAAADBQAAAAADBQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAHCgAAAAAACgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAACgAAAAAACgAAAAAABwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAGCgAAAAAACgAAAAAACgAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAAgwAAAAAABQAAAAADBQAAAAAABQAAAAACBQAAAAADBQAAAAACgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAABwAAAAAAgwAAAAAABQAAAAAABQAAAAAABQAAAAADBQAAAAABBQAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJCgAAAAAACgAAAAAABwAAAAAAgwAAAAAABQAAAAAABQAAAAABBQAAAAAABQAAAAADBQAAAAADgwAAAAAABwAAAAAJBwAAAAADBwAAAAAABwAAAAAHBwAAAAAMgwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAABgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAABwAAAAAAgwAAAAAABQAAAAABBQAAAAADBQAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAJCgAAAAAACgAAAAAABwAAAAAAgwAAAAAABQAAAAAABQAAAAACBQAAAAAAgwAAAAAABAAAAAAAAwAAAAADAwAAAAACAwAAAAABgwAAAAAABwAAAAAABwAAAAALBwAAAAACCgAAAAAACgAAAAAABwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAAwAAAAADAwAAAAABAwAAAAABgwAAAAAAgwAAAAAABwAAAAADBwAAAAALAgAAAAAACgAAAAAABwAAAAAABwAAAAAAgwAAAAAABAAAAAAABAAAAAAAgwAAAAAABAAAAAAA
+ tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAADBwAAAAACgwAAAAAAAwAAAAACAwAAAAABBQAAAAABBQAAAAABBQAAAAADCwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAAwAAAAAAAwAAAAADBQAAAAADBQAAAAACBQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAAwAAAAACAwAAAAABBQAAAAAABQAAAAACBQAAAAADCwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAAwAAAAAAAwAAAAABBQAAAAABBQAAAAACBQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAIAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAAwAAAAACAwAAAAAABQAAAAACBQAAAAADBQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAIgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAFAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAABQAAAAAABQAAAAABBQAAAAABBQAAAAABBQAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAABgwAAAAAABQAAAAABBQAAAAAABQAAAAABBQAAAAABBQAAAAADgwAAAAAABwAAAAAABwAAAAACBwAAAAAGBwAAAAAABwAAAAAABwAAAAAJAgAAAAAAAgAAAAAABwAAAAAGgwAAAAAABQAAAAABBQAAAAAABQAAAAACBQAAAAABBQAAAAAAgwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAHBwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAAgwAAAAAAgwAAAAAABQAAAAACgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAHAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAABQAAAAAABQAAAAACBQAAAAADgwAAAAAABAAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAABQAAAAACBQAAAAACBQAAAAACgwAAAAAABAAAAAACGgAAAAAAGgAAAAAAGgAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACGgAAAAAAGgAAAAAAGgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAABBAAAAAACBAAAAAAAgwAAAAAABAAAAAAB
version: 6
-7,-2:
ind: -7,-2
- tiles: AwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAABwAAAAAABwAAAAAIAgAAAAAAAgAAAAAABwAAAAAABwAAAAAAgwAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAACAwAAAAADAwAAAAABAwAAAAADgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAAAgwAAAAAABAAAAAACBAAAAAABgwAAAAAABAAAAAAAAwAAAAAAAwAAAAACAwAAAAACgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAAgwAAAAAABAAAAAAABAAAAAABgwAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAABAAAAAAABAAAAAABBAAAAAACBAAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAADBAAAAAABgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAADgwAAAAAABAAAAAACgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEAgAAAAAACgAAAAAABwAAAAAAgwAAAAAABAAAAAACBAAAAAADgwAAAAAABAAAAAACBAAAAAABgwAAAAAABAAAAAADgwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAACgAAAAAACgAAAAAAAgAAAAAAgwAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAADBAAAAAAABAAAAAAABAAAAAADgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABCgAAAAAACgAAAAAABwAAAAAAgwAAAAAABAAAAAAABAAAAAACgwAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAACgwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABAAAAAACBAAAAAABBAAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABCgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAABBAAAAAAABAAAAAABgwAAAAAAgwAAAAAABwAAAAAABwAAAAAICgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAADBAAAAAADBAAAAAABBAAAAAAABAAAAAACBAAAAAABBAAAAAAAgwAAAAAAAgAAAAAABwAAAAAACgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAADBAAAAAABBAAAAAABBAAAAAAAgwAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAAgwAAAAAABAAAAAAC
+ tiles: GgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAHAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAADBAAAAAACBAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAADBAAAAAACBAAAAAADgwAAAAAABAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBwAAAAAAgwAAAAAABwAAAAAFBwAAAAADBwAAAAAABwAAAAAIBwAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAABBAAAAAACBAAAAAAAgwAAAAAABAAAAAABAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAABAAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAACBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAABAAAAAADBAAAAAAABAAAAAABgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAABgwAAAAAABAAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAgwAAAAAABAAAAAAABAAAAAACBAAAAAAAgwAAAAAABAAAAAACBAAAAAAAgwAAAAAABAAAAAABgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAADBAAAAAADBAAAAAADBAAAAAAABAAAAAAABAAAAAACgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAgwAAAAAABAAAAAAABAAAAAACBAAAAAADgwAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAADgwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABAAAAAADBAAAAAADBAAAAAACgwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAKAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAABgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAAABAAAAAABBAAAAAACBAAAAAAAgwAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAALBwAAAAABBwAAAAAABwAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAABBAAAAAAAgwAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAAgwAAAAAABAAAAAAD
version: 6
-7,-1:
ind: -7,-1
- tiles: BAAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAACgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAADBAAAAAACgwAAAAAABwAAAAAABwAAAAAIAgAAAAAAAgAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAHBwAAAAAACgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAEAgAAAAAAAgAAAAAABwAAAAAJAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAFgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAFgAAAAAAFgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAAFgAAAAAAFgAAAAADFgAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAABBAAAAAADgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAEBwAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAADBwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAAFgAAAAAAFgAAAAAKgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAADAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAFgAAAAAAFgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAADBwAAAAAAAgAAAAAACgAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAADgwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAAgwAAAAAACwAAAAAACwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAA
+ tiles: BAAAAAACBAAAAAACBAAAAAABBAAAAAABBAAAAAACgwAAAAAABwAAAAALAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAAgAAAAAABAAAAAABBAAAAAACBAAAAAABBAAAAAAABAAAAAABgwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAAABwAAAAAFBwAAAAACAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAHAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAACAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAABwAAAAABAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAALBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAABwAAAAADAgAAAAAAAgAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAABwAAAAAFBwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAABBAAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAGBwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAKgAAAAAAKgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAACBwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAAAgwAAAAAABwAAAAAGBwAAAAAEAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAKQAAAAAAKQAAAAAAKgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAKgwAAAAAAgwAAAAAAgwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAABwAAAAAABwAAAAAEBwAAAAADBwAAAAAABwAAAAAAgwAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAJgwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA
version: 6
-7,0:
ind: -7,0
- tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAAAgAAAAAABwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAAgwAAAAAABwAAAAABBwAAAAAHCgAAAAAACgAAAAAABwAAAAAABwAAAAACAwAAAAADGgAAAAAAGgAAAAAAGgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABAAAAAADBwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAKAQAAAAAABwAAAAAABwAAAAACBwAAAAAAgwAAAAAABwAAAAALBwAAAAAACgAAAAAACgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABwAAAAADgwAAAAAABwAAAAAABwAAAAAJCgAAAAAACgAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAADBAAAAAACBAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAABBAAAAAADgwAAAAAABAAAAAABEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAABBAAAAAACBAAAAAADgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAABwAAAAAAAgAAAAAACgAAAAAACgAAAAAABAAAAAAABwAAAAAABwAAAAAABAAAAAADgwAAAAAAAwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAACgAAAAAACgAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAADgwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAACBAAAAAACgwAAAAAAgwAAAAAABAAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAABBAAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAADBAAAAAACBAAAAAABBAAAAAADBAAAAAAAgwAAAAAABAAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAACIgAAAAAA
+ tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAHBwAAAAAAgwAAAAAAgwAAAAAAKgAAAAAAKgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAHgwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAFgwAAAAAABwAAAAAGBwAAAAAAAgAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAAABAAAAAACBAAAAAACEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAALgwAAAAAABwAAAAAABwAAAAAHBwAAAAAKCgAAAAAACgAAAAAACgAAAAAABAAAAAAABAAAAAACgwAAAAAABAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAACBAAAAAAABAAAAAAAgwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAABBwAAAAAABwAAAAAABAAAAAAAgwAAAAAAAwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAACgwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAAABAAAAAABgwAAAAAAgwAAAAAABAAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAADgwAAAAAAgwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAACBAAAAAACgwAAAAAABAAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAAAIgAAAAAC
version: 6
-9,-4:
ind: -9,-4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAGBQAAAAACBQAAAAACBQAAAAADgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAABBQAAAAADJAAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAACBQAAAAACBQAAAAAABQAAAAABBQAAAAAAgwAAAAAABAAAAAACgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAABIwAAAAADIwAAAAAAIwAAAAACBQAAAAACgwAAAAAABAAAAAABBAAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAACBQAAAAADBQAAAAAABQAAAAAABQAAAAADgwAAAAAABAAAAAAABAAAAAABBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAABAAAAAADBAAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAADBQAAAAACBQAAAAAABQAAAAACgwAAAAAABAAAAAAABAAAAAACBAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAABQAAAAACBQAAAAABBQAAAAABgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAACBQAAAAACJAAAAAAGgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAABBQAAAAAABQAAAAAABQAAAAADgwAAAAAABAAAAAADgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAAIwAAAAABIwAAAAACIwAAAAABBQAAAAAAgwAAAAAABAAAAAABBAAAAAABBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAABBQAAAAADBQAAAAABBQAAAAADBQAAAAACgwAAAAAABAAAAAACBAAAAAACBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAABAAAAAADBAAAAAABAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAACBQAAAAADBQAAAAAABQAAAAACgwAAAAAABAAAAAACBAAAAAADBAAAAAAC
version: 6
-8,-2:
ind: -8,-2
- tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAGAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAADAAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAACBwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAADAAAAAAAAwAAAAADgwAAAAAAAwAAAAAAAwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAALBwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAGgwAAAAAABAAAAAAABAAAAAACBAAAAAABBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAABgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAABBAAAAAAABAAAAAADBAAAAAADgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABwAAAAAAAgAAAAAABwAAAAAACwAAAAAABAAAAAABBAAAAAACBAAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAABgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAABAAAAAABBAAAAAADgwAAAAAAgwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAABgwAAAAAABwAAAAAGAgAAAAAABwAAAAAIgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAABBAAAAAADBQAAAAADBQAAAAACBQAAAAADBQAAAAACBQAAAAADBQAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAADBAAAAAABBQAAAAAABQAAAAABBQAAAAAABQAAAAABBQAAAAADBQAAAAACgwAAAAAABwAAAAAAAgAAAAAABwAAAAAACwAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAAABAAAAAAB
+ tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAFBwAAAAAEBwAAAAAAgwAAAAAAGwAAAAAAGwAAAAAAGwAAAAADBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAIAgAAAAAAAgAAAAAABwAAAAAGBwAAAAAABwAAAAAAgwAAAAAAGwAAAAABGwAAAAADGwAAAAABBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAADBwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAGwAAAAABGwAAAAACGwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAAAgwAAAAAABwAAAAAJAgAAAAAABwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAADBAAAAAAABAAAAAADBAAAAAABgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABwAAAAAJAgAAAAAABwAAAAAACwAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAABAAAAAAABAAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAADgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAACBQAAAAAABQAAAAAABQAAAAABBQAAAAACBQAAAAACBQAAAAABgwAAAAAABwAAAAACAgAAAAAABwAAAAAAgwAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAADBQAAAAADBQAAAAABBQAAAAACBQAAAAACBQAAAAACBQAAAAACgwAAAAAABwAAAAAKAgAAAAAABwAAAAAACwAAAAAABAAAAAADBAAAAAACBAAAAAACBAAAAAACBAAAAAAB
version: 6
-8,-1:
ind: -8,-1
- tiles: BQAAAAACBQAAAAAABQAAAAACBQAAAAADBQAAAAACBQAAAAAAgwAAAAAABwAAAAAJAgAAAAAABwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAABBAAAAAADBAAAAAACBQAAAAAABQAAAAACBQAAAAACBQAAAAABBQAAAAAABQAAAAACgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAJAgAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACgwAAAAAABAAAAAADBAAAAAAABAAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAABBwAAAAAKBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAA
+ tiles: BQAAAAABBQAAAAADBQAAAAABBQAAAAACBQAAAAACBQAAAAABgwAAAAAABwAAAAAAAgAAAAAABwAAAAAEgwAAAAAABAAAAAACBAAAAAADBAAAAAACBAAAAAAABAAAAAABBQAAAAABBQAAAAACBQAAAAABBQAAAAACBQAAAAAABQAAAAACgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACgwAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABgwAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABgwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAACBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAGBwAAAAAM
version: 6
-8,0:
ind: -8,0
- tiles: gwAAAAAAgwAAAAAABwAAAAAJgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAFEgAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAFgwAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAABBAAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAABBAAAAAACBAAAAAACBAAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAAwAAAAACAwAAAAABAwAAAAACBAAAAAACBAAAAAADBAAAAAADBAAAAAABBAAAAAACAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAADBwAAAAAABwAAAAAAgwAAAAAABAAAAAABBAAAAAACBAAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAACAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAA
+ tiles: gwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAJEgAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAHgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAAABAAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAADBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACBAAAAAABBAAAAAADBAAAAAAABAAAAAADBAAAAAACAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAABwAAAAACBwAAAAAABwAAAAAHgwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAA
version: 6
-6,1:
ind: -6,1
- tiles: BAAAAAABIgAAAAACBAAAAAADCgAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABAAAAAABIgAAAAADCgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABAAAAAAAIgAAAAABCgAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAALBwAAAAAEBwAAAAAFBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABAAAAAABIgAAAAADCgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABAAAAAADCgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABAAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABAAAAAABCgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAJgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABAAAAAAABwAAAAAABwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAABAAAAAACBwAAAAAABwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABAAAAAADBwAAAAAABwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAABAAAAAACBAAAAAABBAAAAAABgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAACBAAAAAABAwAAAAABgwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAADgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABAAAAAADBAAAAAADBAAAAAABBAAAAAADBAAAAAABAwAAAAADgwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAABgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAAABAAAAAADAwAAAAABgwAAAAAABQAAAAAABQAAAAABBQAAAAACBQAAAAABBQAAAAADgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAACBAAAAAABAwAAAAABgwAAAAAABQAAAAADBQAAAAABBQAAAAACBQAAAAABBQAAAAABgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAADBQAAAAABBQAAAAABBQAAAAAABQAAAAACgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAA
+ tiles: BAAAAAACIgAAAAABBAAAAAABCgAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAIgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABAAAAAACIgAAAAABCgAAAAAACgAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABAAAAAACIgAAAAACCgAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABAAAAAACIgAAAAAACgAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABAAAAAADCgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABAAAAAAACgAAAAAABwAAAAAFBwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABAAAAAABCgAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAFBwAAAAAGBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABAAAAAACBwAAAAAABwAAAAAIGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAABAAAAAAABwAAAAAABwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABAAAAAADBwAAAAAABwAAAAAKGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAABAAAAAABBAAAAAADBAAAAAADgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAAABAAAAAADAwAAAAADgwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAACgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAABBAAAAAADAwAAAAADgwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAACgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAACBAAAAAACAwAAAAAAgwAAAAAABQAAAAABBQAAAAAABQAAAAABBQAAAAADBQAAAAACgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAACBAAAAAABAwAAAAACgwAAAAAABQAAAAAABQAAAAABBQAAAAADBQAAAAAABQAAAAABgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAADBQAAAAAABQAAAAABBQAAAAACBQAAAAABgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAA
version: 6
-6,2:
ind: -6,2
- tiles: BAAAAAABBAAAAAADBAAAAAACAwAAAAADAwAAAAACAwAAAAAAgwAAAAAAgwAAAAAABQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAABAAAAAABBAAAAAACBAAAAAAAAwAAAAAAAwAAAAADAwAAAAACgwAAAAAABQAAAAAABQAAAAACBQAAAAACBQAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABAAAAAACBAAAAAADBAAAAAADAwAAAAAAAwAAAAADAwAAAAABgwAAAAAABQAAAAACBQAAAAABBQAAAAAABQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABAAAAAACBAAAAAADBAAAAAABAwAAAAACAwAAAAACAwAAAAACgwAAAAAABQAAAAADBQAAAAADBQAAAAACBQAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: BAAAAAAABAAAAAABBAAAAAABAwAAAAACAwAAAAACAwAAAAACgwAAAAAAgwAAAAAABQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAABAAAAAACBAAAAAADBAAAAAAAAwAAAAAAAwAAAAADAwAAAAAAgwAAAAAABQAAAAACBQAAAAADBQAAAAACBQAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAwAAAAADAwAAAAAAAwAAAAAAgwAAAAAABQAAAAADBQAAAAACBQAAAAADBQAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABAAAAAADBAAAAAADBAAAAAABAwAAAAACAwAAAAACAwAAAAABgwAAAAAABQAAAAABBQAAAAACBQAAAAABBQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-7,1:
ind: -7,1
- tiles: BAAAAAABBAAAAAAABAAAAAABBAAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAADBAAAAAABBAAAAAAABAAAAAADBAAAAAADBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADFQAAAAAAFgAAAAAAFgAAAAAAFgAAAAACFgAAAAAGgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADFgAAAAAIFgAAAAAAFgAAAAAGFgAAAAAAFgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAKFgAAAAAAFgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
+ tiles: BAAAAAABBAAAAAADBAAAAAADBAAAAAACBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAADBAAAAAACBAAAAAACBAAAAAACBAAAAAACBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACFQAAAAAAFgAAAAAAFgAAAAAGFgAAAAAEFgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACFgAAAAADFgAAAAAAFgAAAAAAFgAAAAAFFgAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAGgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
version: 6
-7,2:
ind: -7,2
- tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAEBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAKgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAALgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAKBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAFBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAMgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAADgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAJBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAMBwAAAAABBwAAAAAABwAAAAAEBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAJBwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAABwAAAAAJBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-7,-5:
ind: -7,-5
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAADAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAIBwAAAAALBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAGBwAAAAAKBwAAAAAJBwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAALBwAAAAAEBwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAGBwAAAAAKBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAKBwAAAAAKBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAGAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAIBwAAAAAABwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAA
version: 6
-8,1:
ind: -8,1
- tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAACBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAADBAAAAAACBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAAwAAAAACAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAAAAwAAAAACgwAAAAAABAAAAAABBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAABBwAAAAAABwAAAAAKBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAFQAAAAAAFQAAAAAABwAAAAAABwAAAAAABwAAAAAIgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAFQAAAAAAFQAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAFQAAAAAAFQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGAAAAAAAgwAAAAAABwAAAAAJBwAAAAABBwAAAAAABwAAAAAABwAAAAAKgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAA
+ tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAABBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAACBAAAAAAABAAAAAACBAAAAAACBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABAwAAAAACAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAADAwAAAAADgwAAAAAABAAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAACBwAAAAAABwAAAAAIBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAALgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAFQAAAAAAFQAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAFQAAAAAAFQAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAFQAAAAAAFQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGAAAAAAAgwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAA
version: 6
-8,2:
ind: -8,2
- tiles: gwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: gwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAJgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAKBwAAAAAABwAAAAAKBwAAAAAHBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-6,-5:
ind: -6,-5
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAABBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAACBwAAAAADBwAAAAADBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAABBwAAAAAEBwAAAAAHBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAEBwAAAAAIBwAAAAABBwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAABwAAAAAABwAAAAAKBwAAAAABBwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAGBwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAAFgAAAAAAFgAAAAAKFgAAAAAAFgAAAAAAFgAAAAAJFgAAAAACBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAAHgAAAAACBwAAAAAAgwAAAAAABwAAAAAAFgAAAAAAFgAAAAAAFgAAAAACFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHgwAAAAAABwAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAFFgAAAAAAFgAAAAACFgAAAAADFgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIgwAAAAAABwAAAAAAFgAAAAAMFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAADFgAAAAAAFgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAHBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAIBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAABgwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAEBwAAAAAHBwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAALBwAAAAAJBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAFKgAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAKgAAAAAGKgAAAAAFKgAAAAAAKgAAAAAAKgAAAAALKgAAAAAAKgAAAAAAgwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAIKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAA
version: 6
-9,0:
ind: -9,0
- tiles: AQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJgAAAAAAgwAAAAAAgwAAAAAABwAAAAAGgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAHgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAABwAAAAAKgwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAKAgAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAMAgAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA
+ tiles: AQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJgAAAAABgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAHgwAAAAAAEgAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAABwAAAAAAgwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAABwAAAAAEgwAAAAAABwAAAAAEBwAAAAAKBwAAAAAABwAAAAABBwAAAAAAgwAAAAAABwAAAAAMgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAHBwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAABwAAAAAAgwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAGBwAAAAAHgwAAAAAABwAAAAAJgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAFgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA
version: 6
-9,-1:
ind: -9,-1
- tiles: AQAAAAAAgwAAAAAACwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAACwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABQAAAAABBQAAAAAABQAAAAACgwAAAAAAAQAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJgAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJgAAAAABJgAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJgAAAAABJgAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJgAAAAABJgAAAAAAgwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAJ
+ tiles: AQAAAAAAgwAAAAAACwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAACwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABQAAAAADBQAAAAADBQAAAAABgwAAAAAAAQAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJgAAAAABJgAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJgAAAAAAJgAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJgAAAAACJgAAAAACgwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAA
version: 6
-9,-2:
ind: -9,-2
- tiles: gwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAGAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAAHBwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAALBwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAACwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAACwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAACwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAACwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABQAAAAABBQAAAAADBQAAAAACgwAAAAAAAQAAAAAAgwAAAAAACwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAACwAAAAAAgwAAAAAABwAAAAAMAgAAAAAAgwAAAAAABQAAAAACBQAAAAADBQAAAAABBQAAAAABAQAAAAAAgwAAAAAACwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAACwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABQAAAAADBQAAAAAABQAAAAADgwAAAAAA
+ tiles: gwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAJgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAABgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAABwAAAAABAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAACwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAACwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAACwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAACwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABQAAAAADBQAAAAADBQAAAAAAgwAAAAAAAQAAAAAAgwAAAAAACwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAACwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABQAAAAAABQAAAAABBQAAAAADBQAAAAABAQAAAAAAgwAAAAAACwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAACwAAAAAAgwAAAAAABwAAAAAGAgAAAAAAgwAAAAAABQAAAAABBQAAAAAABQAAAAADgwAAAAAA
version: 6
-9,1:
ind: -9,1
- tiles: gwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAHAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAHAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAEAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAKAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABAAAAAACBAAAAAABBAAAAAACBwAAAAACgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAABAAAAAABBwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAABAAAAAABBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAABwAAAAAABwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAADBwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAA
+ tiles: gwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAAMBwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABAAAAAABBAAAAAACBAAAAAABBwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAIGAAAAAAAGAAAAAAAGAAAAAAABAAAAAAABwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAABAAAAAABBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAABwAAAAAABwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAMBwAAAAAABwAAAAAEgwAAAAAAgwAAAAAA
version: 6
-10,-3:
ind: -10,-3
- tiles: AAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAHwAAAAABEgAAAAAAEgAAAAAABAAAAAABgwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAABAAAAAADgwAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAABAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAABAAAAAABBAAAAAAABAAAAAADBAAAAAACBAAAAAADBAAAAAADBAAAAAACBAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAABAAAAAAAgwAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAABBAAAAAADBAAAAAADBAAAAAADAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAHwAAAAADEgAAAAAAEgAAAAAABAAAAAADgwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAHwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAACAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAHwAAAAAAEgAAAAAAEgAAAAAABAAAAAADgwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAABAAAAAAAgwAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAADBAAAAAADAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAACBAAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAADAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAABAAAAAABgwAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAACBAAAAAACBAAAAAAABAAAAAABAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAHwAAAAAAEgAAAAAAEgAAAAAABAAAAAADgwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAHwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAABAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAA
version: 6
-10,-1:
ind: -10,-1
@@ -304,35 +301,35 @@ entities:
version: 6
-8,-4:
ind: -8,-4
- tiles: AAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAEwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAAwAAAAABAwAAAAADAwAAAAADgwAAAAAAAAAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAABAwAAAAADgwAAAAAAAwAAAAACAwAAAAABAwAAAAAADQAAAAADDQAAAAABgwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAABgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAAwAAAAADCQAAAAAAAwAAAAADDQAAAAADDQAAAAADgwAAAAAAAwAAAAADCQAAAAAABAAAAAADCQAAAAAAAwAAAAAAgwAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAAADQAAAAACDQAAAAAADQAAAAADDQAAAAACDQAAAAAABAAAAAABAwAAAAADBAAAAAABBAAAAAAABAAAAAAAAwAAAAAAgwAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAABDQAAAAAADQAAAAACDQAAAAACDQAAAAABDQAAAAACgwAAAAAAAwAAAAADCQAAAAAABAAAAAABCQAAAAAAAwAAAAAAgwAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAADQAAAAACDQAAAAABDQAAAAADDQAAAAABDQAAAAAAgwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABBAAAAAAABAAAAAADBAAAAAAABAAAAAACgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAEwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAAwAAAAABAwAAAAAAAwAAAAADgwAAAAAAAAAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAwAAAAACAwAAAAACAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAEwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAAAAwAAAAABgwAAAAAAAwAAAAABAwAAAAABAwAAAAADDQAAAAAADQAAAAADgwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAABgwAAAAAAgwAAAAAAAwAAAAABgwAAAAAAgwAAAAAAAwAAAAACCQAAAAAAAwAAAAADDQAAAAADDQAAAAAAgwAAAAAAAwAAAAACCQAAAAAABAAAAAADCQAAAAAAAwAAAAACgwAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAAADQAAAAAADQAAAAABDQAAAAAADQAAAAACDQAAAAABBAAAAAABAwAAAAACBAAAAAADBAAAAAAABAAAAAAAAwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAAABAAAAAAADQAAAAADDQAAAAAADQAAAAADDQAAAAADDQAAAAABgwAAAAAAAwAAAAABCQAAAAAABAAAAAADCQAAAAAAAwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAADQAAAAABDQAAAAAADQAAAAADDQAAAAACDQAAAAABgwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAABBAAAAAABBAAAAAAABAAAAAAABAAAAAACgwAAAAAAgwAAAAAAAwAAAAABAwAAAAABAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAAABAAAAAABgwAAAAAA
version: 6
-8,-3:
ind: -8,-3
- tiles: IwAAAAACIwAAAAAAIwAAAAAABAAAAAAAgwAAAAAABAAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAADBAAAAAABHwAAAAAAHwAAAAAAIwAAAAAABAAAAAABgwAAAAAABAAAAAABIwAAAAACIwAAAAACIwAAAAAAIwAAAAADIwAAAAACIwAAAAACIwAAAAADIwAAAAADIwAAAAABBAAAAAAAHwAAAAABHwAAAAABIwAAAAACBAAAAAADBAAAAAACBAAAAAABIwAAAAADHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAABHwAAAAACIwAAAAADBAAAAAADHwAAAAADHwAAAAAAIwAAAAAABAAAAAACgwAAAAAABAAAAAABIwAAAAABIwAAAAACIwAAAAADIwAAAAACIwAAAAAAIwAAAAADIwAAAAABIwAAAAADIwAAAAADBAAAAAAAIwAAAAAAIwAAAAADIwAAAAADBAAAAAACgwAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAACBAAAAAADBAAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAACBAAAAAAABAAAAAABBAAAAAABBAAAAAACBAAAAAACgwAAAAAAgwAAAAAAAwAAAAADAwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAADDQAAAAACDQAAAAACDQAAAAADgwAAAAAABAAAAAABBAAAAAADBAAAAAAABAAAAAADBAAAAAABDQAAAAADDQAAAAAADQAAAAACDQAAAAABgwAAAAAADQAAAAABDQAAAAACDQAAAAAADQAAAAACDQAAAAABgwAAAAAABAAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAADDQAAAAACDQAAAAACDQAAAAAADQAAAAADDQAAAAACDQAAAAACDQAAAAABDQAAAAADDQAAAAABDQAAAAADBAAAAAACBAAAAAADBAAAAAADBAAAAAABBAAAAAACBAAAAAACDQAAAAAADQAAAAABDQAAAAAADQAAAAAAgwAAAAAAAwAAAAACAwAAAAAAAwAAAAABDQAAAAABDQAAAAADgwAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAACEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAgwAAAAAACQAAAAAACQAAAAAACQAAAAAADQAAAAACDQAAAAACgwAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAADBAAAAAADEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAHBwAAAAAABwAAAAALAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAADAAAAAAAAwAAAAABgwAAAAAAAwAAAAACAwAAAAAB
+ tiles: IwAAAAABIwAAAAACIwAAAAADBAAAAAACgwAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAACBAAAAAADBAAAAAADBAAAAAACBAAAAAADBAAAAAADBAAAAAADBAAAAAACHwAAAAABHwAAAAAAIwAAAAAABAAAAAADgwAAAAAABAAAAAADIwAAAAABIwAAAAADIwAAAAACIwAAAAAAIwAAAAABIwAAAAADIwAAAAABIwAAAAADIwAAAAADBAAAAAAAHwAAAAADHwAAAAACIwAAAAABBAAAAAACBAAAAAACBAAAAAADIwAAAAABHwAAAAADHwAAAAACHwAAAAACHwAAAAABHwAAAAACHwAAAAACHwAAAAACIwAAAAADBAAAAAACHwAAAAAAHwAAAAADIwAAAAAABAAAAAABgwAAAAAABAAAAAACIwAAAAADIwAAAAABIwAAAAABIwAAAAAAIwAAAAAAIwAAAAADIwAAAAAAIwAAAAABIwAAAAADBAAAAAACIwAAAAADIwAAAAABIwAAAAACBAAAAAABgwAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAACBAAAAAABBAAAAAACBAAAAAADBAAAAAABBAAAAAABBAAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAACgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAACAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAAABAAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAAADQAAAAADDQAAAAAADQAAAAACDQAAAAAAgwAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAADBAAAAAAADQAAAAACDQAAAAADDQAAAAACDQAAAAAAgwAAAAAADQAAAAADDQAAAAAADQAAAAACDQAAAAABDQAAAAADgwAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAABDQAAAAAADQAAAAADDQAAAAACDQAAAAACDQAAAAACDQAAAAACDQAAAAAADQAAAAADDQAAAAABDQAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAABBAAAAAAABAAAAAACDQAAAAACDQAAAAADDQAAAAAADQAAAAAAgwAAAAAAAwAAAAACAwAAAAADAwAAAAAADQAAAAAADQAAAAAAgwAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAAABAAAAAABEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAgwAAAAAACQAAAAAACQAAAAAACQAAAAAADQAAAAAADQAAAAAAgwAAAAAABAAAAAADBAAAAAACBAAAAAADBAAAAAACBAAAAAABEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAADCwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAHBwAAAAAHAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAMBwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
version: 6
-9,-3:
ind: -9,-3
- tiles: gwAAAAAABAAAAAACBAAAAAABAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAABQAAAAADBQAAAAACBQAAAAADBQAAAAABBQAAAAAAgwAAAAAABAAAAAAAIwAAAAADIwAAAAACgwAAAAAABAAAAAAABAAAAAACAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAABBQAAAAADBQAAAAABBQAAAAABgwAAAAAABAAAAAAAIwAAAAAAHwAAAAACBAAAAAAABAAAAAABBAAAAAABAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAAABAAAAAABIwAAAAAAHwAAAAABgwAAAAAABAAAAAADBAAAAAADAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAABAAAAAAAIwAAAAAAHwAAAAACgwAAAAAABAAAAAADBAAAAAACAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAABAAAAAABIwAAAAADIwAAAAADgwAAAAAABAAAAAAABAAAAAACAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAADBAAAAAABgwAAAAAAgwAAAAAADQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAABDQAAAAAADQAAAAADDQAAAAADgwAAAAAADQAAAAAADQAAAAAADQAAAAABDQAAAAADDQAAAAACDQAAAAACDQAAAAACDQAAAAAADQAAAAABgwAAAAAADQAAAAADDQAAAAACDQAAAAACDQAAAAACDQAAAAABDQAAAAACDQAAAAADIwAAAAADIwAAAAABIwAAAAAADQAAAAABDQAAAAACDQAAAAACDQAAAAADDQAAAAACgwAAAAAADQAAAAADDQAAAAAADQAAAAAADQAAAAABDQAAAAACgwAAAAAADQAAAAACDQAAAAADDQAAAAAADQAAAAAADQAAAAABDQAAAAAADQAAAAAADQAAAAAADQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
+ tiles: gwAAAAAABAAAAAADBAAAAAACAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAABBQAAAAAABQAAAAAABQAAAAAAgwAAAAAABAAAAAADIwAAAAAAIwAAAAADgwAAAAAABAAAAAADBAAAAAADAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAABQAAAAACBQAAAAADBQAAAAADBQAAAAADBQAAAAABgwAAAAAABAAAAAADIwAAAAACHwAAAAABBAAAAAAABAAAAAAABAAAAAABAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAABBAAAAAABBAAAAAACBAAAAAAABAAAAAADBAAAAAAAIwAAAAABHwAAAAABgwAAAAAABAAAAAABBAAAAAADAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAADEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAABAAAAAABIwAAAAABHwAAAAABgwAAAAAABAAAAAAABAAAAAACAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAABEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAABAAAAAAAIwAAAAADIwAAAAADgwAAAAAABAAAAAAABAAAAAADAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAAAgwAAAAAAgwAAAAAADQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAAADQAAAAACDQAAAAACDQAAAAADgwAAAAAADQAAAAADDQAAAAADDQAAAAACDQAAAAABDQAAAAADDQAAAAADDQAAAAABDQAAAAAADQAAAAADgwAAAAAADQAAAAABDQAAAAAADQAAAAAADQAAAAAADQAAAAADDQAAAAACDQAAAAAAIwAAAAACIwAAAAAAIwAAAAADDQAAAAACDQAAAAADDQAAAAAADQAAAAABDQAAAAABgwAAAAAADQAAAAAADQAAAAACDQAAAAACDQAAAAACDQAAAAACgwAAAAAADQAAAAABDQAAAAABDQAAAAACDQAAAAAADQAAAAAADQAAAAABDQAAAAAADQAAAAADDQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
version: 6
-3,1:
ind: -3,1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAAgwAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAABBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAAABAAAAAADgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgwAAAAAABAAAAAACBAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAADBAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgwAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-2,1:
ind: -2,1
- tiles: BAAAAAABBAAAAAADBAAAAAAABAAAAAABBAAAAAACBAAAAAABBAAAAAADBAAAAAAABAAAAAABAwAAAAACGgAAAAAAGgAAAAAAAwAAAAABAwAAAAAABwAAAAAABwAAAAAMBAAAAAACBAAAAAADBAAAAAABBAAAAAADBAAAAAAABAAAAAABBAAAAAADBAAAAAABBAAAAAABAwAAAAACGgAAAAAAGgAAAAAAAwAAAAACAwAAAAABBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAABAwAAAAADGgAAAAAAGgAAAAAAAwAAAAADAwAAAAACBwAAAAAABwAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAABBAAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAAwAAAAADAwAAAAADBwAAAAAFBwAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAABBAAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAABGgAAAAAAGgAAAAAAAwAAAAABAwAAAAAABwAAAAAABwAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAADBAAAAAACBAAAAAABBAAAAAACBAAAAAABgwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: BAAAAAABBAAAAAACBAAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAACBAAAAAADBAAAAAAAAwAAAAACGgAAAAAAGgAAAAAAAwAAAAADAwAAAAAABwAAAAAIBwAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAACBAAAAAACBAAAAAACBAAAAAAAAwAAAAABGgAAAAAAGgAAAAAAAwAAAAACAwAAAAADBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAACBAAAAAAAAwAAAAABGgAAAAAAGgAAAAAAAwAAAAACAwAAAAADBwAAAAAABwAAAAAABAAAAAABBAAAAAACBAAAAAAABAAAAAAABAAAAAABBAAAAAACBAAAAAAABAAAAAACBAAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAAwAAAAACAwAAAAACBwAAAAALBwAAAAADBAAAAAABBAAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAACBAAAAAACBAAAAAACBAAAAAABBAAAAAACGgAAAAAAGgAAAAAAAwAAAAACAwAAAAABBwAAAAAABwAAAAAHBAAAAAACBAAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAADBAAAAAABBAAAAAACBAAAAAADgwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-1,1:
ind: -1,1
- tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAJBwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAFBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: BwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAHBwAAAAAABwAAAAAKBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAABBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAEBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-9,2:
ind: -9,2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAIBwAAAAAKBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAJBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAJBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-2,-5:
ind: -2,-5
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAABwAAAAADBwAAAAAHBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAJAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAGBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAABgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAHgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAALBwAAAAAKAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAEBwAAAAAHBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAADgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
version: 6
0,-1:
ind: 0,-1
@@ -340,7 +337,7 @@ entities:
version: 6
-4,-5:
ind: -4,-5
- tiles: BwAAAAAABwAAAAALBwAAAAAABwAAAAALBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAALBwAAAAADBwAAAAACBwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAALBwAAAAAABwAAAAAGBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAEBwAAAAAIBwAAAAAABwAAAAAKBwAAAAAABwAAAAAEBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALJwAAAAACJwAAAAADJwAAAAAAJwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAAJwAAAAADJwAAAAACJwAAAAADJwAAAAABJwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAJwAAAAACJwAAAAABJwAAAAAAJwAAAAACJwAAAAADBwAAAAAHBwAAAAABBwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAADBwAAAAAABwAAAAAGJwAAAAADJwAAAAADJwAAAAABJwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA
+ tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAJBwAAAAAABwAAAAAFBwAAAAAEBwAAAAAFBwAAAAAABwAAAAAABwAAAAACBwAAAAAJBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAMBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAKBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAGgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAACgwAAAAAAJwAAAAAAJwAAAAABJwAAAAADJwAAAAABgwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHgwAAAAAAJwAAAAABJwAAAAABJwAAAAABJwAAAAADgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAACgwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAAgwAAAAAAJwAAAAACJwAAAAAAJwAAAAADJwAAAAACgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAFBwAAAAAGBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAGBwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA
version: 6
-10,0:
ind: -10,0
@@ -352,20 +349,24 @@ entities:
version: 6
-3,-5:
ind: -3,-5
- tiles: BwAAAAAGBwAAAAAABwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAADBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAALBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAKBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAFBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAKBwAAAAAAEgAAAAAADAAAAAAAEgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAIQAAAAABIQAAAAADIQAAAAADgwAAAAAABwAAAAAABwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAIBwAAAAAEBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAMBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAACgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHgwAAAAAABwAAAAAABwAAAAAHgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAHGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAABwAAAAAABwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAABBAAAAAADgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAAABAAAAAAAgwAAAAAA
+ tiles: BwAAAAAABwAAAAAFBwAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAEgAAAAAADAAAAAAAEgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAGIQAAAAABIQAAAAABIQAAAAAAgwAAAAAABwAAAAAFBwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAMgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAADgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAMBwAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAJgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAJGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAABwAAAAAABwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAADBAAAAAACgwAAAAAABwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAABBAAAAAACgwAAAAAA
version: 6
-4,-6:
ind: -4,-6
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAFAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAACBwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-5,-6:
ind: -5,-6
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAGBwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAAAAAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAJ
version: 6
-1,-5:
ind: -1,-5
tiles: AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
+ -6,-6:
+ ind: -6,-6
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
+ version: 6
-2,-6:
ind: -2,-6
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAA
@@ -384,11 +385,11 @@ entities:
version: 6
-8,-5:
ind: -8,-5
- tiles: AAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACDAAAAAAAAwAAAAADAwAAAAACAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAADAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAADAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAAAAwAAAAAADAAAAAAAAwAAAAACDAAAAAAADAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAACAwAAAAAADAAAAAAAAwAAAAACAwAAAAABAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADDAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAAAAwAAAAADDAAAAAAAAwAAAAABAwAAAAACAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAADAwAAAAADDAAAAAAAAwAAAAABDAAAAAAADAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACDAAAAAAAAwAAAAACAwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEwAAAAAAEwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABDAAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAADAAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAADAAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ tiles: AAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAABAwAAAAACDAAAAAAAAwAAAAADAwAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAADAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAADAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAACAwAAAAAADAAAAAAAAwAAAAABDAAAAAAADAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAAAAwAAAAACDAAAAAAAAwAAAAADAwAAAAACAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADDAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAACAwAAAAAADAAAAAAAAwAAAAADAwAAAAABAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAACAwAAAAABDAAAAAAAAwAAAAABDAAAAAAADAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADDAAAAAAAAwAAAAAAAwAAAAADAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAADAAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACDAAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADDAAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
version: 6
-8,-6:
ind: -8,-6
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABEgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADEgAAAAAAgwAAAAAADAAAAAAAgwAAAAAAEgAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADEgAAAAAADAAAAAAADAAAAAAADAAAAAAAEgAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABEgAAAAAAgwAAAAAADAAAAAAAgwAAAAAAEgAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACEgAAAAAAEgAAAAAADAAAAAAAEgAAAAAAEgAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABEgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABEgAAAAAAgwAAAAAADAAAAAAAgwAAAAAAEgAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADEgAAAAAADAAAAAAADAAAAAAADAAAAAAAEgAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABEgAAAAAAgwAAAAAADAAAAAAAgwAAAAAAEgAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABEgAAAAAAEgAAAAAADAAAAAAAEgAAAAAAEgAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAA
version: 6
-9,-5:
ind: -9,-5
@@ -450,6 +451,7 @@ entities:
664: -24,-30
2619: -115,-42
2620: -115,-48
+ 2860: -73,-56
6206: -101,-13
6208: -33,-12
6210: -71,-19
@@ -515,6 +517,8 @@ entities:
1159: -52,-22
1160: -52,-23
1161: -52,-24
+ 1657: -115,-34
+ 1658: -114,-34
1748: -97,-36
1749: -97,-35
1750: -97,-34
@@ -602,6 +606,8 @@ entities:
6462: -141,-44
6463: -141,-43
6482: -96,33
+ 6483: -96,34
+ 6484: -96,35
6524: -91,27
6525: -91,28
6526: -91,29
@@ -612,29 +618,6 @@ entities:
6727: -24,-43
6728: -23,-43
6808: -52,-21
- 7365: -94,-39
- 7503: -89,-39
- 7504: -85,-39
- 7505: -81,-39
- 7535: -113,-32
- 7536: -112,-32
- 7537: -111,-32
- 7538: -110,-30
- 7539: -111,-30
- 7540: -111,-34
- 7541: -110,-34
- 7542: -94,-2
- 7543: -95,-2
- 7772: -116,-4
- 7773: -116,-3
- 7774: -115,-4
- 7775: -115,-3
- 7776: -114,-3
- 7777: -114,-4
- 7778: -113,-4
- 7779: -113,-3
- 7780: -109,-3
- 7782: -108,-3
- node:
angle: 3.141592653589793 rad
color: '#FFFFFFFF'
@@ -668,11 +651,6 @@ entities:
decals:
715: -31,-20
716: -31,-21
- - node:
- color: '#9FED5896'
- id: BotGreyscale
- decals:
- 7569: -100,2
- node:
color: '#EFB34196'
id: BotGreyscale
@@ -822,44 +800,37 @@ entities:
decals:
6247: -126,-44
6693: -114,-45
- 7670: -60,-31
- node:
color: '#FFFFFFFF'
id: BrickTileSteelCornerNw
decals:
+ 1885: -88,-50
+ 1918: -83,-47
6259: -130,-44
6685: -122,-45
- 7382: -86,-51
- 7387: -82,-48
- 7388: -81,-46
- 7666: -64,-31
- node:
color: '#FFFFFFFF'
id: BrickTileSteelCornerSe
decals:
6251: -126,-48
6695: -114,-47
- 7655: -60,-25
- 7672: -60,-33
- node:
color: '#FFFFFFFF'
id: BrickTileSteelCornerSw
decals:
6255: -130,-48
6696: -122,-47
- 7656: -64,-25
- 7673: -64,-33
- node:
color: '#FFFFFFFF'
id: BrickTileSteelEndW
decals:
- 7383: -86,-49
+ 1908: -88,-49
- node:
color: '#FFFFFFFF'
id: BrickTileSteelInnerNw
decals:
- 7389: -82,-49
- 7390: -81,-48
+ 1924: -83,-49
+ 1925: -82,-47
- node:
color: '#FFFFFFFF'
id: BrickTileSteelLineE
@@ -868,32 +839,24 @@ entities:
6249: -126,-46
6250: -126,-47
6694: -114,-46
- 7662: -60,-24
- 7663: -60,-23
- 7664: -60,-32
- node:
color: '#FFFFFFFF'
id: BrickTileSteelLineN
decals:
+ 1892: -86,-49
+ 1893: -85,-49
+ 1909: -87,-49
+ 1926: -84,-49
6260: -129,-44
6261: -128,-44
6262: -127,-44
6686: -121,-45
+ 6687: -120,-45
+ 6688: -119,-45
+ 6689: -118,-45
+ 6690: -117,-45
+ 6691: -116,-45
6692: -115,-45
- 7352: -116,-45
- 7353: -118,-45
- 7354: -118,-45
- 7355: -119,-45
- 7356: -120,-45
- 7357: -117,-45
- 7384: -85,-49
- 7385: -84,-49
- 7386: -83,-49
- 7392: -80,-46
- 7393: -79,-46
- 7667: -63,-31
- 7668: -62,-31
- 7669: -61,-31
- node:
color: '#FFFFFFFF'
id: BrickTileSteelLineS
@@ -902,31 +865,25 @@ entities:
6253: -128,-48
6254: -129,-48
6698: -121,-47
+ 6699: -120,-47
+ 6700: -119,-47
+ 6701: -118,-47
+ 6702: -117,-47
+ 6703: -116,-47
6704: -115,-47
- 7346: -119,-47
- 7347: -121,-47
- 7348: -120,-47
- 7349: -118,-47
- 7350: -117,-47
- 7351: -116,-47
- 7657: -63,-25
- 7658: -62,-25
- 7659: -61,-25
- 7674: -63,-33
- 7675: -62,-33
- 7676: -61,-33
- node:
color: '#FFFFFFFF'
id: BrickTileSteelLineW
decals:
+ 1895: -88,-51
+ 1900: -82,-46
+ 1919: -82,-46
+ 1920: -82,-45
+ 1922: -83,-48
6256: -130,-47
6257: -130,-46
6258: -130,-45
6697: -122,-46
- 7391: -81,-47
- 7660: -64,-24
- 7661: -64,-23
- 7665: -64,-32
- node:
color: '#334E6DC8'
id: BrickTileWhiteCornerNe
@@ -1008,6 +965,13 @@ entities:
6465: -143,-43
6985: -124,-80
7022: -124,-71
+ - node:
+ color: '#DE3A3A96'
+ id: BrickTileWhiteCornerNw
+ decals:
+ 1709: -101,-31
+ 1710: -101,-27
+ 1711: -101,-23
- node:
color: '#334E6DC8'
id: BrickTileWhiteCornerSe
@@ -1083,6 +1047,13 @@ entities:
6464: -143,-49
6988: -124,-87
7023: -124,-75
+ - node:
+ color: '#DE3A3A96'
+ id: BrickTileWhiteCornerSw
+ decals:
+ 1715: -101,-33
+ 1716: -101,-29
+ 1717: -101,-25
- node:
color: '#334E6DC8'
id: BrickTileWhiteInnerNe
@@ -1253,7 +1224,7 @@ entities:
6036: -35,-9
6979: -86,0
6980: -86,1
- 7756: -86,2
+ 6981: -86,2
- node:
color: '#52B4E996'
id: BrickTileWhiteLineE
@@ -1447,16 +1418,6 @@ entities:
1727: -100,-31
1728: -100,-27
1729: -100,-23
- 7506: -89,-38
- 7507: -88,-38
- 7508: -87,-38
- 7509: -86,-38
- 7510: -85,-38
- 7511: -84,-38
- 7512: -83,-38
- 7513: -82,-38
- 7514: -81,-38
- 7515: -80,-38
- node:
color: '#EFB34196'
id: BrickTileWhiteLineN
@@ -1516,6 +1477,8 @@ entities:
2501: -122,-48
2502: -121,-48
2503: -120,-48
+ 2504: -119,-48
+ 2505: -118,-48
2506: -117,-48
6393: -150,-44
6394: -148,-44
@@ -1546,8 +1509,6 @@ entities:
7033: -120,-69
7034: -118,-69
7035: -119,-69
- 7338: -119,-48
- 7339: -118,-48
- node:
color: '#D4D4D496'
id: BrickTileWhiteLineS
@@ -1673,9 +1634,12 @@ entities:
color: '#DE3A3A96'
id: BrickTileWhiteLineW
decals:
+ 1724: -101,-24
+ 1725: -101,-28
+ 1726: -101,-32
6982: -86,0
6983: -86,1
- 7755: -86,2
+ 6984: -86,2
- node:
color: '#EFB34196'
id: BrickTileWhiteLineW
@@ -1706,6 +1670,7 @@ entities:
1324: -102,-11
1340: -106,-9
1349: -100,-13
+ 1357: -103,1
1383: -106,-22
1394: -106,-39
1396: -106,-43
@@ -1719,6 +1684,9 @@ entities:
1610: -25,-13
1611: -20,-16
1622: -50,-62
+ 1881: -81,-47
+ 1884: -81,-46
+ 1917: -83,-49
2130: -109,5
2131: -113,5
2141: -109,11
@@ -1730,12 +1698,14 @@ entities:
2902: -82,-56
2908: -85,-59
5484: -33,-72
+ 5569: -50,-66
+ 5570: -76,-69
5916: -132,15
+ 6107: -71,-47
6111: -66,-38
6116: -59,-45
6718: -75,-27
7059: -103,-55
- 7819: -50,-66
- node:
color: '#FFFFFFFF'
id: BushAThree
@@ -1743,6 +1713,7 @@ entities:
1275: -70.94724,-48.08919
1276: -62.98816,-38.020138
1315: -106,0
+ 1366: -103,-6
1367: -88,-13
1612: -21,-13
1613: -19,-13
@@ -1755,19 +1726,17 @@ entities:
2871: -38,17
2873: -31,-8
5567: -105,-23
+ 5568: -52,-67
5911: -128,20
6824: -131,-30
6975: -17,-63
6976: -15,-62
- 7381: -80,-46
- 7497: -103,-36
- node:
color: '#FFFFFFFF'
id: BushATwo
decals:
1280: -59.994514,-48.01404
6828: -132,-30
- 7380: -81,-47
- node:
color: '#FFFFFFFF'
id: BushCOne
@@ -1783,22 +1752,19 @@ entities:
5472: -14,-51
5491: -28,-73
6113: -61,-39
- 7501: -102,-20
- 7613: -105,7
- node:
color: '#FFFFFFFF'
id: BushCThree
decals:
1293: -54,-17
+ 1297: -50,-12
1298: -70,-16
1483: -122,-9
1595: -34,-13
2934: -92,21
+ 5578: -73,-76
6977: -17,-58
6978: -14,-57
- 7737: -68,-50
- 7817: -53,-67
- 7821: -62,-68
- node:
color: '#FFFFFFFF'
id: BushCTwo
@@ -1807,6 +1773,7 @@ entities:
1301: -56,-17
1302: -68,-17
1329: -102,-13
+ 1333: -102,-17
2133: -114,1
2156: -132,9
2159: -108,9
@@ -1814,37 +1781,26 @@ entities:
2895: -86,-58
2933: -90,20
5471: -14,-49
+ 5557: -54,-67
5564: -106,-24
+ 5574: -74,-68
+ 5575: -73,-72
+ 5579: -75,-78
5917: -130,15
7060: -102,-54
7063: -102,-56
7064: -95,-58
- 7376: -82,-51
- 7502: -102,-18
- 7616: -107,-33
- 7618: -106,-59
- 7639: -105,5
- 7827: -85,-73
- 7834: -98,-15
- node:
color: '#FFFFFFFF'
id: Busha1
decals:
1400: -106,-53
+ 1901: -88,-51
2149: -130,-1
5467: -14,-46
5919: -128,15
6719: -72,-27
6825: -133,-29
- 7375: -82,-48
- 7500: -102,-23
- 7617: -107,-30
- 7620: -98,-58
- 7622: -77,-58
- 7623: -102,-15
- 7626: -106,-13
- 7638: -106,10
- 7831: -80,-59
- node:
color: '#FFFFFFFF'
id: Busha2
@@ -1854,15 +1810,22 @@ entities:
1278: -60.04139,-41.073265
1295: -53,-17
1337: -105,-18
+ 1359: -101,4
+ 1360: -103,6
1364: -100,10
+ 1365: -103,-8
1376: -81,-13
1386: -103,-29
1395: -106,-41
+ 1403: -107,-32
1465: -108,-9
1466: -112,-12
+ 1605: -34,-15
1606: -36,-16
1616: -51,-59
1624: -48,-59
+ 1875: -84,-51
+ 1916: -82,-48
2128: -108,0
2129: -108,3
2152: -132,2
@@ -1870,22 +1833,20 @@ entities:
2881: -31,-1
2889: -103,-58
5488: -31,-72
+ 5558: -53,-66
+ 5572: -74,-69
+ 5580: -73,-78
5914: -129,20
5915: -132,13
5943: -103,-42
+ 6105: -72,-42
+ 6108: -69,-41
6117: -57,-48
6717: -72,-25
6820: -122,-32
6823: -126,-29
6973: -19,-59
7058: -103,-53
- 7499: -102,-26
- 7611: -102,0
- 7615: -106,4
- 7624: -106,-15
- 7631: -102,-7
- 7637: -106,8
- 7820: -63,-68
- node:
cleanable: True
color: '#FFFFFFFF'
@@ -1911,6 +1872,7 @@ entities:
1617: -49,-61
1618: -49,-59
1635: -104,-49
+ 1910: -88,-49
2137: -108,-1
2142: -111,11
2150: -128,-1
@@ -1924,7 +1886,9 @@ entities:
5474: -14,-55
5487: -29,-72
5496: -120,-33
+ 5497: -119,-30
5566: -105,-25
+ 5571: -73,-68
5909: -133,18
5912: -133,20
5913: -131,19
@@ -1935,13 +1899,6 @@ entities:
6827: -130,-29
6974: -18,-62
7224: -136,7
- 7378: -81,-46
- 7498: -102,-30
- 7632: -105,-2
- 7736: -69,-48
- 7823: -79,-74
- 7828: -84,-72
- 7829: -83,-59
- node:
color: '#FFFFFFFF'
id: Bushb1
@@ -1950,17 +1907,16 @@ entities:
1339: -106,-10
1381: -107,-29
1385: -103,-31
+ 1389: -106,-32
+ 1593: -41,-13
1594: -34,-16
2930: -93,19
5469: -14,-48
5485: -36,-74
+ 5573: -75,-68
+ 5577: -76,-73
6830: -128,-29
7062: -104,-52
- 7377: -80,-48
- 7619: -102,-59
- 7621: -93,-56
- 7835: -94,-15
- 7836: -39,-15
- node:
color: '#FFFFFFFF'
id: Bushb2
@@ -1969,6 +1925,9 @@ entities:
1294: -52,-16
1314: -106,-3
1342: -105,-7
+ 1343: -98,-15
+ 1354: -103,-5
+ 1355: -103,-2
1373: -86,-15
1374: -82,-13
1377: -79,-15
@@ -1996,13 +1955,6 @@ entities:
5493: -31,-74
5494: -30,-73
5961: -79,-56
- 7495: -102,-32
- 7612: -102,3
- 7634: -102,-2
- 7635: -102,2
- 7636: -106,6
- 7735: -70,-46
- 7818: -52,-66
- node:
color: '#FFFFFFFF'
id: Bushb3
@@ -2011,10 +1963,12 @@ entities:
1304: -69,-12
1318: -105,3
1338: -105,-20
+ 1358: -103,3
1368: -89,-15
1390: -107,-34
1391: -106,-36
1404: -106,-31
+ 1461: -104,8
1467: -113,-13
1468: -110,-12
1473: -125,-13
@@ -2024,7 +1978,9 @@ entities:
1486: -119,-15
1591: -38,-16
1592: -39,-13
+ 1608: -27,-13
1621: -46,-62
+ 1904: -82,-46
2143: -114,9
2151: -132,0
2890: -97,-56
@@ -2036,6 +1992,7 @@ entities:
5481: -36,-75
5482: -35,-74
5492: -28,-71
+ 5576: -72,-74
5908: -132,19
5942: -103,-43
6821: -123,-29
@@ -2043,9 +2000,6 @@ entities:
7256: -51,-20
7257: -53,-19
7258: -50,-22
- 7372: -86,-49
- 7374: -81,-49
- 7625: -105,-14
- node:
cleanable: True
color: '#FFFFFFFF'
@@ -2057,12 +2011,16 @@ entities:
id: Bushc1
decals:
1281: -63.264427,-49.067772
+ 1325: -103,-12
+ 1344: -94,-15
+ 1346: -103,-15
1347: -101,-15
1352: -92,-13
1362: -101,10
1369: -92,-15
1475: -127,-13
1598: -32,-16
+ 1602: -28,-15
1603: -25,-15
1619: -47,-60
1620: -48,-61
@@ -2078,10 +2036,6 @@ entities:
6109: -65,-41
6112: -63,-41
6826: -129,-30
- 7496: -103,-35
- 7633: -102,-4
- 7822: -75,-67
- 7830: -81,-60
- node:
color: '#FFFFFFFF'
id: Bushc2
@@ -2089,15 +2043,18 @@ entities:
1375: -81,-15
1597: -32,-12
1599: -28,-12
+ 1604: -29,-16
+ 1912: -85,-50
+ 1913: -87,-50
+ 1915: -83,-47
2899: -83,-60
2928: -88,18
5470: -13,-50
5483: -35,-75
+ 5561: -51,-66
5910: -131,20
6110: -67,-42
- 7373: -86,-51
- 7379: -79,-47
- 7824: -76,-75
+ 6723: -70,-41
- node:
color: '#FFFFFFFF'
id: Bushc3
@@ -2105,10 +2062,6 @@ entities:
1388: -103,-33
2913: -136,4
6114: -59,-42
- 7825: -77,-73
- 7826: -83,-74
- 7832: -78,-58
- 7833: -101,6
- node:
color: '#FFFFFFFF'
id: Bushd4
@@ -2130,41 +2083,28 @@ entities:
id: Bushg4
decals:
2843: -109,29
- 7741: -63.170547,-27.069342
- - node:
- color: '#FFFFFFFF'
- id: Bushh2
- decals:
- 7743: -63.248672,-28.850592
- - node:
- color: '#FFFFFFFF'
- id: Bushh3
- decals:
- 7742: -60.889297,-28.631842
- node:
color: '#FFFFFFFF'
id: Bushi1
decals:
+ 1284: -60.82099,-27.203562
1289: -61.930435,-28.141062
2845: -110,31
- 7739: -63.998672,-27.944342
- - node:
- color: '#FFFFFFFF'
- id: Bushi2
- decals:
- 7738: -64.1393,-28.944342
- 7744: -60.701797,-27.131842
- 7746: -59.904922,-28.991215
- node:
color: '#FFFFFFFF'
id: Bushi3
decals:
+ 1283: -63.03974,-27.328562
1285: -63.03974,-28.297312
1287: -60.961617,-29.062937
+ 1288: -62.930435,-29.156687
2844: -111,29
2846: -108,31
- 7740: -63.983047,-26.928717
- 7745: -60.014297,-27.928715
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushi4
+ decals:
+ 1286: -61.03974,-27.703562
- node:
color: '#FFFFFFFF'
id: Bushj1
@@ -2181,16 +2121,22 @@ entities:
decals:
828: -20,-49
829: -19,-49
+ 830: -18,-49
831: -20,-50
832: -19,-50
+ 833: -18,-50
+ 834: -18,-51
835: -19,-51
836: -20,-51
837: -20,-53
838: -19,-53
+ 839: -18,-53
+ 840: -18,-54
841: -19,-54
842: -20,-54
843: -20,-55
844: -19,-55
+ 845: -18,-55
- node:
color: '#52B4E996'
id: CheckerNESW
@@ -2264,6 +2210,8 @@ entities:
713: -32,-30
714: -31,-19
- node:
+ cleanable: True
+ zIndex: 1
color: '#FFFFFFFF'
id: Dirt
decals:
@@ -2280,19 +2228,6 @@ entities:
6708: -71,-37
6709: -70,-36
6710: -68,-36
- 7549: -99,-1
- 7550: -98,-2
- 7551: -97,-1
- 7552: -98,0
- 7553: -99,1
- 7554: -100,1
- 7555: -98,2
- 7556: -97,1
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: Dirt
- decals:
5206: -56,-54
5207: -55,-55
5208: -55,-54
@@ -2355,6 +2290,8 @@ entities:
7242: -21,19
7243: -22,20
- node:
+ cleanable: True
+ zIndex: 1
color: '#FFFFFFFF'
id: DirtHeavy
decals:
@@ -2367,11 +2304,6 @@ entities:
6083: -21,5
6084: -21,4
6085: -22,4
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: DirtHeavy
- decals:
329: -54,-11
330: -50,-11
1572: -65,-34
@@ -2381,22 +2313,32 @@ entities:
1576: -65,-36
1577: -66,-35
1578: -64,-35
+ 3382: -101,-33
3383: -100,-33
3384: -99,-33
3385: -99,-32
+ 3386: -101,-32
3387: -100,-32
+ 3388: -101,-31
3389: -99,-31
+ 3390: -101,-31
3391: -100,-31
3392: -99,-29
3393: -100,-29
+ 3394: -101,-29
+ 3395: -101,-28
3396: -100,-28
3397: -99,-28
3398: -99,-27
3399: -100,-27
+ 3400: -101,-27
+ 3401: -101,-25
3402: -100,-25
3403: -99,-25
3404: -99,-24
3405: -100,-24
+ 3406: -101,-24
+ 3407: -101,-23
3408: -100,-23
3409: -99,-23
4048: -97,-21
@@ -2417,11 +2359,14 @@ entities:
4063: -98,-18
- node:
cleanable: True
+ zIndex: 1
color: '#FFFFFFFF'
id: DirtHeavyMonotile
decals:
1579: -66,-34
- node:
+ cleanable: True
+ zIndex: 1
color: '#FFFFFFFF'
id: DirtLight
decals:
@@ -2441,11 +2386,6 @@ entities:
6713: -71,-32
6714: -71,-31
6715: -71,-30
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: DirtLight
- decals:
1580: -64,-33
1581: -65,-33
1582: -64,-32
@@ -2542,6 +2482,8 @@ entities:
6921: -153,-44
6922: -145,-45
- node:
+ cleanable: True
+ zIndex: 1
color: '#FFFFFFFF'
id: DirtMedium
decals:
@@ -2632,6 +2574,7 @@ entities:
7149: -94,33
7150: -95,33
7151: -96,33
+ 7152: -96,34
7153: -95,34
7154: -94,34
7155: -93,34
@@ -2642,6 +2585,7 @@ entities:
7160: -93,35
7161: -94,35
7162: -95,35
+ 7163: -96,35
7164: -97,33
7165: -97,32
7166: -98,32
@@ -2702,16 +2646,6 @@ entities:
7221: -121,34
7222: -122,34
7223: -122,33
- 7544: -96,-2
- 7545: -95,-1
- 7546: -94,-2
- 7547: -96,-1
- 7548: -107,-1
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: DirtMedium
- decals:
331: -54,-10
332: -51,-10
333: -52,-10
@@ -2719,6 +2653,7 @@ entities:
335: -50,-10
1518: -59,-22
1519: -59,-25
+ 1520: -63,-23
1521: -65,-25
1522: -65,-24
1523: -65,-23
@@ -2726,16 +2661,21 @@ entities:
1525: -59,-26
1526: -59,-25
1527: -58,-24
+ 1528: -60,-26
1529: -65,-26
1530: -65,-27
1531: -65,-28
+ 1532: -64,-29
1533: -66,-27
1534: -66,-29
1535: -59,-28
+ 1536: -64,-26
1537: -58,-27
+ 1538: -58,-31
1539: -60,-31
1540: -60,-32
1541: -59,-28
+ 1542: -58,-31
1543: -64,-31
1544: -65,-32
1545: -65,-34
@@ -2923,6 +2863,7 @@ entities:
3208: -121,-5
3209: -118,-6
3210: -119,-6
+ 3211: -119,-5
3212: -118,-5
3213: -119,-4
3214: -122,-6
@@ -3058,6 +2999,26 @@ entities:
3358: -128,-22
3359: -128,-23
3360: -128,-24
+ 3361: -113,-34
+ 3362: -112,-34
+ 3363: -111,-34
+ 3364: -110,-34
+ 3365: -110,-33
+ 3366: -110,-32
+ 3367: -110,-32
+ 3368: -110,-31
+ 3369: -110,-30
+ 3370: -112,-30
+ 3371: -111,-31
+ 3372: -111,-30
+ 3373: -111,-31
+ 3374: -111,-33
+ 3375: -111,-33
+ 3376: -112,-33
+ 3377: -113,-33
+ 3378: -114,-33
+ 3379: -115,-33
+ 3380: -101,-33
3381: -100,-33
3410: -97,-23
3411: -97,-24
@@ -3120,11 +3081,53 @@ entities:
3468: -94,-35
3469: -96,-35
3470: -96,-36
+ 3471: -94,-36
+ 3472: -93,-36
3473: -92,-36
3474: -95,-35
3475: -94,-38
+ 3476: -93,-38
+ 3477: -91,-38
+ 3478: -90,-38
+ 3479: -89,-38
+ 3480: -87,-38
+ 3481: -87,-39
+ 3482: -87,-39
+ 3483: -90,-39
+ 3484: -92,-39
3485: -94,-40
+ 3486: -93,-40
+ 3487: -91,-40
+ 3488: -89,-40
+ 3489: -87,-40
+ 3490: -88,-39
+ 3491: -89,-39
+ 3492: -90,-39
+ 3493: -91,-39
+ 3494: -93,-39
+ 3495: -84,-40
3496: -85,-40
+ 3497: -85,-39
+ 3498: -84,-39
+ 3499: -83,-39
+ 3500: -82,-39
+ 3501: -81,-39
+ 3502: -81,-40
+ 3503: -82,-40
+ 3504: -81,-38
+ 3505: -82,-38
+ 3506: -83,-38
+ 3507: -84,-38
+ 3508: -85,-38
+ 3509: -85,-42
+ 3510: -84,-42
+ 3511: -83,-42
+ 3512: -82,-42
+ 3513: -81,-42
+ 3514: -81,-43
+ 3515: -82,-43
+ 3516: -83,-43
+ 3517: -84,-43
3518: -83,-45
3519: -84,-45
3520: -84,-46
@@ -3170,6 +3173,21 @@ entities:
3560: -93,-51
3561: -89,-50
3562: -89,-49
+ 3563: -87,-50
+ 3564: -88,-50
+ 3565: -93,-42
+ 3566: -92,-43
+ 3567: -91,-43
+ 3568: -91,-42
+ 3569: -92,-42
+ 3570: -93,-43
+ 3571: -89,-43
+ 3572: -88,-43
+ 3573: -88,-43
+ 3574: -87,-43
+ 3575: -87,-42
+ 3576: -88,-42
+ 3577: -89,-42
3578: -101,-48
3579: -100,-48
3580: -100,-47
@@ -3181,16 +3199,29 @@ entities:
3586: -101,-45
3587: -101,-44
3588: -100,-44
+ 3589: -95,-61
3591: -96,-62
3592: -96,-62
+ 3609: -90,-62
+ 3611: -91,-61
+ 3612: -92,-61
+ 3613: -74,-57
+ 3614: -74,-57
3615: -72,-58
3616: -71,-57
3617: -70,-58
3618: -72,-57
+ 3619: -73,-57
+ 3620: -74,-58
+ 3621: -74,-56
+ 3622: -73,-56
+ 3623: -73,-56
+ 3624: -72,-56
3625: -70,-56
3626: -70,-56
3627: -70,-58
3628: -71,-58
+ 3629: -74,-58
3630: -69,-57
3631: -69,-58
3632: -68,-58
@@ -3431,16 +3462,28 @@ entities:
3869: -54,-27
3870: -57,-31
3871: -57,-32
+ 3872: -58,-33
3873: -59,-29
3874: -59,-29
+ 3875: -60,-29
+ 3876: -60,-30
3877: -59,-30
+ 3878: -61,-30
+ 3879: -62,-30
+ 3880: -63,-30
+ 3881: -64,-30
3882: -66,-30
3883: -66,-31
3884: -66,-32
3885: -66,-33
3886: -65,-29
+ 3887: -64,-28
+ 3888: -64,-27
3889: -64,-25
3890: -64,-24
+ 3891: -63,-23
+ 3892: -61,-23
+ 3893: -61,-23
3894: -61,-24
3895: -63,-25
3896: -63,-25
@@ -4355,6 +4398,8 @@ entities:
4996: -22,-36
4997: -24,-36
4998: -24,-35
+ 4999: -22,-35
+ 5000: -22,-35
5001: -22,-40
5002: -22,-40
5003: -23,-41
@@ -4912,6 +4957,7 @@ entities:
5804: -5,-19
5805: -4,-19
5806: -3,-19
+ 5807: -26,-63
5808: -33,-64
5820: -124,15
5821: -124,16
@@ -4995,6 +5041,9 @@ entities:
5899: -120,12
5900: -119,12
5901: -122,16
+ 5939: -93,-61
+ 5940: -93,-60
+ 5941: -93,-59
6121: -70,-26
6122: -69,-26
6123: -68,-26
@@ -5141,173 +5190,6 @@ entities:
7250: -53,-20
7251: -52,-20
7252: -51,-21
- 7400: -20,-55
- 7401: -20,-54
- 7402: -19,-54
- 7405: -19,-53
- 7406: -19,-51
- 7407: -20,-50
- 7408: -19,-49
- 7410: -19,-50
- 7411: -85,-47
- 7412: -85,-46
- 7413: -84,-46
- 7414: -84,-47
- 7415: -83,-47
- 7416: -83,-46
- 7417: -82,-47
- 7418: -82,-46
- 7419: -82,-45
- 7420: -81,-45
- 7421: -80,-45
- 7422: -79,-45
- 7423: -83,-48
- 7424: -84,-48
- 7425: -88,-49
- 7426: -87,-49
- 7427: -87,-50
- 7428: -88,-50
- 7429: -88,-51
- 7430: -87,-51
- 7431: -92,-48
- 7432: -93,-43
- 7433: -93,-42
- 7434: -92,-42
- 7435: -92,-43
- 7436: -91,-43
- 7437: -91,-42
- 7438: -91,-40
- 7439: -92,-40
- 7440: -93,-40
- 7441: -93,-39
- 7442: -93,-39
- 7443: -92,-39
- 7444: -91,-39
- 7445: -91,-38
- 7447: -93,-38
- 7448: -89,-39
- 7449: -87,-39
- 7450: -84,-39
- 7451: -83,-39
- 7452: -82,-39
- 7453: -80,-39
- 7454: -81,-39
- 7455: -81,-38
- 7456: -82,-38
- 7457: -83,-38
- 7458: -84,-38
- 7459: -85,-38
- 7460: -86,-38
- 7461: -88,-38
- 7462: -89,-38
- 7463: -87,-38
- 7464: -88,-39
- 7465: -85,-39
- 7466: -88,-41
- 7467: -90,-41
- 7468: -89,-41
- 7469: -89,-42
- 7470: -89,-43
- 7471: -87,-43
- 7472: -88,-42
- 7473: -87,-41
- 7474: -87,-42
- 7475: -88,-43
- 7476: -85,-43
- 7477: -84,-43
- 7478: -83,-43
- 7479: -83,-42
- 7480: -84,-42
- 7481: -85,-42
- 7482: -85,-41
- 7483: -84,-41
- 7484: -83,-41
- 7485: -81,-41
- 7486: -80,-41
- 7487: -79,-41
- 7488: -79,-42
- 7489: -80,-42
- 7490: -81,-42
- 7491: -81,-43
- 7492: -80,-43
- 7493: -80,-43
- 7494: -79,-43
- 7570: -111,-33
- 7571: -112,-33
- 7572: -113,-33
- 7573: -114,-33
- 7574: -114,-34
- 7575: -113,-34
- 7576: -112,-34
- 7577: -111,-34
- 7578: -110,-34
- 7579: -110,-33
- 7580: -110,-32
- 7581: -109,-32
- 7582: -110,-31
- 7583: -110,-30
- 7584: -111,-30
- 7585: -111,-31
- 7586: -112,-31
- 7587: -112,-30
- 7588: -113,-30
- 7589: -113,-31
- 7590: -114,-31
- 7591: -114,-30
- 7592: -114,-32
- 7593: -115,-32
- 7594: -116,-32
- 7595: -116,-31
- 7596: -116,-33
- 7682: -60,-34
- 7683: -61,-34
- 7684: -63,-33
- 7685: -62,-33
- 7686: -61,-33
- 7687: -60,-33
- 7688: -61,-32
- 7689: -62,-32
- 7690: -63,-32
- 7691: -64,-32
- 7692: -64,-31
- 7693: -63,-31
- 7694: -61,-31
- 7695: -61,-30
- 7696: -60,-30
- 7697: -62,-30
- 7698: -63,-30
- 7699: -64,-30
- 7703: -64,-25
- 7704: -64,-24
- 7705: -64,-23
- 7706: -63,-23
- 7707: -62,-23
- 7708: -61,-23
- 7709: -60,-23
- 7710: -60,-26
- 7714: -59,-27
- 7715: -61,-26
- 7716: -63,-26
- 7717: -64,-26
- 7718: -62,-26
- 7719: -63,-23
- 7720: -66,-24
- 7721: -66,-23
- 7722: -66,-25
- 7723: -66,-26
- 7724: -58,-26
- 7725: -58,-25
- 7726: -58,-28
- 7727: -58,-29
- 7728: -58,-31
- 7729: -59,-31
- 7730: -58,-30
- 7731: -58,-32
- 7732: -58,-33
- 7733: -59,-33
- 7734: -58,-34
- 7864: -96,34
- 7865: -96,35
- node:
color: '#52B4E996'
id: FullTileOverlayGreyscale
@@ -5418,6 +5300,9 @@ entities:
430: -29,17
431: -27,17
439: -28,17
+ 1260: -63,-23
+ 1261: -62,-23
+ 1263: -61,-23
- node:
color: '#DE3A3A96'
id: HalfTileOverlayGreyscale
@@ -5715,20 +5600,13 @@ entities:
color: '#8D1C9996'
id: QuarterTileOverlayGreyscale
decals:
+ 6495: -96,35
6496: -95,35
6497: -94,35
6499: -95,30
6500: -94,30
6501: -93,30
6502: -92,30
- 7862: -96,35
- - node:
- color: '#9FED5896'
- id: QuarterTileOverlayGreyscale
- decals:
- 7559: -96,2
- 7560: -95,2
- 7561: -94,2
- node:
color: '#A4610696'
id: QuarterTileOverlayGreyscale
@@ -5754,9 +5632,14 @@ entities:
2756: -127,-43
2757: -126,-43
2758: -125,-43
- 7328: -110,-45
- 7329: -109,-45
- 7330: -108,-45
+ - node:
+ color: '#D4D4D496'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 1264: -60,-23
+ 1640: -113,-30
+ 1641: -114,-30
+ 1642: -115,-30
- node:
color: '#DE3A3A96'
id: QuarterTileOverlayGreyscale
@@ -5787,13 +5670,18 @@ entities:
1794: -89,-30
1804: -81,-26
1805: -82,-26
- 7516: -93,-38
- 7517: -93,-39
- 7518: -93,-40
- 7747: -27,8
- 7748: -26,8
- 7749: -25,8
- 7750: -24,8
+ 1853: -93,-38
+ 1854: -92,-38
+ 1855: -91,-38
+ 1856: -90,-38
+ 1857: -89,-38
+ 1858: -88,-38
+ 1869: -87,-38
+ 1870: -85,-38
+ 1871: -84,-38
+ 1872: -83,-38
+ 1873: -82,-38
+ 1874: -81,-38
- node:
color: '#EFB34196'
id: QuarterTileOverlayGreyscale
@@ -5880,18 +5768,6 @@ entities:
2763: -127,-49
2764: -126,-49
2765: -125,-49
- 7332: -110,-47
- 7333: -109,-47
- 7334: -108,-47
- - node:
- color: '#D4D4D496'
- id: QuarterTileOverlayGreyscale180
- decals:
- 7677: -58,-30
- 7678: -58,-31
- 7679: -58,-32
- 7680: -58,-33
- 7681: -58,-29
- node:
color: '#DE3A3A96'
id: QuarterTileOverlayGreyscale180
@@ -5910,7 +5786,10 @@ entities:
1738: -91,-33
1739: -91,-34
1740: -91,-35
+ 1741: -91,-36
1742: -92,-36
+ 1743: -93,-36
+ 1744: -94,-36
1745: -95,-36
1746: -96,-36
1795: -89,-30
@@ -5918,13 +5797,13 @@ entities:
1798: -82,-30
1801: -81,-28
1803: -81,-26
- 7519: -91,-40
- 7520: -91,-39
- 7521: -91,-38
- 7751: -27,4
- 7752: -26,4
- 7753: -25,4
- 7754: -24,4
+ 1862: -87,-40
+ 1863: -88,-40
+ 1864: -89,-40
+ 1865: -90,-40
+ 1866: -91,-40
+ 1867: -92,-40
+ 1868: -93,-40
- node:
color: '#EFB34196'
id: QuarterTileOverlayGreyscale180
@@ -6003,6 +5882,9 @@ entities:
1216: -50,-25
1217: -50,-24
1218: -50,-23
+ 1637: -115,-30
+ 1638: -114,-30
+ 1639: -113,-30
- node:
color: '#A4610696'
id: QuarterTileOverlayGreyscale90
@@ -6012,22 +5894,19 @@ entities:
6510: -94,30
6511: -93,30
6512: -92,30
+ 6521: -96,35
6522: -95,35
6523: -94,35
- 7863: -96,35
- node:
color: '#D4D4D496'
id: QuarterTileOverlayGreyscale90
decals:
- 7562: -96,2
- 7563: -95,2
- 7564: -94,2
+ 1265: -64,-23
- node:
color: '#FFFFFFFF'
id: Remains
decals:
6341: -133,-36
- 7861: -24.903984,-68.040665
- node:
cleanable: True
color: '#FFFFFFFF'
@@ -6038,7 +5917,6 @@ entities:
6224: -120,29
6539: -44.46646,-73.98094
7057: -102.71358,-66.1344
- 7370: -15,17
- node:
color: '#D3BA99FF'
id: SpaceStationSign1
@@ -6079,9 +5957,8 @@ entities:
color: '#FFFFFFFF'
id: StandClear
decals:
- 7816: -112,-46
- 7856: -96,-57
- 7857: -76,-57
+ 1685: -78,-57
+ 7056: -96,-57
- node:
color: '#FFFFFFFF'
id: StandClear
@@ -6097,13 +5974,12 @@ entities:
1460: -59,-21
2021: -120,-14
2740: -39,-72
+ 2792: -105,-37
+ 2805: -104,-22
+ 2806: -104,-1
2972: -35,-62
2973: -35,-69
5975: -26,-23
- 7364: -96,-22
- 7524: -92,-37
- 7769: -115,-49
- 7770: -115,-43
- node:
angle: 1.5707963267948966 rad
color: '#FFFFFFFF'
@@ -6166,8 +6042,8 @@ entities:
607: -33,-34
670: -23,-33
676: -18,-33
+ 761: -22,-41
762: -22,-37
- 7838: -22,-41
- node:
color: '#D381C996'
id: ThreeQuarterTileOverlayGreyscale180
@@ -6222,7 +6098,7 @@ entities:
601: -33,-28
679: -18,-30
760: -22,-39
- 7837: -22,-35
+ 765: -22,-35
- node:
color: '#D381C996'
id: ThreeQuarterTileOverlayGreyscale90
@@ -6272,12 +6148,16 @@ entities:
2581: -123,-39
2654: -130,-38
6679: -119,-68
- 7790: -112,-6
- node:
color: '#FFFFFFFF'
id: WarnCornerSmallGreyscaleNE
decals:
891: -46,-36
+ - node:
+ color: '#9FED5896'
+ id: WarnCornerSmallGreyscaleNW
+ decals:
+ 1656: -112,-33
- node:
color: '#FFFFFFFF'
id: WarnCornerSmallGreyscaleNW
@@ -6311,8 +6191,6 @@ entities:
5992: -33,-7
6351: -150,-43
6735: -111,12
- 7532: -116,-33
- 7795: -110,-4
- node:
color: '#FFFFFFFF'
id: WarnCornerSmallNW
@@ -6333,7 +6211,6 @@ entities:
2959: -33,-70
2965: -33,-63
6350: -146,-43
- 7531: -114,-33
- node:
color: '#FFFFFFFF'
id: WarnCornerSmallSE
@@ -6352,7 +6229,6 @@ entities:
2967: -37,-61
5993: -33,-5
6348: -150,-49
- 7533: -116,-31
- node:
color: '#FFFFFFFF'
id: WarnCornerSmallSW
@@ -6372,7 +6248,6 @@ entities:
2960: -33,-68
2971: -33,-61
6349: -146,-49
- 7534: -114,-31
- node:
color: '#FFFFFFFF'
id: WarnFull
@@ -6423,6 +6298,11 @@ entities:
963: -10,-20
997: -10,-21
1003: -10,-19
+ 1675: -78,-56
+ 1676: -78,-57
+ 1677: -78,-58
+ 1678: -75,-58
+ 1679: -75,-56
1828: -82,-23
1829: -82,-22
2003: -107,-12
@@ -6462,23 +6342,9 @@ entities:
6738: -102,29
6739: -102,24
6740: -102,23
- 7530: -116,-32
- 7794: -110,-3
- 7801: -119,-7
- 7802: -119,-6
- 7803: -119,-4
- 7804: -119,-3
- 7813: -112,-47
- 7814: -112,-46
- 7815: -112,-45
- 7842: -76,-58
- 7843: -76,-57
- 7844: -76,-56
- 7845: -73,-58
- 7846: -73,-56
- 7853: -96,-58
- 7854: -96,-57
- 7855: -96,-56
+ 7053: -96,-58
+ 7054: -96,-57
+ 7055: -96,-56
- node:
color: '#D381C996'
id: WarnLineGreyscaleE
@@ -6498,9 +6364,9 @@ entities:
color: '#9FED5896'
id: WarnLineGreyscaleN
decals:
- 7565: -96,-1
- 7566: -95,-1
- 7567: -94,-1
+ 1653: -115,-33
+ 1654: -114,-33
+ 1655: -113,-33
- node:
color: '#D381C996'
id: WarnLineGreyscaleN
@@ -6535,6 +6401,13 @@ entities:
876: -43,-38
877: -44,-38
878: -45,-38
+ - node:
+ color: '#9FED5896'
+ id: WarnLineGreyscaleW
+ decals:
+ 1650: -112,-32
+ 1651: -112,-31
+ 1652: -112,-30
- node:
color: '#D381C996'
id: WarnLineGreyscaleW
@@ -6635,8 +6508,15 @@ entities:
2661: -127,-38
2741: -39,-68
2748: -39,-74
+ 2793: -106,-37
+ 2794: -105,-37
2795: -104,-37
+ 2802: -105,-22
+ 2803: -104,-22
2804: -103,-22
+ 2807: -105,-1
+ 2808: -104,-1
+ 2809: -103,-1
2956: -36,-68
2957: -35,-68
2958: -34,-68
@@ -6657,26 +6537,6 @@ entities:
6680: -118,-68
6741: -103,21
6742: -99,21
- 7358: -97,-22
- 7359: -96,-22
- 7360: -95,-22
- 7367: -105,-37
- 7368: -104,-22
- 7523: -92,-37
- 7525: -93,-37
- 7526: -91,-37
- 7627: -104,-1
- 7628: -103,-1
- 7757: -116,-49
- 7758: -115,-49
- 7759: -114,-49
- 7760: -116,-43
- 7761: -115,-43
- 7762: -114,-43
- 7783: -108,-6
- 7784: -109,-6
- 7785: -110,-6
- 7786: -111,-6
- node:
color: '#FFFFFFFF'
id: WarnLineS
@@ -6730,6 +6590,11 @@ entities:
1206: -47,-22
1207: -47,-21
1208: -47,-20
+ 1680: -78,-58
+ 1681: -78,-57
+ 1682: -78,-56
+ 1683: -75,-58
+ 1684: -75,-56
1830: -84,-23
1831: -84,-22
2000: -107,-10
@@ -6762,26 +6627,9 @@ entities:
6534: -98,35
6683: -119,-66
6684: -119,-67
- 7529: -114,-32
- 7791: -112,-5
- 7792: -112,-4
- 7793: -112,-3
- 7796: -121,-7
- 7797: -121,-6
- 7798: -121,-5
- 7799: -121,-4
- 7800: -121,-3
- 7810: -112,-45
- 7811: -112,-46
- 7812: -112,-47
- 7839: -76,-58
- 7840: -76,-57
- 7841: -76,-56
- 7847: -73,-58
- 7849: -73,-56
- 7850: -96,-58
- 7851: -96,-57
- 7852: -96,-56
+ 7050: -96,-58
+ 7051: -96,-57
+ 7052: -96,-56
- node:
color: '#FFFFFFFF'
id: WarnLineW
@@ -6866,8 +6714,15 @@ entities:
2622: -134,-46
2623: -135,-46
2749: -39,-76
+ 2796: -106,-37
+ 2797: -105,-37
2798: -104,-37
+ 2799: -105,-22
+ 2800: -104,-22
2801: -103,-22
+ 2810: -105,-1
+ 2811: -104,-1
+ 2812: -103,-1
2953: -36,-70
2954: -34,-70
2955: -35,-70
@@ -6886,27 +6741,6 @@ entities:
6803: -104,15
6804: -103,15
6805: -99,15
- 7361: -97,-22
- 7362: -96,-22
- 7363: -95,-22
- 7366: -105,-37
- 7369: -104,-22
- 7522: -92,-37
- 7527: -91,-37
- 7528: -93,-37
- 7629: -104,-1
- 7630: -103,-1
- 7763: -116,-43
- 7764: -115,-43
- 7765: -114,-43
- 7766: -114,-49
- 7767: -115,-49
- 7768: -116,-49
- 7788: -108,-4
- 7789: -109,-4
- 7807: -121,10
- 7808: -120,10
- 7809: -119,10
- node:
color: '#FFFFFFFF'
id: WoodTrimThinCornerNe
@@ -7318,52 +7152,45 @@ entities:
decals:
2915: -110,20
2920: -112,21
- 7610: -98,-5
+ 7265: -97,0
+ 7276: -92,-62
- node:
color: '#FFFFFFFF'
id: grasssnowa2
decals:
2918: -108,20
- 7597: -92,-64
- 7600: -94,-63
- 7602: -88,-61
- 7607: -96,-10
- node:
color: '#FFFFFFFF'
id: grasssnowa3
decals:
2921: -112,22
+ 7264: -99,-1
- node:
color: '#FFFFFFFF'
id: grasssnowb1
decals:
2919: -108,22
- 7601: -89,-63
- - node:
- color: '#FFFFFFFF'
- id: grasssnowb2
- decals:
- 7603: -88,-62
- 7604: -99,-7
+ 7277: -91,-62
+ 7278: -94,-63
- node:
color: '#FFFFFFFF'
id: grasssnowb3
decals:
- 7609: -92,-8
+ 7273: -95,-62
- node:
color: '#FFFFFFFF'
id: grasssnowc1
decals:
- 7605: -98,-9
+ 7266: -99,-5
+ 7275: -90,-64
- node:
color: '#FFFFFFFF'
id: grasssnowc3
decals:
2916: -111,22
2922: -110,21
- 7599: -91,-63
- 7606: -96,-8
- 7608: -93,-10
+ 7267: -99,-4
+ 7274: -96,-64
- node:
cleanable: True
color: '#B02E26FF'
@@ -7378,11 +7205,6 @@ entities:
id: rune3
decals:
5965: -40,-47
- - node:
- color: '#B02E26FF'
- id: splatter
- decals:
- 7771: -35.00467,-54.105
- type: GridAtmosphere
version: 2
data:
@@ -7434,8 +7256,6 @@ entities:
1: 3
-5,2:
1: 13098
- -4,4:
- 1: 1907
-3,0:
1: 13105
-3,1:
@@ -7593,38 +7413,46 @@ entities:
0: 8946
-36,6:
0: 61986
+ -20,-20:
+ 1: 12288
+ -21,-20:
+ 1: 63271
-20,-19:
- 1: 52960
- -21,-18:
- 1: 57345
- -21,-17:
- 1: 238
+ 1: 39822
-20,-18:
- 1: 32768
+ 1: 36761
+ -20,-17:
+ 1: 34952
-19,-19:
- 1: 4880
+ 1: 65038
+ -19,-18:
+ 1: 28684
-19,-17:
- 1: 28384
+ 1: 40959
+ -20,-16:
+ 1: 34952
+ -19,-20:
+ 1: 11776
-19,-16:
- 1: 30719
- -18,-17:
- 1: 36848
+ 1: 29627
-18,-20:
- 1: 61164
+ 1: 52608
-18,-19:
- 1: 61166
- -18,-18:
- 1: 130
+ 1: 56797
+ -18,-17:
+ 1: 65520
-18,-16:
1: 45235
+ -18,-18:
+ 1: 76
-17,-20:
- 1: 13105
+ 1: 30512
-17,-19:
- 1: 13107
- -17,-17:
- 1: 8184
+ 1: 30583
-17,-18:
- 1: 2
+ 1: 327
+ -17,-17:
+ 1: 24568
-17,-16:
1: 64764
-16,-17:
@@ -7741,17 +7569,17 @@ entities:
-10,-2:
1: 57309
-10,-5:
- 1: 28671
+ 1: 32767
-24,0:
- 1: 1911
+ 1: 7
-24,-1:
- 1: 30464
+ 1: 65535
-25,0:
- 1: 20479
+ 1: 12
-24,1:
1: 62207
-25,1:
- 1: 61695
+ 1: 61694
-24,2:
1: 65535
-25,2:
@@ -7771,7 +7599,7 @@ entities:
-23,4:
1: 65535
-23,0:
- 1: 17476
+ 1: 34952
-22,1:
1: 56575
-22,2:
@@ -7779,21 +7607,20 @@ entities:
-22,3:
1: 65357
-22,0:
- 2: 238
- 1: 3584
+ 2: 3822
-22,4:
1: 65535
-22,-1:
2: 20479
-21,1:
1: 43263
+ -21,0:
+ 1: 36590
-21,2:
0: 8192
1: 8
-21,3:
0: 25122
- -21,0:
- 1: 36044
-21,-1:
1: 34952
2: 819
@@ -7918,23 +7745,23 @@ entities:
-25,-4:
1: 65532
-24,-3:
- 1: 65348
+ 1: 3
-25,-3:
- 1: 51254
+ 1: 62
-24,-2:
- 1: 65535
+ 1: 63232
-25,-2:
- 1: 52462
+ 1: 60416
-25,-1:
- 1: 60928
+ 1: 61182
-24,-5:
1: 11259
-23,-4:
1: 65522
-23,-3:
- 1: 36864
+ 1: 32768
-23,-2:
- 1: 409
+ 1: 136
2: 34816
-23,-1:
2: 2184
@@ -7945,62 +7772,58 @@ entities:
-22,-2:
2: 65280
1: 14
+ -24,-16:
+ 1: 36607
+ -24,-17:
+ 1: 65534
-24,-15:
- 1: 65280
+ 1: 65416
-25,-15:
- 1: 65296
+ 1: 65280
-24,-14:
1: 57359
-25,-14:
1: 63
-24,-13:
1: 11186
- -24,-16:
- 1: 2252
-24,-12:
1: 43690
- -24,-17:
- 1: 52424
-23,-16:
- 1: 65535
+ 1: 887
-23,-15:
- 1: 65348
+ 1: 65280
-23,-14:
1: 61471
-23,-13:
1: 39856
-23,-17:
- 1: 65535
+ 1: 30579
-23,-12:
1: 65535
- -22,-16:
- 1: 4403
-22,-15:
- 1: 65280
+ 1: 65480
-22,-14:
1: 61455
-22,-13:
1: 65520
- -22,-17:
- 1: 13105
-22,-12:
1: 65535
+ -22,-16:
+ 1: 32768
+ -21,-16:
+ 1: 4096
-21,-15:
- 1: 65280
+ 1: 65395
-21,-14:
1: 61455
-21,-13:
1: 65520
-21,-12:
1: 65535
- -21,-16:
- 1: 1024
-20,-15:
- 1: 65280
+ 1: 65416
-20,-14:
- 1: 61455
- -20,-13:
- 1: 48056
+ 1: 47247
-12,-8:
1: 15
2: 30464
@@ -8214,11 +8037,11 @@ entities:
-14,-14:
1: 65466
-14,-17:
- 1: 65392
+ 1: 65520
-13,-17:
- 1: 62208
+ 1: 65432
-20,-9:
- 1: 65030
+ 1: 61482
-20,-8:
1: 3822
-21,-8:
@@ -8274,7 +8097,7 @@ entities:
-24,-8:
1: 65535
-24,-9:
- 1: 65523
+ 1: 65535
-25,-8:
1: 47295
-24,-7:
@@ -8296,7 +8119,7 @@ entities:
-23,-5:
1: 2995
-23,-9:
- 1: 49081
+ 1: 49083
-22,-8:
1: 65291
-22,-7:
@@ -8309,58 +8132,60 @@ entities:
1: 48059
-21,-9:
1: 65535
+ -20,-13:
+ 1: 43690
-20,-12:
- 1: 48059
+ 1: 43690
-19,-15:
- 1: 32614
+ 1: 57109
-19,-14:
- 1: 26223
+ 1: 21791
-19,-13:
- 1: 26214
+ 1: 65521
-19,-12:
- 1: 26214
+ 1: 12561
-18,-15:
1: 65443
-18,-14:
1: 48047
-18,-12:
- 1: 61166
+ 1: 65534
-18,-13:
1: 51200
-25,-12:
1: 65535
-24,-11:
- 1: 39810
+ 1: 7042
-25,-11:
1: 65295
-24,-10:
- 1: 40413
+ 1: 7645
-25,-10:
1: 8191
-25,-9:
1: 47291
-23,-11:
- 1: 48049
+ 1: 7089
-23,-10:
- 1: 16307
+ 1: 8191
-22,-11:
- 1: 48049
+ 1: 39857
-22,-10:
- 1: 4081
+ 1: 3067
-21,-11:
- 1: 48049
+ 1: 57330
-21,-10:
- 1: 4081
+ 1: 4093
-20,-11:
- 1: 48057
+ 1: 43690
-20,-10:
- 1: 19929
+ 1: 43690
-19,-11:
- 1: 26214
+ 1: 39219
-19,-10:
- 1: 9958
+ 1: 4093
-18,-11:
- 1: 65262
+ 1: 65535
-18,-10:
1: 61439
-8,1:
@@ -8553,7 +8378,7 @@ entities:
-28,-13:
1: 61152
-28,-12:
- 1: 65012
+ 1: 65268
-28,-17:
0: 63316
-27,-16:
@@ -8570,7 +8395,7 @@ entities:
-27,-12:
1: 65020
-26,-15:
- 1: 65521
+ 1: 65329
-26,-14:
1: 14335
-26,-13:
@@ -8578,7 +8403,7 @@ entities:
-26,-12:
1: 49083
-25,-16:
- 1: 32
+ 1: 256
-25,-13:
1: 32
-29,-12:
@@ -8592,29 +8417,27 @@ entities:
-28,-9:
1: 30464
-29,-9:
- 1: 56320
+ 1: 60928
-28,-8:
1: 10111
- -28,-10:
- 1: 16384
- -27,-10:
- 1: 36556
-27,-9:
- 1: 61132
+ 1: 65262
+ -27,-10:
+ 1: 52940
-27,-8:
- 1: 61167
+ 1: 61183
-27,-11:
1: 52428
-26,-11:
1: 64315
-26,-10:
- 1: 7099
+ 1: 6555
-26,-9:
- 1: 29627
+ 1: 45977
-26,-8:
- 1: 30583
+ 1: 46011
-29,-8:
- 1: 3293
+ 1: 3822
-28,-7:
1: 20735
-29,-7:
@@ -8634,15 +8457,15 @@ entities:
-27,-5:
1: 56776
-27,-6:
- 1: 32974
+ 1: 35022
-27,-4:
1: 56541
-26,-7:
- 1: 30583
+ 1: 46011
-26,-6:
- 1: 29559
+ 1: 13243
-26,-5:
- 1: 30583
+ 1: 29491
-26,-4:
1: 65535
-29,-4:
@@ -8664,17 +8487,17 @@ entities:
-27,-2:
1: 56728
-27,-1:
- 1: 6365
+ 1: 39133
-27,0:
1: 56797
-26,-3:
- 1: 32755
+ 1: 65523
-26,-2:
- 1: 63351
+ 1: 13175
-26,-1:
- 1: 14199
+ 1: 13299
-26,0:
- 1: 30711
+ 1: 29491
-28,0:
3: 21840
4: 8736
@@ -8772,8 +8595,7 @@ entities:
-32,-4:
1: 61695
-31,-7:
- 1: 41215
- 5: 4096
+ 1: 45311
-31,-6:
1: 48123
-31,-5:
@@ -8785,7 +8607,7 @@ entities:
-31,-4:
1: 63931
-30,-8:
- 1: 4505
+ 1: 13073
-30,-7:
1: 45567
-30,-6:
@@ -8793,7 +8615,7 @@ entities:
-30,-5:
1: 64435
-30,-9:
- 1: 37137
+ 1: 4369
-30,-4:
1: 29627
-32,-3:
@@ -8842,12 +8664,12 @@ entities:
3: 49344
1: 4369
-32,2:
- 6: 16
- 7: 4096
+ 5: 16
+ 6: 4096
0: 17476
-33,2:
- 6: 192
- 7: 49152
+ 5: 192
+ 6: 49152
1: 4369
-32,3:
1: 29712
@@ -8889,8 +8711,7 @@ entities:
-25,7:
1: 20206
-24,8:
- 8: 1
- 1: 65534
+ 1: 65535
-23,5:
1: 65535
-23,6:
@@ -8986,18 +8807,16 @@ entities:
-28,-19:
0: 17487
-28,-18:
- 1: 61440
- 0: 1092
+ 0: 62532
-29,-18:
- 1: 61457
- 0: 1160
+ 0: 50312
+ 1: 12305
-29,-17:
0: 61836
-27,-19:
0: 34959
-27,-18:
- 1: 61440
- 0: 2184
+ 0: 63624
-26,-19:
0: 15
-26,-17:
@@ -9044,12 +8863,12 @@ entities:
1: 58368
-23,-18:
1: 4
- -22,-19:
- 1: 34944
- -22,-18:
- 1: 8
-21,-19:
- 1: 13056
+ 1: 26487
+ -21,-17:
+ 1: 16
+ -21,-21:
+ 1: 30544
-36,0:
0: 48123
-36,-1:
@@ -9157,7 +8976,7 @@ entities:
-34,-9:
1: 58027
-34,-8:
- 1: 34816
+ 1: 32768
-33,-9:
1: 65038
-35,6:
@@ -9337,6 +9156,8 @@ entities:
1: 3
-5,6:
0: 12
+ -4,4:
+ 1: 16
-4,6:
0: 15
-3,6:
@@ -9407,7 +9228,13 @@ entities:
0,-2:
0: 17472
-16,-19:
- 1: 1024
+ 1: 51200
+ -16,-18:
+ 1: 36044
+ -15,-19:
+ 1: 65280
+ -15,-18:
+ 1: 65535
-15,-17:
1: 4080
-15,-20:
@@ -9415,22 +9242,16 @@ entities:
-15,-21:
1: 57344
0: 3584
- -15,-18:
- 1: 3276
- -15,-19:
- 1: 34944
-14,-20:
1: 272
-14,-19:
- 1: 65520
+ 1: 30464
-14,-18:
- 1: 4095
+ 1: 65535
-14,-21:
0: 30464
- -13,-19:
- 1: 65392
-13,-18:
- 1: 2047
+ 1: 34959
-40,1:
0: 17604
-40,2:
@@ -9480,7 +9301,7 @@ entities:
-10,-19:
1: 30583
-10,-18:
- 1: 2567
+ 1: 10759
-9,-20:
1: 17472
0: 4
@@ -9723,21 +9544,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: 293.15
moles:
@@ -9768,44 +9574,22 @@ entities:
- 0
- 0
- 0
- - volume: 2500
- temperature: 293.14975
- moles:
- - 21.824879
- - 82.10312
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
chunkSize: 4
- type: GasTileOverlay
- type: RadiationGridResistance
- type: BecomesStation
id: Plasma
-- proto: AccordionInstrument
- entities:
- - uid: 25884
- components:
- - type: Transform
- pos: -25.511,-70.3345
- parent: 2
- proto: AcousticGuitarInstrument
entities:
- - uid: 6489
+ - uid: 6841
components:
- type: Transform
- pos: -89.45548,-46.474792
+ pos: -89.47948,-23.456642
parent: 2
- - uid: 6841
+ - uid: 8987
components:
- type: Transform
- pos: -89.47948,-23.456642
+ pos: -89.53047,-46.275448
parent: 2
- uid: 24353
components:
@@ -9872,6 +9656,7 @@ entities:
- 972
- 24697
- 16816
+ - 16201
- uid: 461
components:
- type: MetaData
@@ -10166,10 +9951,10 @@ entities:
- 12639
- 12624
- 12616
- - 13762
- - 13755
- - 14689
- - 13863
+ - 12618
+ - 12615
+ - 12617
+ - 12614
- 15360
- uid: 8954
components:
@@ -10252,6 +10037,19 @@ entities:
- 14353
- 14356
- 1782
+ - uid: 9273
+ components:
+ - type: MetaData
+ name: Southwest Hallway Air Alarm
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -77.5,-54.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 18203
+ - 24719
+ - 788
- uid: 9346
components:
- type: MetaData
@@ -10447,8 +10245,8 @@ entities:
parent: 2
- type: DeviceList
devices:
- - 17878
- - 17791
+ - 14854
+ - 14853
- 23867
- 15365
- 14945
@@ -10475,23 +10273,6 @@ entities:
- 7046
- 15709
- 15855
- - 21495
- - 18200
- - 1658
- - 19471
- - uid: 14263
- components:
- - type: MetaData
- name: Tech Storage Air Alarm
- - type: Transform
- pos: -111.5,-28.5
- parent: 2
- - type: DeviceList
- devices:
- - 20776
- - 14272
- - 4875
- - 4280
- uid: 14861
components:
- type: MetaData
@@ -10764,7 +10545,7 @@ entities:
- 17855
- 17857
- 17858
- - 17883
+ - 17853
- uid: 18700
components:
- type: MetaData
@@ -10776,6 +10557,31 @@ entities:
- type: DeviceList
devices:
- 18718
+ - uid: 18701
+ components:
+ - type: MetaData
+ name: Permabrig Air Alarm
+ - type: Transform
+ pos: -89.5,-43.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 18717
+ - 18716
+ - 18715
+ - 18714
+ - 18166
+ - uid: 18702
+ components:
+ - type: MetaData
+ name: Permabrig Hallway Air Alarm
+ - type: Transform
+ pos: -89.5,-36.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 18713
+ - 18712
- uid: 18703
components:
- type: MetaData
@@ -10821,6 +10627,21 @@ entities:
- 17994
- 18707
- 17241
+ - uid: 18723
+ components:
+ - type: MetaData
+ name: Newsroom Air Alarm
+ - type: Transform
+ pos: -111.5,-28.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 18725
+ - 18201
+ - 18200
+ - 18724
+ - 16206
+ - 17865
- uid: 19277
components:
- type: MetaData
@@ -10932,11 +10753,6 @@ entities:
- type: DeviceList
devices:
- 19298
- - uid: 19570
- components:
- - type: Transform
- pos: -96.5,3.5
- parent: 2
- uid: 19798
components:
- type: MetaData
@@ -10964,8 +10780,6 @@ entities:
- type: DeviceList
devices:
- 19804
- - 10170
- - 18879
- uid: 19806
components:
- type: MetaData
@@ -11064,10 +10878,6 @@ entities:
- 21467
- 21463
- 12746
- - 18621
- - 17492
- - 431
- - 507
- uid: 20318
components:
- type: MetaData
@@ -11108,50 +10918,6 @@ entities:
- 14633
- 7825
- 20079
- - uid: 20503
- components:
- - type: MetaData
- name: Permabrig Air Alarm
- - type: Transform
- pos: -85.5,-43.5
- parent: 2
- - type: DeviceList
- devices:
- - 17883
- - 9250
- - 15021
- - 24743
- - 6501
- - 6531
- - 20418
- - 7843
- - 20808
- - 18166
- - 18717
- - 18711
- - 6502
- - 18613
- - 6512
- - 20505
- - 6514
- - 20828
- - 16400
- - 20826
- - uid: 20831
- components:
- - type: MetaData
- name: Permabrig Hallway Air Alarm
- - type: Transform
- pos: -87.5,-36.5
- parent: 2
- - type: DeviceList
- devices:
- - 21006
- - 20434
- - 20507
- - 16391
- - 20414
- - 766
- uid: 20948
components:
- type: MetaData
@@ -11225,19 +10991,6 @@ entities:
devices:
- 19571
- 19790
- - uid: 23457
- components:
- - type: MetaData
- name: South Hallway Air Alarm
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -75.5,-54.5
- parent: 2
- - type: DeviceList
- devices:
- - 788
- - 23519
- - 20779
- uid: 23681
components:
- type: MetaData
@@ -11458,11 +11211,6 @@ entities:
- type: Transform
pos: -33.5,-63.5
parent: 2
- - uid: 3946
- components:
- - type: Transform
- pos: -70.5,-62.5
- parent: 2
- uid: 5709
components:
- type: Transform
@@ -11513,6 +11261,16 @@ entities:
- type: Transform
pos: -115.5,14.5
parent: 2
+ - uid: 17126
+ components:
+ - type: Transform
+ pos: -71.5,-62.5
+ parent: 2
+ - uid: 17127
+ components:
+ - type: Transform
+ pos: -70.5,-62.5
+ parent: 2
- uid: 20035
components:
- type: Transform
@@ -11538,6 +11296,16 @@ entities:
- type: Transform
pos: -20.5,-15.5
parent: 2
+ - uid: 21003
+ components:
+ - type: Transform
+ pos: -94.5,-11.5
+ parent: 2
+ - uid: 21422
+ components:
+ - type: Transform
+ pos: -108.5,-40.5
+ parent: 2
- uid: 21739
components:
- type: Transform
@@ -11728,12 +11496,6 @@ entities:
parent: 2
- proto: AirlockBrigGlassLocked
entities:
- - uid: 385
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -94.5,-20.5
- parent: 2
- uid: 1891
components:
- type: Transform
@@ -11754,11 +11516,24 @@ entities:
- DoorStatus: Close
386:
- DoorStatus: Close
- - uid: 9038
+ - uid: 1946
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -91.5,-35.5
+ rot: 3.141592653589793 rad
+ pos: -94.5,-20.5
+ parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 4
+ - type: DeviceLinkSource
+ linkedPorts:
+ 386:
+ - DoorStatus: Close
+ 387:
+ - DoorStatus: Close
+ - uid: 6887
+ components:
+ - type: Transform
+ pos: -91.5,-36.5
parent: 2
- proto: AirlockCaptainLocked
entities:
@@ -11861,6 +11636,11 @@ entities:
parent: 2
- proto: AirlockCommand
entities:
+ - uid: 7468
+ components:
+ - type: Transform
+ pos: -38.5,-68.5
+ parent: 2
- uid: 16630
components:
- type: Transform
@@ -12146,12 +11926,6 @@ entities:
- type: Transform
pos: -27.5,-56.5
parent: 2
- - uid: 368
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -89.5,3.5
- parent: 2
- uid: 658
components:
- type: Transform
@@ -12167,6 +11941,11 @@ entities:
- type: Transform
pos: -135.5,-10.5
parent: 2
+ - uid: 2381
+ components:
+ - type: Transform
+ pos: -88.5,3.5
+ parent: 2
- uid: 4394
components:
- type: Transform
@@ -12203,12 +11982,6 @@ entities:
- type: Transform
pos: -135.5,0.5
parent: 2
- - uid: 18611
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -107.5,-31.5
- parent: 2
- uid: 21305
components:
- type: Transform
@@ -12227,6 +12000,13 @@ entities:
linkedPorts:
7384:
- DoorStatus: DoorBolt
+ - uid: 17236
+ components:
+ - type: Transform
+ pos: -82.5,-78.5
+ parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 1
- uid: 18032
components:
- type: Transform
@@ -12255,11 +12035,7 @@ entities:
pos: -36.5,19.5
parent: 2
- type: DeviceLinkSink
- invokeCounter: 2
- - type: DeviceLinkSource
- linkedPorts:
- 8648:
- - DoorStatus: DoorBolt
+ invokeCounter: 1
- uid: 332
components:
- type: Transform
@@ -12267,11 +12043,7 @@ entities:
pos: -36.5,12.5
parent: 2
- type: DeviceLinkSink
- invokeCounter: 2
- - type: DeviceLinkSource
- linkedPorts:
- 8647:
- - DoorStatus: DoorBolt
+ invokeCounter: 1
- uid: 1771
components:
- type: Transform
@@ -12284,28 +12056,44 @@ entities:
linkedPorts:
23005:
- DoorStatus: DoorBolt
+ - uid: 7659
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -106.5,-44.5
+ parent: 2
+ - uid: 7660
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -106.5,-46.5
+ parent: 2
+ - uid: 7661
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -111.5,-44.5
+ parent: 2
+ - uid: 7662
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -111.5,-46.5
+ parent: 2
- uid: 8300
components:
- type: Transform
pos: -1.5,-16.5
parent: 2
- type: DeviceLinkSink
- invokeCounter: 2
- - type: DeviceLinkSource
- linkedPorts:
- 8719:
- - DoorStatus: DoorBolt
+ invokeCounter: 1
- uid: 8301
components:
- type: Transform
pos: -1.5,-10.5
parent: 2
- type: DeviceLinkSink
- invokeCounter: 2
- - type: DeviceLinkSource
- linkedPorts:
- 8721:
- - DoorStatus: DoorBolt
+ invokeCounter: 1
- uid: 8713
components:
- type: Transform
@@ -12313,13 +12101,7 @@ entities:
pos: -6.5,-36.5
parent: 2
- type: DeviceLinkSink
- invokeCounter: 2
- - type: DeviceLinkSource
- linkedPorts:
- 8742:
- - DoorStatus: DoorBolt
- 8741:
- - DoorStatus: DoorBolt
+ invokeCounter: 1
- uid: 9280
components:
- type: Transform
@@ -12327,13 +12109,7 @@ entities:
pos: -29.5,22.5
parent: 2
- type: DeviceLinkSink
- invokeCounter: 2
- - type: DeviceLinkSource
- linkedPorts:
- 8653:
- - DoorStatus: DoorBolt
- 8652:
- - DoorStatus: DoorBolt
+ invokeCounter: 1
- uid: 10081
components:
- type: Transform
@@ -12389,11 +12165,7 @@ entities:
pos: -1.5,-18.5
parent: 2
- type: DeviceLinkSink
- invokeCounter: 2
- - type: DeviceLinkSource
- linkedPorts:
- 8718:
- - DoorStatus: DoorBolt
+ invokeCounter: 1
- uid: 10565
components:
- type: Transform
@@ -12401,11 +12173,7 @@ entities:
pos: -83.5,18.5
parent: 2
- type: DeviceLinkSink
- invokeCounter: 2
- - type: DeviceLinkSource
- linkedPorts:
- 10563:
- - DoorStatus: DoorBolt
+ invokeCounter: 1
- uid: 10566
components:
- type: Transform
@@ -12413,11 +12181,7 @@ entities:
pos: -83.5,20.5
parent: 2
- type: DeviceLinkSink
- invokeCounter: 2
- - type: DeviceLinkSource
- linkedPorts:
- 10564:
- - DoorStatus: DoorBolt
+ invokeCounter: 1
- proto: AirlockExternalGlassCommandLocked
entities:
- uid: 1880
@@ -12426,11 +12190,7 @@ entities:
pos: -1.5,-8.5
parent: 2
- type: DeviceLinkSink
- invokeCounter: 2
- - type: DeviceLinkSource
- linkedPorts:
- 8722:
- - DoorStatus: DoorBolt
+ invokeCounter: 1
- uid: 24574
components:
- type: Transform
@@ -12662,26 +12422,16 @@ entities:
rot: -1.5707963267948966 rad
pos: -39.5,12.5
parent: 2
- - type: DeviceLinkSource
- linkedPorts:
- 26239:
- - DoorStatus: InputA
- - DockStatus: InputB
- type: DeviceLinkSink
- invokeCounter: 2
+ invokeCounter: 1
- uid: 8648
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -39.5,19.5
parent: 2
- - type: DeviceLinkSource
- linkedPorts:
- 16903:
- - DoorStatus: InputA
- - DockStatus: InputB
- type: DeviceLinkSink
- invokeCounter: 2
+ invokeCounter: 1
- proto: AirlockExternalGlassShuttleEmergencyLocked
entities:
- uid: 8718
@@ -12690,52 +12440,32 @@ entities:
rot: 1.5707963267948966 rad
pos: 2.5,-18.5
parent: 2
- - type: DeviceLinkSource
- linkedPorts:
- 8950:
- - DoorStatus: InputA
- - DockStatus: InputB
- type: DeviceLinkSink
- invokeCounter: 2
+ invokeCounter: 1
- uid: 8719
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 2.5,-16.5
parent: 2
- - type: DeviceLinkSource
- linkedPorts:
- 13489:
- - DoorStatus: InputA
- - DockStatus: InputB
- type: DeviceLinkSink
- invokeCounter: 2
+ invokeCounter: 1
- uid: 8721
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 2.5,-10.5
parent: 2
- - type: DeviceLinkSource
- linkedPorts:
- 26238:
- - DoorStatus: InputA
- - DockStatus: InputB
- type: DeviceLinkSink
- invokeCounter: 2
+ invokeCounter: 1
- uid: 8722
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 2.5,-8.5
parent: 2
- - type: DeviceLinkSource
- linkedPorts:
- 26237:
- - DoorStatus: InputA
- - DockStatus: InputB
- type: DeviceLinkSink
- invokeCounter: 2
+ invokeCounter: 1
- proto: AirlockExternalGlassShuttleEscape
entities:
- uid: 5882
@@ -12782,6 +12512,20 @@ entities:
- DockStatus: InputB
- type: DeviceLinkSink
invokeCounter: 1
+ - uid: 16318
+ components:
+ - type: Transform
+ pos: -81.5,-82.5
+ parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - uid: 16324
+ components:
+ - type: Transform
+ pos: -83.5,-82.5
+ parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 1
- proto: AirlockExternalLocked
entities:
- uid: 10184
@@ -12843,6 +12587,8 @@ entities:
invokeCounter: 2
- type: DeviceLinkSource
linkedPorts:
+ 1946:
+ - DoorStatus: Close
1936:
- DoorStatus: Close
- uid: 387
@@ -12857,21 +12603,8 @@ entities:
linkedPorts:
1936:
- DoorStatus: Close
- - uid: 460
- components:
- - type: Transform
- pos: -106.5,-44.5
- parent: 2
- - uid: 529
- components:
- - type: Transform
- pos: -106.5,-46.5
- parent: 2
- - uid: 808
- components:
- - type: Transform
- pos: -102.5,-0.5
- parent: 2
+ 1946:
+ - DoorStatus: Close
- uid: 3598
components:
- type: Transform
@@ -12909,51 +12642,45 @@ entities:
- type: Transform
pos: -23.5,-11.5
parent: 2
- - uid: 5609
+ - uid: 7020
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -83.5,-43.5
+ pos: -85.5,-38.5
parent: 2
- - type: DeviceLinkSink
- invokeCounter: 1
- - uid: 6487
+ - uid: 8903
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -87.5,-43.5
+ pos: -82.5,-43.5
parent: 2
- - type: DeviceLinkSink
- invokeCounter: 1
- - uid: 6543
+ - uid: 11356
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -91.5,-43.5
+ pos: -22.5,12.5
parent: 2
- - uid: 6545
+ - uid: 13565
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -79.5,-43.5
+ pos: -87.5,-43.5
parent: 2
- type: DeviceLinkSink
invokeCounter: 1
- - uid: 7122
- components:
- - type: Transform
- pos: -95.5,-56.5
- parent: 2
- - uid: 11356
- components:
- - type: Transform
- pos: -22.5,12.5
- parent: 2
- - uid: 13657
+ - type: DeviceLinkSource
+ linkedPorts:
+ 6732:
+ - DoorStatus: DoorBolt
+ - uid: 14491
components:
- type: Transform
- pos: -95.5,-55.5
+ rot: 1.5707963267948966 rad
+ pos: -91.5,-43.5
parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 6728:
+ - DoorStatus: DoorBolt
- uid: 14567
components:
- type: Transform
@@ -12977,39 +12704,23 @@ entities:
rot: 3.141592653589793 rad
pos: -60.5,-17.5
parent: 2
- - uid: 16008
- components:
- - type: Transform
- pos: -95.5,-57.5
- parent: 2
- - uid: 16517
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -62.5,-17.5
- parent: 2
- - uid: 16670
+ - uid: 16409
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -104.5,-36.5
- parent: 2
- - uid: 16692
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -110.5,-44.5
+ pos: -74.5,-55.5
parent: 2
- - uid: 17828
+ - uid: 16410
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -103.5,-36.5
+ pos: -74.5,-57.5
parent: 2
- - uid: 18277
+ - uid: 16517
components:
- type: Transform
- pos: -72.5,-55.5
+ rot: 3.141592653589793 rad
+ pos: -62.5,-17.5
parent: 2
- uid: 18729
components:
@@ -13089,34 +12800,59 @@ entities:
rot: 1.5707963267948966 rad
pos: -102.5,-21.5
parent: 2
+ - uid: 18742
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -104.5,-21.5
+ parent: 2
- uid: 18743
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -103.5,-21.5
parent: 2
- - uid: 18745
+ - uid: 18744
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -103.5,-0.5
+ pos: -102.5,-0.5
parent: 2
- - uid: 21669
+ - uid: 18745
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -110.5,-46.5
+ pos: -103.5,-0.5
parent: 2
- - uid: 22804
+ - uid: 18746
components:
- type: Transform
- pos: -72.5,-57.5
+ rot: 1.5707963267948966 rad
+ pos: -104.5,-0.5
parent: 2
- uid: 23631
components:
- type: Transform
pos: -66.5,-19.5
parent: 2
+ - uid: 25882
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -95.5,-55.5
+ parent: 2
+ - uid: 25883
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -95.5,-56.5
+ parent: 2
+ - uid: 25884
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -95.5,-57.5
+ parent: 2
- proto: AirlockGlassShuttle
entities:
- uid: 8652
@@ -13125,78 +12861,48 @@ entities:
rot: 3.141592653589793 rad
pos: -30.5,26.5
parent: 2
- - type: DeviceLinkSource
- linkedPorts:
- 19502:
- - DoorStatus: InputA
- - DockStatus: InputB
- type: DeviceLinkSink
- invokeCounter: 2
+ invokeCounter: 1
- uid: 8653
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -28.5,26.5
parent: 2
- - type: DeviceLinkSource
- linkedPorts:
- 19503:
- - DoorStatus: InputA
- - DockStatus: InputB
- type: DeviceLinkSink
- invokeCounter: 2
+ invokeCounter: 1
- uid: 8741
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -3.5,-37.5
parent: 2
- - type: DeviceLinkSource
- linkedPorts:
- 22372:
- - DoorStatus: InputA
- - DockStatus: InputB
- type: DeviceLinkSink
- invokeCounter: 2
+ invokeCounter: 1
- uid: 8742
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -3.5,-35.5
parent: 2
- - type: DeviceLinkSource
- linkedPorts:
- 22371:
- - DoorStatus: InputA
- - DockStatus: InputB
- type: DeviceLinkSink
- invokeCounter: 2
+ invokeCounter: 1
- uid: 10563
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -81.5,18.5
parent: 2
- - type: DeviceLinkSource
- linkedPorts:
- 8961:
- - DoorStatus: InputA
- - DockStatus: InputB
- type: DeviceLinkSink
- invokeCounter: 2
+ invokeCounter: 1
- uid: 10564
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -81.5,20.5
parent: 2
- - type: DeviceLinkSource
- linkedPorts:
- 12421:
- - DoorStatus: InputA
- - DockStatus: InputB
- type: DeviceLinkSink
- invokeCounter: 2
+ invokeCounter: 1
- uid: 24212
components:
- type: Transform
@@ -13205,15 +12911,29 @@ entities:
parent: 2
- proto: AirlockHatchMaintenance
entities:
- - uid: 9597
+ - uid: 3340
components:
- type: Transform
- pos: -93.5,-10.5
+ rot: 1.5707963267948966 rad
+ pos: -101.5,-2.5
parent: 2
- - uid: 16245
+ - uid: 5750
components:
- type: Transform
- pos: -89.5,-59.5
+ rot: 1.5707963267948966 rad
+ pos: -99.5,-2.5
+ parent: 2
+ - uid: 6895
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -92.5,-58.5
+ parent: 2
+ - uid: 9831
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -92.5,-60.5
parent: 2
- proto: AirlockHeadOfPersonnelLocked
entities:
@@ -13354,12 +13074,6 @@ entities:
- type: Transform
pos: -81.5,-8.5
parent: 2
- - uid: 16005
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -110.5,-28.5
- parent: 2
- proto: AirlockMaintHOPLocked
entities:
- uid: 2912
@@ -13396,6 +13110,17 @@ entities:
parent: 2
- proto: AirlockMaintLocked
entities:
+ - uid: 139
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -75.5,-59.5
+ parent: 2
+ - uid: 766
+ components:
+ - type: Transform
+ pos: -76.5,-36.5
+ parent: 2
- uid: 1581
components:
- type: Transform
@@ -13466,18 +13191,6 @@ entities:
- type: Transform
pos: -56.5,-41.5
parent: 2
- - uid: 4257
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,-62.5
- parent: 2
- - uid: 4260
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -55.5,-62.5
- parent: 2
- uid: 4391
components:
- type: Transform
@@ -13545,11 +13258,11 @@ entities:
- type: Transform
pos: -15.5,3.5
parent: 2
- - uid: 9317
+ - uid: 9391
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -73.5,-64.5
+ pos: -74.5,-38.5
parent: 2
- uid: 9534
components:
@@ -13636,12 +13349,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -103.5,22.5
parent: 2
- - uid: 11168
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -74.5,-64.5
- parent: 2
- uid: 11557
components:
- type: Transform
@@ -13677,22 +13384,25 @@ entities:
- type: Transform
pos: -15.5,-44.5
parent: 2
- - uid: 13760
+ - uid: 12924
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -66.5,-66.5
+ pos: -65.5,-64.5
parent: 2
- uid: 14799
components:
- type: Transform
pos: -54.5,-55.5
parent: 2
- - uid: 16433
+ - uid: 16396
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -66.5,-65.5
+ pos: -76.5,-53.5
+ parent: 2
+ - uid: 16453
+ components:
+ - type: Transform
+ pos: -74.5,-37.5
parent: 2
- uid: 16474
components:
@@ -13739,12 +13449,6 @@ entities:
- type: Transform
pos: -15.5,-63.5
parent: 2
- - uid: 18951
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -99.5,4.5
- parent: 2
- uid: 19338
components:
- type: Transform
@@ -13791,35 +13495,6 @@ entities:
- type: Transform
pos: -107.5,-57.5
parent: 2
- - uid: 20530
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -73.5,-53.5
- parent: 2
- - uid: 20537
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -74.5,-53.5
- parent: 2
- - uid: 20539
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -73.5,-59.5
- parent: 2
- - uid: 20545
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -74.5,-59.5
- parent: 2
- - uid: 20770
- components:
- - type: Transform
- pos: -72.5,-38.5
- parent: 2
- uid: 21000
components:
- type: Transform
@@ -13848,16 +13523,16 @@ entities:
rot: -1.5707963267948966 rad
pos: -109.5,23.5
parent: 2
- - uid: 23205
+ - uid: 22363
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,0.5
+ pos: -16.5,-25.5
parent: 2
- - uid: 23220
+ - uid: 23205
components:
- type: Transform
- pos: -74.5,-36.5
+ rot: 3.141592653589793 rad
+ pos: -23.5,0.5
parent: 2
- uid: 23362
components:
@@ -13898,6 +13573,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -42.5,-55.5
parent: 2
+ - uid: 24157
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -55.5,-62.5
+ parent: 2
- uid: 24472
components:
- type: Transform
@@ -13910,6 +13591,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -42.5,-10.5
parent: 2
+ - uid: 24480
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -76.5,-59.5
+ parent: 2
- uid: 24583
components:
- type: Transform
@@ -13948,6 +13635,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -14.5,-10.5
parent: 2
+ - uid: 24616
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -75.5,-53.5
+ parent: 2
- uid: 24619
components:
- type: Transform
@@ -13959,6 +13652,12 @@ entities:
- type: Transform
pos: -125.5,23.5
parent: 2
+ - uid: 24624
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -54.5,-62.5
+ parent: 2
- uid: 24625
components:
- type: Transform
@@ -13989,16 +13688,6 @@ entities:
parent: 2
- proto: AirlockMaintMedLocked
entities:
- - uid: 907
- components:
- - type: Transform
- pos: -16.5,-25.5
- parent: 2
- - uid: 919
- components:
- - type: Transform
- pos: -16.5,-20.5
- parent: 2
- uid: 1118
components:
- type: Transform
@@ -14054,14 +13743,17 @@ entities:
- DoorStatus: Close
- proto: AirlockMaintServiceLocked
entities:
- - uid: 1024
+ - uid: 11001
components:
- type: Transform
- pos: -97.5,3.5
+ pos: -16.5,-20.5
parent: 2
-- proto: AirlockMaintTheatreLocked
- entities:
- - uid: 925
+ - uid: 15344
+ components:
+ - type: Transform
+ pos: -110.5,-28.5
+ parent: 2
+ - uid: 17861
components:
- type: Transform
rot: 1.5707963267948966 rad
@@ -14069,11 +13761,36 @@ entities:
parent: 2
- proto: AirlockMedical
entities:
+ - uid: 1119
+ components:
+ - type: Transform
+ pos: -18.5,-33.5
+ parent: 2
- uid: 4040
components:
- type: Transform
pos: -27.5,-37.5
parent: 2
+ - uid: 4106
+ components:
+ - type: Transform
+ pos: -20.5,-44.5
+ parent: 2
+ - uid: 4107
+ components:
+ - type: Transform
+ pos: -18.5,-41.5
+ parent: 2
+ - uid: 4198
+ components:
+ - type: Transform
+ pos: -18.5,-28.5
+ parent: 2
+ - uid: 9228
+ components:
+ - type: Transform
+ pos: -22.5,-19.5
+ parent: 2
- proto: AirlockMedicalGlassLocked
entities:
- uid: 3967
@@ -14122,33 +13839,6 @@ entities:
- type: Transform
pos: -31.5,-29.5
parent: 2
-- proto: AirlockMedicalLocked
- entities:
- - uid: 926
- components:
- - type: Transform
- pos: -18.5,-33.5
- parent: 2
- - uid: 930
- components:
- - type: Transform
- pos: -20.5,-44.5
- parent: 2
- - uid: 935
- components:
- - type: Transform
- pos: -18.5,-28.5
- parent: 2
- - uid: 937
- components:
- - type: Transform
- pos: -22.5,-19.5
- parent: 2
- - uid: 23449
- components:
- - type: Transform
- pos: -18.5,-41.5
- parent: 2
- proto: AirlockMedicalMorgueLocked
entities:
- uid: 401
@@ -14365,41 +14055,27 @@ entities:
rot: 1.5707963267948966 rad
pos: -89.5,-27.5
parent: 2
- - uid: 6596
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -83.5,-39.5
- parent: 2
- - type: DeviceLinkSink
- invokeCounter: 1
- - type: DeviceLinkSource
- linkedPorts:
- 5609:
- - DoorStatus: DoorBolt
- - uid: 6604
+ - uid: 6728
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -87.5,-39.5
+ pos: -91.5,-40.5
parent: 2
- type: DeviceLinkSink
invokeCounter: 1
- type: DeviceLinkSource
linkedPorts:
- 6487:
+ 14491:
- DoorStatus: DoorBolt
- - uid: 6605
+ - uid: 6732
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -79.5,-39.5
+ pos: -87.5,-40.5
parent: 2
- type: DeviceLinkSink
invokeCounter: 1
- type: DeviceLinkSource
linkedPorts:
- 6545:
+ 13565:
- DoorStatus: DoorBolt
- uid: 8247
components:
@@ -14425,12 +14101,6 @@ entities:
rot: 3.141592653589793 rad
pos: -22.5,5.5
parent: 2
- - uid: 17905
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -89.5,-37.5
- parent: 2
- proto: AirlockSecurityLawyerLocked
entities:
- uid: 4905
@@ -14460,11 +14130,6 @@ entities:
- DoorStatus: Close
- proto: AirlockServiceLocked
entities:
- - uid: 1968
- components:
- - type: Transform
- pos: -100.5,1.5
- parent: 2
- uid: 3850
components:
- type: Transform
@@ -14475,6 +14140,11 @@ entities:
- type: Transform
pos: -22.5,20.5
parent: 2
+ - uid: 16010
+ components:
+ - type: Transform
+ pos: -108.5,-31.5
+ parent: 2
- proto: AirlockTheatreLocked
entities:
- uid: 3369
@@ -14535,7 +14205,7 @@ entities:
parent: 2
- type: DeviceNetwork
deviceLists:
- - 23457
+ - 9273
- uid: 972
components:
- type: Transform
@@ -14615,14 +14285,6 @@ entities:
deviceLists:
- 19910
- 12768
- - uid: 14272
- components:
- - type: Transform
- pos: -111.5,-31.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 14263
- uid: 14358
components:
- type: Transform
@@ -14641,7 +14303,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 25886
- - 17420
- uid: 14633
components:
- type: Transform
@@ -14749,7 +14410,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 12151
- - 24300
- uid: 15366
components:
- type: Transform
@@ -14783,7 +14443,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 15415
- - 24309
- uid: 17180
components:
- type: Transform
@@ -14822,6 +14481,46 @@ entities:
- type: Transform
pos: -93.5,-30.5
parent: 2
+ - uid: 18712
+ components:
+ - type: Transform
+ pos: -89.5,-38.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 18702
+ - uid: 18713
+ components:
+ - type: Transform
+ pos: -82.5,-38.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 18702
+ - uid: 18714
+ components:
+ - type: Transform
+ pos: -92.5,-42.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 18701
+ - uid: 18715
+ components:
+ - type: Transform
+ pos: -88.5,-42.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 18701
+ - uid: 18716
+ components:
+ - type: Transform
+ pos: -87.5,-46.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 18701
- uid: 18717
components:
- type: Transform
@@ -14829,7 +14528,7 @@ entities:
parent: 2
- type: DeviceNetwork
deviceLists:
- - 20503
+ - 18701
- uid: 18718
components:
- type: Transform
@@ -14870,6 +14569,22 @@ entities:
- type: DeviceNetwork
deviceLists:
- 18704
+ - uid: 18724
+ components:
+ - type: Transform
+ pos: -113.5,-31.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 18723
+ - uid: 18725
+ components:
+ - type: Transform
+ pos: -110.5,-31.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 18723
- uid: 19285
components:
- type: Transform
@@ -15042,7 +14757,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 25886
- - 17420
- uid: 20371
components:
- type: Transform
@@ -15052,7 +14766,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 20316
- - 17833
- uid: 20373
components:
- type: Transform
@@ -15062,7 +14775,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 20318
- - 24312
- uid: 20376
components:
- type: Transform
@@ -15093,31 +14805,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 20316
- - 17833
- - uid: 20414
- components:
- - type: Transform
- pos: -91.5,-38.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 20831
- - uid: 20418
- components:
- - type: Transform
- pos: -87.5,-45.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 20503
- - uid: 20434
- components:
- - type: Transform
- pos: -83.5,-37.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 20831
- uid: 20472
components:
- type: Transform
@@ -15126,14 +14813,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 21473
- - uid: 20776
- components:
- - type: Transform
- pos: -116.5,-31.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 14263
- uid: 22171
components:
- type: Transform
@@ -15315,8 +14994,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 24742
- - 20503
- - 16688
- uid: 25263
components:
- type: Transform
@@ -15414,13 +15091,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 8072
-- proto: AlertsComputerCircuitboard
- entities:
- - uid: 4266
- components:
- - type: Transform
- pos: -116.34815,-32.425922
- parent: 2
- proto: AltarChaos
entities:
- uid: 15414
@@ -15437,10 +15107,10 @@ entities:
parent: 2
- proto: AltarToolbox
entities:
- - uid: 22965
+ - uid: 16714
components:
- type: Transform
- pos: -68.5,-73.5
+ pos: -67.5,-72.5
parent: 2
- proto: AlwaysPoweredLightExterior
entities:
@@ -15582,19 +15252,13 @@ entities:
rot: -1.5707963267948966 rad
pos: -116.5,-6.5
parent: 2
- - uid: 1082
- components:
- - type: MetaData
- name: Permabrig APC
- - type: Transform
- pos: -86.5,-36.5
- parent: 2
- - uid: 2083
+ - uid: 973
components:
- type: MetaData
- name: Tech Storage APC
+ name: Southwest Maintenance APC
- type: Transform
- pos: -108.5,-30.5
+ rot: -1.5707963267948966 rad
+ pos: -74.5,-54.5
parent: 2
- uid: 3069
components:
@@ -15644,12 +15308,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -70.5,-26.5
parent: 2
- - uid: 3812
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -62.5,-58.5
- parent: 2
- uid: 4211
components:
- type: MetaData
@@ -15715,6 +15373,14 @@ entities:
rot: 1.5707963267948966 rad
pos: -38.5,-4.5
parent: 2
+ - uid: 5393
+ components:
+ - type: MetaData
+ name: 'Plasma Pit #045'
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -99.5,-1.5
+ parent: 2
- uid: 5836
components:
- type: MetaData
@@ -15885,13 +15551,6 @@ entities:
rot: 3.141592653589793 rad
pos: -27.5,-22.5
parent: 2
- - uid: 13591
- components:
- - type: MetaData
- name: 'Plasma Pit #046 APC'
- - type: Transform
- pos: -88.5,-59.5
- parent: 2
- uid: 13608
components:
- type: MetaData
@@ -15939,14 +15598,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -31.5,-39.5
parent: 2
- - uid: 14753
- components:
- - type: MetaData
- name: South Hallway APC
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -72.5,-54.5
- parent: 2
- uid: 15262
components:
- type: MetaData
@@ -15970,6 +15621,14 @@ entities:
- type: Transform
pos: -99.5,23.5
parent: 2
+ - uid: 17134
+ components:
+ - type: MetaData
+ name: Dorms APC
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -73.5,-58.5
+ parent: 2
- uid: 18385
components:
- type: MetaData
@@ -15993,6 +15652,13 @@ entities:
rot: 3.141592653589793 rad
pos: -85.5,-30.5
parent: 2
+ - uid: 18404
+ components:
+ - type: MetaData
+ name: Permabrig APC
+ - type: Transform
+ pos: -88.5,-36.5
+ parent: 2
- uid: 18405
components:
- type: MetaData
@@ -16140,33 +15806,27 @@ entities:
rot: 3.141592653589793 rad
pos: -18.5,-10.5
parent: 2
- - uid: 22712
+ - uid: 22493
components:
- type: MetaData
- name: Theatre APC
+ name: Newsroom APC
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,-36.5
+ pos: -109.5,-28.5
parent: 2
- - uid: 23178
+ - uid: 22703
components:
- type: MetaData
- name: 'Plasma Pit #045 APC'
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -94.5,-10.5
- parent: 2
- - uid: 23212
- components:
+ name: Northwest Maintenance APC
- type: Transform
- pos: -98.5,3.5
+ pos: -106.5,26.5
parent: 2
- - uid: 23671
+ - uid: 22712
components:
- type: MetaData
- name: RAGE CAGE APC
+ name: Theatre APC
- type: Transform
- pos: -57.5,-68.5
+ rot: -1.5707963267948966 rad
+ pos: -50.5,-36.5
parent: 2
- uid: 24078
components:
@@ -16175,6 +15835,13 @@ entities:
- type: Transform
pos: -17.5,-33.5
parent: 2
+ - uid: 24477
+ components:
+ - type: MetaData
+ name: 'Plasma Pit #046 APC'
+ - type: Transform
+ pos: -91.5,-60.5
+ parent: 2
- uid: 25110
components:
- type: MetaData
@@ -16213,13 +15880,6 @@ entities:
rot: 3.141592653589793 rad
pos: -137.5,-28.5
parent: 2
- - uid: 25910
- components:
- - type: MetaData
- name: Northwest Maintenance APC
- - type: Transform
- pos: -117.5,26.5
- parent: 2
- uid: 25949
components:
- type: MetaData
@@ -16293,17 +15953,17 @@ entities:
- uid: 5619
components:
- type: Transform
- pos: -26.532116,-63.969265
+ pos: -25.143217,-62.774654
parent: 2
- uid: 6032
components:
- type: Transform
- pos: -25.528984,-62.44691
+ pos: -24.486967,-66.39966
parent: 2
- uid: 16884
components:
- type: Transform
- pos: -25.560234,-68.571915
+ pos: -24.471342,-68.54028
parent: 2
- uid: 16888
components:
@@ -16361,6 +16021,21 @@ entities:
- type: Transform
pos: -45.5,-11.5
parent: 2
+ - uid: 290
+ components:
+ - type: Transform
+ pos: -113.5,34.5
+ parent: 2
+ - uid: 300
+ components:
+ - type: Transform
+ pos: -109.5,37.5
+ parent: 2
+ - uid: 307
+ components:
+ - type: Transform
+ pos: -19.5,-11.5
+ parent: 2
- uid: 336
components:
- type: Transform
@@ -16406,6 +16081,11 @@ entities:
- type: Transform
pos: -71.5,3.5
parent: 2
+ - uid: 369
+ components:
+ - type: Transform
+ pos: -90.5,-6.5
+ parent: 2
- uid: 370
components:
- type: Transform
@@ -16416,6 +16096,11 @@ entities:
- type: Transform
pos: -90.5,-9.5
parent: 2
+ - uid: 372
+ components:
+ - type: Transform
+ pos: -94.5,-7.5
+ parent: 2
- uid: 373
components:
- type: Transform
@@ -16426,21 +16111,31 @@ entities:
- type: Transform
pos: -117.5,38.5
parent: 2
- - uid: 384
+ - uid: 400
components:
- type: Transform
- pos: -100.5,-5.5
+ pos: -114.5,38.5
parent: 2
- - uid: 400
+ - uid: 420
components:
- type: Transform
- pos: -114.5,38.5
+ pos: -92.5,2.5
+ parent: 2
+ - uid: 431
+ components:
+ - type: Transform
+ pos: -97.5,-50.5
parent: 2
- uid: 524
components:
- type: Transform
pos: -108.5,34.5
parent: 2
+ - uid: 529
+ components:
+ - type: Transform
+ pos: -94.5,-9.5
+ parent: 2
- uid: 530
components:
- type: Transform
@@ -16451,6 +16146,11 @@ entities:
- type: Transform
pos: -122.5,-29.5
parent: 2
+ - uid: 672
+ components:
+ - type: Transform
+ pos: -94.5,-59.5
+ parent: 2
- uid: 695
components:
- type: Transform
@@ -16494,7 +16194,7 @@ entities:
- uid: 733
components:
- type: Transform
- pos: -78.5,-76.5
+ pos: -116.5,-32.5
parent: 2
- uid: 735
components:
@@ -16506,10 +16206,20 @@ entities:
- type: Transform
pos: -8.5,-43.5
parent: 2
- - uid: 762
+ - uid: 764
components:
- type: Transform
- pos: -82.5,-79.5
+ pos: -91.5,-6.5
+ parent: 2
+ - uid: 769
+ components:
+ - type: Transform
+ pos: -50.5,-74.5
+ parent: 2
+ - uid: 777
+ components:
+ - type: Transform
+ pos: -91.5,1.5
parent: 2
- uid: 784
components:
@@ -16521,15 +16231,25 @@ entities:
- type: Transform
pos: -107.5,-52.5
parent: 2
- - uid: 818
+ - uid: 809
components:
- type: Transform
- pos: -108.5,36.5
+ pos: -99.5,1.5
parent: 2
- - uid: 819
+ - uid: 811
components:
- type: Transform
- pos: -96.5,-58.5
+ pos: -99.5,-6.5
+ parent: 2
+ - uid: 815
+ components:
+ - type: Transform
+ pos: -91.5,-69.5
+ parent: 2
+ - uid: 818
+ components:
+ - type: Transform
+ pos: -108.5,36.5
parent: 2
- uid: 822
components:
@@ -16546,16 +16266,41 @@ entities:
- type: Transform
pos: -107.5,36.5
parent: 2
+ - uid: 890
+ components:
+ - type: Transform
+ pos: -109.5,36.5
+ parent: 2
- uid: 895
components:
- type: Transform
pos: -107.5,35.5
parent: 2
+ - uid: 898
+ components:
+ - type: Transform
+ pos: -110.5,34.5
+ parent: 2
- uid: 900
components:
- type: Transform
pos: -107.5,37.5
parent: 2
+ - uid: 901
+ components:
+ - type: Transform
+ pos: -114.5,35.5
+ parent: 2
+ - uid: 913
+ components:
+ - type: Transform
+ pos: -107.5,-33.5
+ parent: 2
+ - uid: 919
+ components:
+ - type: Transform
+ pos: -107.5,-34.5
+ parent: 2
- uid: 933
components:
- type: Transform
@@ -16591,6 +16336,11 @@ entities:
- type: Transform
pos: -109.5,33.5
parent: 2
+ - uid: 986
+ components:
+ - type: Transform
+ pos: -100.5,-61.5
+ parent: 2
- uid: 987
components:
- type: Transform
@@ -16641,6 +16391,11 @@ entities:
- type: Transform
pos: -39.5,-11.5
parent: 2
+ - uid: 1006
+ components:
+ - type: Transform
+ pos: -38.5,-11.5
+ parent: 2
- uid: 1007
components:
- type: Transform
@@ -16704,7 +16459,7 @@ entities:
- uid: 1092
components:
- type: Transform
- pos: -100.5,-8.5
+ pos: -93.5,2.5
parent: 2
- uid: 1096
components:
@@ -16741,6 +16496,11 @@ entities:
- type: Transform
pos: -8.5,-40.5
parent: 2
+ - uid: 1120
+ components:
+ - type: Transform
+ pos: -90.5,2.5
+ parent: 2
- uid: 1131
components:
- type: Transform
@@ -16771,15 +16531,45 @@ entities:
- type: Transform
pos: -37.5,-11.5
parent: 2
+ - uid: 1160
+ components:
+ - type: Transform
+ pos: -94.5,2.5
+ parent: 2
- uid: 1164
components:
- type: Transform
pos: -76.5,-19.5
parent: 2
+ - uid: 1165
+ components:
+ - type: Transform
+ pos: -90.5,1.5
+ parent: 2
- uid: 1167
components:
- type: Transform
- pos: -98.5,-5.5
+ pos: -92.5,-10.5
+ parent: 2
+ - uid: 1183
+ components:
+ - type: Transform
+ pos: -92.5,-70.5
+ parent: 2
+ - uid: 1184
+ components:
+ - type: Transform
+ pos: -102.5,-34.5
+ parent: 2
+ - uid: 1195
+ components:
+ - type: Transform
+ pos: -91.5,2.5
+ parent: 2
+ - uid: 1206
+ components:
+ - type: Transform
+ pos: -92.5,-71.5
parent: 2
- uid: 1276
components:
@@ -16796,6 +16586,21 @@ entities:
- type: Transform
pos: -108.5,35.5
parent: 2
+ - uid: 1315
+ components:
+ - type: Transform
+ pos: -100.5,-63.5
+ parent: 2
+ - uid: 1323
+ components:
+ - type: Transform
+ pos: -101.5,-63.5
+ parent: 2
+ - uid: 1326
+ components:
+ - type: Transform
+ pos: -98.5,-64.5
+ parent: 2
- uid: 1356
components:
- type: Transform
@@ -16831,6 +16636,16 @@ entities:
- type: Transform
pos: -75.5,4.5
parent: 2
+ - uid: 1399
+ components:
+ - type: Transform
+ pos: -91.5,-7.5
+ parent: 2
+ - uid: 1402
+ components:
+ - type: Transform
+ pos: -91.5,-8.5
+ parent: 2
- uid: 1404
components:
- type: Transform
@@ -16846,6 +16661,11 @@ entities:
- type: Transform
pos: -97.5,-9.5
parent: 2
+ - uid: 1422
+ components:
+ - type: Transform
+ pos: -97.5,-8.5
+ parent: 2
- uid: 1472
components:
- type: Transform
@@ -16856,6 +16676,11 @@ entities:
- type: Transform
pos: -91.5,-9.5
parent: 2
+ - uid: 1487
+ components:
+ - type: Transform
+ pos: -18.5,-57.5
+ parent: 2
- uid: 1488
components:
- type: Transform
@@ -16869,7 +16694,12 @@ entities:
- uid: 1497
components:
- type: Transform
- pos: -97.5,-59.5
+ pos: -96.5,-9.5
+ parent: 2
+ - uid: 1498
+ components:
+ - type: Transform
+ pos: -100.5,-62.5
parent: 2
- uid: 1499
components:
@@ -16896,15 +16726,35 @@ entities:
- type: Transform
pos: -57.5,-50.5
parent: 2
+ - uid: 1510
+ components:
+ - type: Transform
+ pos: -99.5,-60.5
+ parent: 2
- uid: 1518
components:
- type: Transform
pos: -97.5,-10.5
parent: 2
+ - uid: 1519
+ components:
+ - type: Transform
+ pos: -95.5,-7.5
+ parent: 2
- uid: 1520
components:
- type: Transform
- pos: -101.5,-62.5
+ pos: -100.5,-58.5
+ parent: 2
+ - uid: 1522
+ components:
+ - type: Transform
+ pos: -93.5,-9.5
+ parent: 2
+ - uid: 1529
+ components:
+ - type: Transform
+ pos: -98.5,-58.5
parent: 2
- uid: 1535
components:
@@ -16934,17 +16784,22 @@ entities:
- uid: 1545
components:
- type: Transform
- pos: -100.5,-61.5
+ pos: -97.5,-58.5
parent: 2
- uid: 1546
components:
- type: Transform
- pos: -94.5,-3.5
+ pos: -102.5,-37.5
parent: 2
- uid: 1547
components:
- type: Transform
- pos: -99.5,-59.5
+ pos: -102.5,-38.5
+ parent: 2
+ - uid: 1548
+ components:
+ - type: Transform
+ pos: -97.5,-51.5
parent: 2
- uid: 1550
components:
@@ -16956,6 +16811,16 @@ entities:
- type: Transform
pos: -96.5,-49.5
parent: 2
+ - uid: 1553
+ components:
+ - type: Transform
+ pos: -97.5,-49.5
+ parent: 2
+ - uid: 1554
+ components:
+ - type: Transform
+ pos: -98.5,-59.5
+ parent: 2
- uid: 1555
components:
- type: Transform
@@ -16976,20 +16841,30 @@ entities:
- type: Transform
pos: -21.5,-15.5
parent: 2
+ - uid: 1563
+ components:
+ - type: Transform
+ pos: -102.5,-35.5
+ parent: 2
- uid: 1564
components:
- type: Transform
- pos: -100.5,-60.5
+ pos: -117.5,-28.5
parent: 2
- uid: 1571
components:
- type: Transform
pos: -19.5,-62.5
parent: 2
+ - uid: 1585
+ components:
+ - type: Transform
+ pos: -117.5,-29.5
+ parent: 2
- uid: 1586
components:
- type: Transform
- pos: -117.5,-28.5
+ pos: -116.5,-33.5
parent: 2
- uid: 1587
components:
@@ -17001,11 +16876,21 @@ entities:
- type: Transform
pos: -97.5,-53.5
parent: 2
+ - uid: 1590
+ components:
+ - type: Transform
+ pos: -100.5,-59.5
+ parent: 2
- uid: 1591
components:
- type: Transform
pos: -59.5,-80.5
parent: 2
+ - uid: 1594
+ components:
+ - type: Transform
+ pos: -97.5,-59.5
+ parent: 2
- uid: 1597
components:
- type: Transform
@@ -17104,37 +16989,37 @@ entities:
- uid: 1645
components:
- type: Transform
- pos: -101.5,-61.5
+ pos: -100.5,-60.5
parent: 2
- - uid: 1652
+ - uid: 1657
components:
- type: Transform
- pos: -100.5,-59.5
+ pos: -101.5,-61.5
parent: 2
- - uid: 1655
+ - uid: 1660
components:
- type: Transform
- pos: -101.5,-60.5
+ pos: -98.5,-61.5
parent: 2
- - uid: 1696
+ - uid: 1675
components:
- type: Transform
- pos: -92.5,-3.5
+ pos: -99.5,-64.5
parent: 2
- uid: 1697
components:
- type: Transform
- pos: -99.5,-60.5
+ pos: -48.5,-75.5
parent: 2
- - uid: 1705
+ - uid: 1703
components:
- type: Transform
- pos: -101.5,-59.5
+ pos: -98.5,-62.5
parent: 2
- - uid: 1720
+ - uid: 1707
components:
- type: Transform
- pos: -91.5,-4.5
+ pos: -62.5,-74.5
parent: 2
- uid: 1742
components:
@@ -17146,6 +17031,16 @@ entities:
- type: Transform
pos: -100.5,-53.5
parent: 2
+ - uid: 1748
+ components:
+ - type: Transform
+ pos: -48.5,-73.5
+ parent: 2
+ - uid: 1750
+ components:
+ - type: Transform
+ pos: -101.5,-60.5
+ parent: 2
- uid: 1751
components:
- type: Transform
@@ -17154,12 +17049,12 @@ entities:
- uid: 1757
components:
- type: Transform
- pos: -100.5,-6.5
+ pos: -99.5,-58.5
parent: 2
- uid: 1775
components:
- type: Transform
- pos: -16.5,-49.5
+ pos: -133.5,33.5
parent: 2
- uid: 1789
components:
@@ -17169,7 +17064,12 @@ entities:
- uid: 1796
components:
- type: Transform
- pos: -51.5,-76.5
+ pos: -49.5,-74.5
+ parent: 2
+ - uid: 1802
+ components:
+ - type: Transform
+ pos: -98.5,-63.5
parent: 2
- uid: 1812
components:
@@ -17181,21 +17081,46 @@ entities:
- type: Transform
pos: -123.5,-30.5
parent: 2
+ - uid: 1817
+ components:
+ - type: Transform
+ pos: -101.5,-19.5
+ parent: 2
- uid: 1819
components:
- type: Transform
- pos: -91.5,-3.5
+ pos: -93.5,-10.5
parent: 2
- uid: 1824
components:
- type: Transform
- pos: -93.5,-3.5
+ pos: -99.5,-59.5
+ parent: 2
+ - uid: 1833
+ components:
+ - type: Transform
+ pos: -99.5,-62.5
parent: 2
- uid: 1835
components:
- type: Transform
pos: -99.5,-15.5
parent: 2
+ - uid: 1837
+ components:
+ - type: Transform
+ pos: -108.5,-35.5
+ parent: 2
+ - uid: 1838
+ components:
+ - type: Transform
+ pos: -110.5,-35.5
+ parent: 2
+ - uid: 1839
+ components:
+ - type: Transform
+ pos: -109.5,-35.5
+ parent: 2
- uid: 1841
components:
- type: Transform
@@ -17211,26 +17136,21 @@ entities:
- type: Transform
pos: -102.5,-49.5
parent: 2
- - uid: 1858
+ - uid: 1850
components:
- type: Transform
- pos: -8.5,-45.5
+ pos: -98.5,-60.5
parent: 2
- - uid: 1859
+ - uid: 1858
components:
- type: Transform
- pos: -63.5,-74.5
+ pos: -8.5,-45.5
parent: 2
- uid: 1862
components:
- type: Transform
pos: -106.5,-49.5
parent: 2
- - uid: 1877
- components:
- - type: Transform
- pos: -49.5,-76.5
- parent: 2
- uid: 1883
components:
- type: Transform
@@ -17244,7 +17164,7 @@ entities:
- uid: 1893
components:
- type: Transform
- pos: -50.5,-76.5
+ pos: -101.5,-59.5
parent: 2
- uid: 1896
components:
@@ -17256,15 +17176,30 @@ entities:
- type: Transform
pos: -108.5,-53.5
parent: 2
+ - uid: 1945
+ components:
+ - type: Transform
+ pos: -96.5,-68.5
+ parent: 2
- uid: 1962
components:
- type: Transform
pos: -139.5,7.5
parent: 2
+ - uid: 1973
+ components:
+ - type: Transform
+ pos: -49.5,-75.5
+ parent: 2
- uid: 1975
components:
- type: Transform
- pos: -52.5,-76.5
+ pos: -72.5,-43.5
+ parent: 2
+ - uid: 1981
+ components:
+ - type: Transform
+ pos: -99.5,-63.5
parent: 2
- uid: 1992
components:
@@ -17286,11 +17221,6 @@ entities:
- type: Transform
pos: -99.5,-17.5
parent: 2
- - uid: 1999
- components:
- - type: Transform
- pos: -62.5,-68.5
- parent: 2
- uid: 2001
components:
- type: Transform
@@ -17311,6 +17241,11 @@ entities:
- type: Transform
pos: -99.5,-16.5
parent: 2
+ - uid: 2015
+ components:
+ - type: Transform
+ pos: -96.5,-7.5
+ parent: 2
- uid: 2024
components:
- type: Transform
@@ -17336,6 +17271,11 @@ entities:
- type: Transform
pos: -85.5,-15.5
parent: 2
+ - uid: 2043
+ components:
+ - type: Transform
+ pos: -102.5,-63.5
+ parent: 2
- uid: 2044
components:
- type: Transform
@@ -17361,30 +17301,75 @@ entities:
- type: Transform
pos: -105.5,-7.5
parent: 2
+ - uid: 2058
+ components:
+ - type: Transform
+ pos: -92.5,-8.5
+ parent: 2
+ - uid: 2059
+ components:
+ - type: Transform
+ pos: -97.5,-7.5
+ parent: 2
- uid: 2061
components:
- type: Transform
pos: -105.5,-1.5
parent: 2
+ - uid: 2065
+ components:
+ - type: Transform
+ pos: -101.5,-17.5
+ parent: 2
- uid: 2066
components:
- type: Transform
pos: -100.5,-18.5
parent: 2
+ - uid: 2100
+ components:
+ - type: Transform
+ pos: -100.5,-5.5
+ parent: 2
+ - uid: 2127
+ components:
+ - type: Transform
+ pos: -94.5,-8.5
+ parent: 2
- uid: 2144
components:
- type: Transform
pos: -90.5,-7.5
parent: 2
+ - uid: 2148
+ components:
+ - type: Transform
+ pos: -96.5,-8.5
+ parent: 2
- uid: 2149
components:
- type: Transform
- pos: -63.5,-75.5
+ pos: -94.5,-10.5
+ parent: 2
+ - uid: 2152
+ components:
+ - type: Transform
+ pos: -95.5,-9.5
+ parent: 2
+ - uid: 2153
+ components:
+ - type: Transform
+ pos: -93.5,-11.5
+ parent: 2
+ - uid: 2155
+ components:
+ - type: Transform
+ pos: -99.5,2.5
parent: 2
- uid: 2162
components:
- type: Transform
- pos: -48.5,-76.5
+ pos: -95.5,-8.5
parent: 2
- uid: 2163
components:
@@ -17396,6 +17381,11 @@ entities:
- type: Transform
pos: -99.5,-7.5
parent: 2
+ - uid: 2167
+ components:
+ - type: Transform
+ pos: -101.5,-4.5
+ parent: 2
- uid: 2207
components:
- type: Transform
@@ -17406,6 +17396,26 @@ entities:
- type: Transform
pos: -107.5,-54.5
parent: 2
+ - uid: 2235
+ components:
+ - type: Transform
+ pos: -100.5,-0.5
+ parent: 2
+ - uid: 2236
+ components:
+ - type: Transform
+ pos: -100.5,0.5
+ parent: 2
+ - uid: 2242
+ components:
+ - type: Transform
+ pos: -47.5,-76.5
+ parent: 2
+ - uid: 2246
+ components:
+ - type: Transform
+ pos: -100.5,1.5
+ parent: 2
- uid: 2257
components:
- type: Transform
@@ -17416,6 +17426,11 @@ entities:
- type: Transform
pos: -127.5,-30.5
parent: 2
+ - uid: 2291
+ components:
+ - type: Transform
+ pos: -100.5,-4.5
+ parent: 2
- uid: 2293
components:
- type: Transform
@@ -17441,6 +17456,11 @@ entities:
- type: Transform
pos: -110.5,-59.5
parent: 2
+ - uid: 2314
+ components:
+ - type: Transform
+ pos: -55.5,-75.5
+ parent: 2
- uid: 2316
components:
- type: Transform
@@ -17461,6 +17481,16 @@ entities:
- type: Transform
pos: -135.5,-22.5
parent: 2
+ - uid: 2335
+ components:
+ - type: Transform
+ pos: -73.5,-42.5
+ parent: 2
+ - uid: 2352
+ components:
+ - type: Transform
+ pos: -74.5,-41.5
+ parent: 2
- uid: 2357
components:
- type: Transform
@@ -17469,7 +17499,22 @@ entities:
- uid: 2362
components:
- type: Transform
- pos: -93.5,-58.5
+ pos: -100.5,-6.5
+ parent: 2
+ - uid: 2368
+ components:
+ - type: Transform
+ pos: -93.5,-7.5
+ parent: 2
+ - uid: 2371
+ components:
+ - type: Transform
+ pos: -101.5,-5.5
+ parent: 2
+ - uid: 2382
+ components:
+ - type: Transform
+ pos: -93.5,-8.5
parent: 2
- uid: 2385
components:
@@ -17481,90 +17526,190 @@ entities:
- type: Transform
pos: -106.5,-58.5
parent: 2
+ - uid: 2395
+ components:
+ - type: Transform
+ pos: -135.5,31.5
+ parent: 2
- uid: 2412
components:
- type: Transform
pos: -135.5,30.5
parent: 2
+ - uid: 2415
+ components:
+ - type: Transform
+ pos: -101.5,-18.5
+ parent: 2
+ - uid: 2418
+ components:
+ - type: Transform
+ pos: -99.5,-65.5
+ parent: 2
+ - uid: 2423
+ components:
+ - type: Transform
+ pos: -98.5,-7.5
+ parent: 2
- uid: 2479
components:
- type: Transform
pos: -44.5,-78.5
parent: 2
+ - uid: 2493
+ components:
+ - type: Transform
+ pos: -98.5,-65.5
+ parent: 2
+ - uid: 2501
+ components:
+ - type: Transform
+ pos: -62.5,-75.5
+ parent: 2
- uid: 2502
components:
- type: Transform
pos: -105.5,-19.5
parent: 2
+ - uid: 2504
+ components:
+ - type: Transform
+ pos: -48.5,-74.5
+ parent: 2
- uid: 2513
components:
- type: Transform
pos: -86.5,-15.5
parent: 2
+ - uid: 2537
+ components:
+ - type: Transform
+ pos: -101.5,-62.5
+ parent: 2
- uid: 2538
components:
- type: Transform
pos: -91.5,-11.5
parent: 2
+ - uid: 2544
+ components:
+ - type: Transform
+ pos: -92.5,-7.5
+ parent: 2
- uid: 2545
components:
- type: Transform
- pos: -47.5,-67.5
+ pos: -48.5,-76.5
parent: 2
- - uid: 2569
+ - uid: 2560
components:
- type: Transform
- pos: -76.5,-65.5
+ pos: -49.5,-76.5
parent: 2
- - uid: 2576
+ - uid: 2561
components:
- type: Transform
- pos: -94.5,-68.5
+ pos: -49.5,-73.5
parent: 2
- - uid: 2577
+ - uid: 2562
components:
- type: Transform
- pos: -96.5,-68.5
+ pos: -51.5,-73.5
parent: 2
- - uid: 2578
+ - uid: 2564
components:
- type: Transform
- pos: -95.5,-68.5
+ pos: -50.5,-76.5
parent: 2
- - uid: 2579
+ - uid: 2565
components:
- type: Transform
- pos: -92.5,-58.5
+ pos: -50.5,-73.5
parent: 2
- - uid: 2585
+ - uid: 2566
components:
- type: Transform
- pos: -100.5,-62.5
+ pos: -50.5,-75.5
parent: 2
- - uid: 2603
+ - uid: 2567
components:
- type: Transform
- pos: -90.5,-58.5
+ pos: -51.5,-74.5
parent: 2
- - uid: 2605
+ - uid: 2568
components:
- type: Transform
- pos: -91.5,-58.5
+ pos: -52.5,-74.5
+ parent: 2
+ - uid: 2569
+ components:
+ - type: Transform
+ pos: -98.5,2.5
+ parent: 2
+ - uid: 2570
+ components:
+ - type: Transform
+ pos: -51.5,-75.5
+ parent: 2
+ - uid: 2577
+ components:
+ - type: Transform
+ pos: -51.5,-76.5
+ parent: 2
+ - uid: 2604
+ components:
+ - type: Transform
+ pos: -95.5,2.5
parent: 2
- uid: 2611
components:
- type: Transform
- pos: -111.5,-35.5
+ pos: -96.5,2.5
+ parent: 2
+ - uid: 2613
+ components:
+ - type: Transform
+ pos: -97.5,2.5
parent: 2
- uid: 2617
components:
- type: Transform
pos: -15.5,22.5
parent: 2
+ - uid: 2621
+ components:
+ - type: Transform
+ pos: -90.5,-0.5
+ parent: 2
+ - uid: 2622
+ components:
+ - type: Transform
+ pos: -90.5,-1.5
+ parent: 2
+ - uid: 2623
+ components:
+ - type: Transform
+ pos: -90.5,-2.5
+ parent: 2
+ - uid: 2624
+ components:
+ - type: Transform
+ pos: -90.5,-3.5
+ parent: 2
+ - uid: 2625
+ components:
+ - type: Transform
+ pos: -90.5,-4.5
+ parent: 2
- uid: 2626
components:
- type: Transform
- pos: -95.5,-3.5
+ pos: -90.5,-5.5
+ parent: 2
+ - uid: 2629
+ components:
+ - type: Transform
+ pos: -52.5,-75.5
parent: 2
- uid: 2639
components:
@@ -17576,20 +17721,15 @@ entities:
- type: Transform
pos: -100.5,-16.5
parent: 2
- - uid: 2653
+ - uid: 2652
components:
- type: Transform
- pos: -80.5,-73.5
+ pos: -52.5,-73.5
parent: 2
- uid: 2654
components:
- type: Transform
- pos: -80.5,-74.5
- parent: 2
- - uid: 2676
- components:
- - type: Transform
- pos: -80.5,-75.5
+ pos: -90.5,0.5
parent: 2
- uid: 2720
components:
@@ -17611,6 +17751,11 @@ entities:
- type: Transform
pos: -15.5,10.5
parent: 2
+ - uid: 2731
+ components:
+ - type: Transform
+ pos: -16.5,11.5
+ parent: 2
- uid: 2732
components:
- type: Transform
@@ -17644,37 +17789,17 @@ entities:
- uid: 3285
components:
- type: Transform
- pos: -79.5,-77.5
- parent: 2
- - uid: 3304
- components:
- - type: Transform
- pos: -78.5,-77.5
- parent: 2
- - uid: 3404
- components:
- - type: Transform
- pos: -87.5,-58.5
- parent: 2
- - uid: 3424
- components:
- - type: Transform
- pos: -88.5,-58.5
- parent: 2
- - uid: 3428
- components:
- - type: Transform
- pos: -94.5,-58.5
+ pos: -116.5,-34.5
parent: 2
- - uid: 3493
+ - uid: 3503
components:
- type: Transform
- pos: -94.5,-60.5
+ pos: -76.5,-18.5
parent: 2
- - uid: 3503
+ - uid: 3504
components:
- type: Transform
- pos: -76.5,-18.5
+ pos: -62.5,-68.5
parent: 2
- uid: 3506
components:
@@ -17736,10 +17861,10 @@ entities:
- type: Transform
pos: -59.5,-50.5
parent: 2
- - uid: 3616
+ - uid: 3634
components:
- type: Transform
- pos: -80.5,-70.5
+ pos: -73.5,-46.5
parent: 2
- uid: 3635
components:
@@ -17801,6 +17926,21 @@ entities:
- type: Transform
pos: -61.5,-50.5
parent: 2
+ - uid: 3701
+ components:
+ - type: Transform
+ pos: -62.5,-70.5
+ parent: 2
+ - uid: 3707
+ components:
+ - type: Transform
+ pos: -74.5,-45.5
+ parent: 2
+ - uid: 3709
+ components:
+ - type: Transform
+ pos: -72.5,-47.5
+ parent: 2
- uid: 3710
components:
- type: Transform
@@ -17824,122 +17964,177 @@ entities:
- uid: 3714
components:
- type: Transform
- pos: -80.5,-72.5
+ pos: -72.5,-46.5
parent: 2
- - uid: 3725
+ - uid: 3716
components:
- type: Transform
- pos: -80.5,-71.5
+ pos: -73.5,-45.5
parent: 2
- - uid: 4098
+ - uid: 3722
components:
- type: Transform
- pos: -48.5,-67.5
+ pos: -73.5,-47.5
+ parent: 2
+ - uid: 3724
+ components:
+ - type: Transform
+ pos: -74.5,-46.5
+ parent: 2
+ - uid: 4002
+ components:
+ - type: Transform
+ pos: -110.5,-38.5
+ parent: 2
+ - uid: 4035
+ components:
+ - type: Transform
+ pos: -63.5,-74.5
+ parent: 2
+ - uid: 4041
+ components:
+ - type: Transform
+ pos: -54.5,-67.5
+ parent: 2
+ - uid: 4092
+ components:
+ - type: Transform
+ pos: -55.5,-67.5
+ parent: 2
+ - uid: 4114
+ components:
+ - type: Transform
+ pos: -116.5,-30.5
parent: 2
- uid: 4128
components:
- type: Transform
pos: -118.5,-33.5
parent: 2
- - uid: 4251
+ - uid: 4253
components:
- type: Transform
- pos: -47.5,-76.5
+ pos: -63.5,-71.5
parent: 2
- - uid: 4261
+ - uid: 4255
components:
- type: Transform
- pos: -51.5,-67.5
+ pos: -62.5,-73.5
parent: 2
- - uid: 4442
+ - uid: 4257
components:
- type: Transform
- pos: -58.5,-75.5
+ pos: -62.5,-71.5
parent: 2
- - uid: 4443
+ - uid: 4262
components:
- type: Transform
- pos: -42.5,-78.5
+ pos: -62.5,-76.5
parent: 2
- - uid: 4444
+ - uid: 4264
components:
- type: Transform
- pos: -41.5,-78.5
+ pos: -62.5,-69.5
parent: 2
- - uid: 4486
+ - uid: 4265
components:
- type: Transform
- pos: -88.5,-10.5
+ pos: -63.5,-69.5
parent: 2
- - uid: 4568
+ - uid: 4278
components:
- type: Transform
- pos: -85.5,-60.5
+ pos: -63.5,-72.5
parent: 2
- - uid: 4586
+ - uid: 4281
components:
- type: Transform
- pos: -74.5,-30.5
+ pos: -63.5,-75.5
parent: 2
- - uid: 4607
+ - uid: 4284
components:
- type: Transform
- pos: -85.5,-59.5
+ pos: -63.5,-70.5
parent: 2
- - uid: 4613
+ - uid: 4424
components:
- type: Transform
- pos: -86.5,-58.5
+ pos: -47.5,-75.5
parent: 2
- - uid: 4621
+ - uid: 4434
components:
- type: Transform
- pos: -85.5,-58.5
+ pos: -56.5,-75.5
parent: 2
- - uid: 4632
+ - uid: 4435
components:
- type: Transform
- pos: -84.5,-60.5
+ pos: -54.5,-75.5
parent: 2
- - uid: 4664
+ - uid: 4441
components:
- type: Transform
- pos: -61.5,-75.5
+ pos: -57.5,-75.5
+ parent: 2
+ - uid: 4442
+ components:
+ - type: Transform
+ pos: -58.5,-75.5
+ parent: 2
+ - uid: 4443
+ components:
+ - type: Transform
+ pos: -42.5,-78.5
+ parent: 2
+ - uid: 4444
+ components:
+ - type: Transform
+ pos: -41.5,-78.5
+ parent: 2
+ - uid: 4486
+ components:
+ - type: Transform
+ pos: -88.5,-10.5
+ parent: 2
+ - uid: 4586
+ components:
+ - type: Transform
+ pos: -74.5,-30.5
parent: 2
- uid: 4817
components:
- type: Transform
pos: -63.5,-68.5
parent: 2
- - uid: 4819
+ - uid: 5106
components:
- type: Transform
- pos: -53.5,-76.5
+ pos: -62.5,-72.5
parent: 2
- - uid: 4985
+ - uid: 5114
components:
- type: Transform
- pos: -80.5,-79.5
+ pos: -63.5,-73.5
parent: 2
- - uid: 4986
+ - uid: 5639
components:
- type: Transform
- pos: -81.5,-79.5
+ pos: -96.5,-58.5
parent: 2
- - uid: 4987
+ - uid: 5642
components:
- type: Transform
- pos: -55.5,-67.5
+ pos: -94.5,-58.5
parent: 2
- - uid: 5106
+ - uid: 5643
components:
- type: Transform
- pos: -47.5,-65.5
+ pos: -90.5,-58.5
parent: 2
- - uid: 5754
+ - uid: 5876
components:
- type: Transform
- pos: -53.5,-67.5
+ pos: -88.5,-58.5
parent: 2
- uid: 5888
components:
@@ -17961,20 +18156,30 @@ entities:
- type: Transform
pos: -139.5,6.5
parent: 2
+ - uid: 5970
+ components:
+ - type: Transform
+ pos: -13.5,-59.5
+ parent: 2
- uid: 6004
components:
- type: Transform
- pos: -96.5,-59.5
+ pos: -89.5,-58.5
parent: 2
- uid: 6110
components:
- type: Transform
pos: -22.5,-63.5
parent: 2
- - uid: 6118
+ - uid: 6116
components:
- type: Transform
- pos: -97.5,-58.5
+ pos: -17.5,-57.5
+ parent: 2
+ - uid: 6126
+ components:
+ - type: Transform
+ pos: -16.5,-56.5
parent: 2
- uid: 6172
components:
@@ -17986,40 +18191,35 @@ entities:
- type: Transform
pos: -94.5,-72.5
parent: 2
- - uid: 6244
- components:
- - type: Transform
- pos: -77.5,-76.5
- parent: 2
- - uid: 6585
+ - uid: 6278
components:
- type: Transform
- pos: -99.5,-20.5
+ pos: -17.5,-56.5
parent: 2
- - uid: 6598
+ - uid: 6323
components:
- type: Transform
- pos: -98.5,-9.5
+ pos: -117.5,-30.5
parent: 2
- - uid: 6734
+ - uid: 6436
components:
- type: Transform
- pos: -80.5,-54.5
+ pos: -75.5,-34.5
parent: 2
- - uid: 6757
+ - uid: 6585
components:
- type: Transform
- pos: -115.5,-28.5
+ pos: -99.5,-20.5
parent: 2
- - uid: 6758
+ - uid: 6598
components:
- type: Transform
- pos: -107.5,-33.5
+ pos: -98.5,-9.5
parent: 2
- - uid: 6760
+ - uid: 6734
components:
- type: Transform
- pos: -107.5,-28.5
+ pos: -80.5,-54.5
parent: 2
- uid: 6765
components:
@@ -18031,10 +18231,10 @@ entities:
- type: Transform
pos: -88.5,-15.5
parent: 2
- - uid: 6797
+ - uid: 6774
components:
- type: Transform
- pos: -99.5,-9.5
+ pos: -86.5,-58.5
parent: 2
- uid: 6876
components:
@@ -18079,12 +18279,12 @@ entities:
- uid: 6955
components:
- type: Transform
- pos: -80.5,-77.5
+ pos: -107.5,-29.5
parent: 2
- - uid: 6973
+ - uid: 6957
components:
- type: Transform
- pos: -80.5,-76.5
+ pos: -99.5,-49.5
parent: 2
- uid: 6980
components:
@@ -18099,12 +18299,12 @@ entities:
- uid: 6986
components:
- type: Transform
- pos: -82.5,-77.5
+ pos: -108.5,-37.5
parent: 2
- uid: 6987
components:
- type: Transform
- pos: -82.5,-76.5
+ pos: -108.5,-36.5
parent: 2
- uid: 6995
components:
@@ -18116,30 +18316,30 @@ entities:
- type: Transform
pos: -107.5,-35.5
parent: 2
- - uid: 7016
+ - uid: 6998
components:
- type: Transform
- pos: -81.5,-75.5
+ pos: -107.5,-36.5
parent: 2
- - uid: 7020
+ - uid: 7003
components:
- type: Transform
- pos: -77.5,-77.5
+ pos: -110.5,-37.5
parent: 2
- - uid: 7025
+ - uid: 7004
components:
- type: Transform
- pos: -76.5,-66.5
+ pos: -110.5,-36.5
parent: 2
- - uid: 7026
+ - uid: 7011
components:
- type: Transform
- pos: -75.5,-66.5
+ pos: -109.5,-37.5
parent: 2
- - uid: 7038
+ - uid: 7012
components:
- type: Transform
- pos: -76.5,-76.5
+ pos: -109.5,-36.5
parent: 2
- uid: 7043
components:
@@ -18161,11 +18361,6 @@ entities:
- type: Transform
pos: -123.5,-28.5
parent: 2
- - uid: 7078
- components:
- - type: Transform
- pos: -72.5,-67.5
- parent: 2
- uid: 7089
components:
- type: Transform
@@ -18174,7 +18369,7 @@ entities:
- uid: 7105
components:
- type: Transform
- pos: -75.5,-76.5
+ pos: -101.5,-20.5
parent: 2
- uid: 7106
components:
@@ -18184,12 +18379,12 @@ entities:
- uid: 7111
components:
- type: Transform
- pos: -73.5,-68.5
+ pos: -81.5,-59.5
parent: 2
- uid: 7113
components:
- type: Transform
- pos: -74.5,-77.5
+ pos: -87.5,-58.5
parent: 2
- uid: 7120
components:
@@ -18201,6 +18396,11 @@ entities:
- type: Transform
pos: -19.5,-71.5
parent: 2
+ - uid: 7176
+ components:
+ - type: Transform
+ pos: -21.5,-69.5
+ parent: 2
- uid: 7179
components:
- type: Transform
@@ -18211,6 +18411,16 @@ entities:
- type: Transform
pos: -73.5,4.5
parent: 2
+ - uid: 7222
+ components:
+ - type: Transform
+ pos: -21.5,-68.5
+ parent: 2
+ - uid: 7233
+ components:
+ - type: Transform
+ pos: -19.5,-56.5
+ parent: 2
- uid: 7306
components:
- type: Transform
@@ -18246,40 +18456,10 @@ entities:
- type: Transform
pos: -109.5,-60.5
parent: 2
- - uid: 7562
- components:
- - type: Transform
- pos: -59.5,-69.5
- parent: 2
- - uid: 7627
- components:
- - type: Transform
- pos: -76.5,-77.5
- parent: 2
- - uid: 7634
- components:
- - type: Transform
- pos: -75.5,-65.5
- parent: 2
- - uid: 7660
- components:
- - type: Transform
- pos: -73.5,-77.5
- parent: 2
- - uid: 7662
- components:
- - type: Transform
- pos: -63.5,-70.5
- parent: 2
- - uid: 7750
- components:
- - type: Transform
- pos: -73.5,-71.5
- parent: 2
- - uid: 7912
+ - uid: 8147
components:
- type: Transform
- pos: -54.5,-67.5
+ pos: -18.5,-56.5
parent: 2
- uid: 8151
components:
@@ -18291,6 +18471,11 @@ entities:
- type: Transform
pos: -17.5,-68.5
parent: 2
+ - uid: 8224
+ components:
+ - type: Transform
+ pos: -22.5,-69.5
+ parent: 2
- uid: 8241
components:
- type: Transform
@@ -18301,6 +18486,11 @@ entities:
- type: Transform
pos: -19.5,-68.5
parent: 2
+ - uid: 8252
+ components:
+ - type: Transform
+ pos: -12.5,-55.5
+ parent: 2
- uid: 8339
components:
- type: Transform
@@ -18571,30 +18761,140 @@ entities:
- type: Transform
pos: -19.5,22.5
parent: 2
+ - uid: 8470
+ components:
+ - type: Transform
+ pos: -16.5,16.5
+ parent: 2
+ - uid: 8477
+ components:
+ - type: Transform
+ pos: -16.5,20.5
+ parent: 2
+ - uid: 8478
+ components:
+ - type: Transform
+ pos: -16.5,19.5
+ parent: 2
+ - uid: 8480
+ components:
+ - type: Transform
+ pos: -16.5,18.5
+ parent: 2
+ - uid: 8482
+ components:
+ - type: Transform
+ pos: -16.5,17.5
+ parent: 2
+ - uid: 8483
+ components:
+ - type: Transform
+ pos: -15.5,20.5
+ parent: 2
+ - uid: 8484
+ components:
+ - type: Transform
+ pos: -15.5,19.5
+ parent: 2
+ - uid: 8485
+ components:
+ - type: Transform
+ pos: -15.5,18.5
+ parent: 2
- uid: 8487
components:
- type: Transform
- pos: -72.5,-68.5
+ pos: -15.5,16.5
+ parent: 2
+ - uid: 8489
+ components:
+ - type: Transform
+ pos: -16.5,13.5
parent: 2
- uid: 8494
components:
- type: Transform
- pos: -74.5,-76.5
+ pos: -13.5,18.5
+ parent: 2
+ - uid: 8495
+ components:
+ - type: Transform
+ pos: -13.5,17.5
+ parent: 2
+ - uid: 8496
+ components:
+ - type: Transform
+ pos: -13.5,15.5
+ parent: 2
+ - uid: 8497
+ components:
+ - type: Transform
+ pos: -13.5,14.5
parent: 2
- uid: 8498
components:
- type: Transform
pos: -13.5,13.5
parent: 2
+ - uid: 8500
+ components:
+ - type: Transform
+ pos: -13.5,16.5
+ parent: 2
- uid: 8502
components:
- type: Transform
- pos: -73.5,-75.5
+ pos: -14.5,18.5
+ parent: 2
+ - uid: 8504
+ components:
+ - type: Transform
+ pos: -16.5,15.5
+ parent: 2
+ - uid: 8505
+ components:
+ - type: Transform
+ pos: -16.5,14.5
+ parent: 2
+ - uid: 8508
+ components:
+ - type: Transform
+ pos: -15.5,15.5
parent: 2
- uid: 8509
components:
- type: Transform
- pos: -73.5,-76.5
+ pos: -15.5,14.5
+ parent: 2
+ - uid: 8510
+ components:
+ - type: Transform
+ pos: -15.5,13.5
+ parent: 2
+ - uid: 8512
+ components:
+ - type: Transform
+ pos: -14.5,19.5
+ parent: 2
+ - uid: 8514
+ components:
+ - type: Transform
+ pos: -14.5,17.5
+ parent: 2
+ - uid: 8515
+ components:
+ - type: Transform
+ pos: -14.5,16.5
+ parent: 2
+ - uid: 8516
+ components:
+ - type: Transform
+ pos: -14.5,15.5
+ parent: 2
+ - uid: 8517
+ components:
+ - type: Transform
+ pos: -14.5,14.5
parent: 2
- uid: 8518
components:
@@ -18781,16 +19081,41 @@ entities:
- type: Transform
pos: -10.5,16.5
parent: 2
+ - uid: 8674
+ components:
+ - type: Transform
+ pos: -12.5,-46.5
+ parent: 2
+ - uid: 8676
+ components:
+ - type: Transform
+ pos: -11.5,-48.5
+ parent: 2
- uid: 8678
components:
- type: Transform
pos: -10.5,-47.5
parent: 2
+ - uid: 8679
+ components:
+ - type: Transform
+ pos: -11.5,-47.5
+ parent: 2
+ - uid: 8681
+ components:
+ - type: Transform
+ pos: -11.5,-50.5
+ parent: 2
- uid: 8683
components:
- type: Transform
pos: -74.5,4.5
parent: 2
+ - uid: 8692
+ components:
+ - type: Transform
+ pos: -82.5,10.5
+ parent: 2
- uid: 8720
components:
- type: Transform
@@ -18921,10 +19246,20 @@ entities:
- type: Transform
pos: -6.5,-26.5
parent: 2
- - uid: 8842
+ - uid: 8827
components:
- type: Transform
- pos: -75.5,-77.5
+ pos: -11.5,-49.5
+ parent: 2
+ - uid: 8829
+ components:
+ - type: Transform
+ pos: -11.5,-46.5
+ parent: 2
+ - uid: 8841
+ components:
+ - type: Transform
+ pos: -11.5,-51.5
parent: 2
- uid: 8874
components:
@@ -18964,7 +19299,17 @@ entities:
- uid: 8888
components:
- type: Transform
- pos: -73.5,-70.5
+ pos: -72.5,-45.5
+ parent: 2
+ - uid: 8891
+ components:
+ - type: Transform
+ pos: -11.5,-45.5
+ parent: 2
+ - uid: 8892
+ components:
+ - type: Transform
+ pos: -12.5,-45.5
parent: 2
- uid: 8894
components:
@@ -18996,15 +19341,25 @@ entities:
- type: Transform
pos: -11.5,-52.5
parent: 2
- - uid: 8962
+ - uid: 8916
components:
- type: Transform
- pos: -92.5,-11.5
+ pos: -12.5,-52.5
parent: 2
- - uid: 8984
+ - uid: 8918
components:
- type: Transform
- pos: -63.5,-69.5
+ pos: -12.5,-53.5
+ parent: 2
+ - uid: 8919
+ components:
+ - type: Transform
+ pos: -12.5,-54.5
+ parent: 2
+ - uid: 8962
+ components:
+ - type: Transform
+ pos: -92.5,-11.5
parent: 2
- uid: 8997
components:
@@ -19026,41 +19381,126 @@ entities:
- type: Transform
pos: -130.5,17.5
parent: 2
+ - uid: 9028
+ components:
+ - type: Transform
+ pos: -51.5,-68.5
+ parent: 2
+ - uid: 9029
+ components:
+ - type: Transform
+ pos: -49.5,-66.5
+ parent: 2
+ - uid: 9030
+ components:
+ - type: Transform
+ pos: -51.5,-67.5
+ parent: 2
+ - uid: 9034
+ components:
+ - type: Transform
+ pos: -47.5,-69.5
+ parent: 2
+ - uid: 9038
+ components:
+ - type: Transform
+ pos: -47.5,-68.5
+ parent: 2
+ - uid: 9050
+ components:
+ - type: Transform
+ pos: -56.5,-67.5
+ parent: 2
- uid: 9071
components:
- type: Transform
pos: -93.5,-73.5
parent: 2
+ - uid: 9087
+ components:
+ - type: Transform
+ pos: -100.5,2.5
+ parent: 2
+ - uid: 9170
+ components:
+ - type: Transform
+ pos: -72.5,-44.5
+ parent: 2
- uid: 9202
components:
- type: Transform
pos: -10.5,-48.5
parent: 2
- - uid: 9242
+ - uid: 9208
components:
- type: Transform
- pos: -74.5,-70.5
+ pos: -12.5,-51.5
parent: 2
- - uid: 9243
+ - uid: 9282
components:
- type: Transform
- pos: -73.5,-67.5
+ pos: -74.5,-34.5
parent: 2
- - uid: 9256
+ - uid: 9306
components:
- type: Transform
- pos: -60.5,-69.5
+ pos: -74.5,-40.5
parent: 2
- - uid: 9259
+ - uid: 9317
+ components:
+ - type: Transform
+ pos: -76.5,-34.5
+ parent: 2
+ - uid: 9336
components:
- type: Transform
- pos: -74.5,-68.5
+ pos: -73.5,-41.5
parent: 2
- uid: 9347
components:
- type: Transform
pos: -74.5,-32.5
parent: 2
+ - uid: 9366
+ components:
+ - type: Transform
+ pos: -88.5,-68.5
+ parent: 2
+ - uid: 9367
+ components:
+ - type: Transform
+ pos: -87.5,-67.5
+ parent: 2
+ - uid: 9368
+ components:
+ - type: Transform
+ pos: -87.5,-68.5
+ parent: 2
+ - uid: 9369
+ components:
+ - type: Transform
+ pos: -86.5,-67.5
+ parent: 2
+ - uid: 9370
+ components:
+ - type: Transform
+ pos: -86.5,-68.5
+ parent: 2
+ - uid: 9372
+ components:
+ - type: Transform
+ pos: -83.5,-69.5
+ parent: 2
+ - uid: 9373
+ components:
+ - type: Transform
+ pos: -83.5,-68.5
+ parent: 2
+ - uid: 9379
+ components:
+ - type: Transform
+ pos: -87.5,-69.5
+ parent: 2
- uid: 9380
components:
- type: Transform
@@ -19086,6 +19526,36 @@ entities:
- type: Transform
pos: -84.5,-69.5
parent: 2
+ - uid: 9385
+ components:
+ - type: Transform
+ pos: -83.5,-70.5
+ parent: 2
+ - uid: 9386
+ components:
+ - type: Transform
+ pos: -85.5,-66.5
+ parent: 2
+ - uid: 9387
+ components:
+ - type: Transform
+ pos: -87.5,-62.5
+ parent: 2
+ - uid: 9388
+ components:
+ - type: Transform
+ pos: -87.5,-64.5
+ parent: 2
+ - uid: 9389
+ components:
+ - type: Transform
+ pos: -87.5,-63.5
+ parent: 2
+ - uid: 9390
+ components:
+ - type: Transform
+ pos: -83.5,-67.5
+ parent: 2
- uid: 9392
components:
- type: Transform
@@ -19116,30 +19586,100 @@ entities:
- type: Transform
pos: -84.5,-65.5
parent: 2
+ - uid: 9398
+ components:
+ - type: Transform
+ pos: -86.5,-66.5
+ parent: 2
+ - uid: 9399
+ components:
+ - type: Transform
+ pos: -86.5,-65.5
+ parent: 2
+ - uid: 9400
+ components:
+ - type: Transform
+ pos: -86.5,-64.5
+ parent: 2
+ - uid: 9401
+ components:
+ - type: Transform
+ pos: -86.5,-63.5
+ parent: 2
- uid: 9402
components:
- type: Transform
- pos: -107.5,-34.5
+ pos: -86.5,-62.5
+ parent: 2
+ - uid: 9403
+ components:
+ - type: Transform
+ pos: -87.5,-66.5
+ parent: 2
+ - uid: 9404
+ components:
+ - type: Transform
+ pos: -87.5,-65.5
parent: 2
- uid: 9405
components:
- type: Transform
pos: -84.5,-64.5
parent: 2
+ - uid: 9406
+ components:
+ - type: Transform
+ pos: -83.5,-65.5
+ parent: 2
- uid: 9407
components:
- type: Transform
pos: -84.5,-63.5
parent: 2
+ - uid: 9408
+ components:
+ - type: Transform
+ pos: -85.5,-67.5
+ parent: 2
- uid: 9409
components:
- type: Transform
pos: -84.5,-62.5
parent: 2
+ - uid: 9410
+ components:
+ - type: Transform
+ pos: -85.5,-65.5
+ parent: 2
+ - uid: 9411
+ components:
+ - type: Transform
+ pos: -85.5,-64.5
+ parent: 2
+ - uid: 9412
+ components:
+ - type: Transform
+ pos: -85.5,-63.5
+ parent: 2
+ - uid: 9413
+ components:
+ - type: Transform
+ pos: -85.5,-62.5
+ parent: 2
- uid: 9416
components:
- type: Transform
- pos: -107.5,-29.5
+ pos: -97.5,-62.5
+ parent: 2
+ - uid: 9417
+ components:
+ - type: Transform
+ pos: -97.5,-61.5
+ parent: 2
+ - uid: 9418
+ components:
+ - type: Transform
+ pos: -97.5,-60.5
parent: 2
- uid: 9420
components:
@@ -19156,30 +19696,25 @@ entities:
- type: Transform
pos: -78.5,-54.5
parent: 2
- - uid: 9434
+ - uid: 9435
components:
- type: Transform
- pos: -61.5,-70.5
+ pos: -97.5,-63.5
parent: 2
- uid: 9436
components:
- type: Transform
- pos: -59.5,-73.5
+ pos: -97.5,-64.5
parent: 2
- uid: 9440
components:
- type: Transform
pos: -82.5,-11.5
parent: 2
- - uid: 9446
- components:
- - type: Transform
- pos: -51.5,-66.5
- parent: 2
- - uid: 9455
+ - uid: 9448
components:
- type: Transform
- pos: -74.5,-69.5
+ pos: -133.5,32.5
parent: 2
- uid: 9485
components:
@@ -19196,6 +19731,11 @@ entities:
- type: Transform
pos: -115.5,-35.5
parent: 2
+ - uid: 9512
+ components:
+ - type: Transform
+ pos: -99.5,-50.5
+ parent: 2
- uid: 9518
components:
- type: Transform
@@ -19206,6 +19746,11 @@ entities:
- type: Transform
pos: -113.5,-35.5
parent: 2
+ - uid: 9533
+ components:
+ - type: Transform
+ pos: -99.5,-51.5
+ parent: 2
- uid: 9537
components:
- type: Transform
@@ -19216,11 +19761,31 @@ entities:
- type: Transform
pos: -112.5,-35.5
parent: 2
+ - uid: 9541
+ components:
+ - type: Transform
+ pos: -98.5,-51.5
+ parent: 2
+ - uid: 9546
+ components:
+ - type: Transform
+ pos: -98.5,-49.5
+ parent: 2
+ - uid: 9569
+ components:
+ - type: Transform
+ pos: -116.5,-28.5
+ parent: 2
- uid: 9574
components:
- type: Transform
pos: -118.5,-31.5
parent: 2
+ - uid: 9577
+ components:
+ - type: Transform
+ pos: -117.5,-33.5
+ parent: 2
- uid: 9578
components:
- type: Transform
@@ -19251,11 +19816,31 @@ entities:
- type: Transform
pos: -136.5,31.5
parent: 2
+ - uid: 9787
+ components:
+ - type: Transform
+ pos: -116.5,-29.5
+ parent: 2
+ - uid: 9834
+ components:
+ - type: Transform
+ pos: -73.5,-43.5
+ parent: 2
+ - uid: 9965
+ components:
+ - type: Transform
+ pos: -58.5,-63.5
+ parent: 2
- uid: 9966
components:
- type: Transform
pos: -58.5,-64.5
parent: 2
+ - uid: 9967
+ components:
+ - type: Transform
+ pos: -57.5,-62.5
+ parent: 2
- uid: 10017
components:
- type: Transform
@@ -19266,6 +19851,11 @@ entities:
- type: Transform
pos: -139.5,8.5
parent: 2
+ - uid: 10090
+ components:
+ - type: Transform
+ pos: -82.5,8.5
+ parent: 2
- uid: 10106
components:
- type: Transform
@@ -19286,6 +19876,16 @@ entities:
- type: Transform
pos: -74.5,-31.5
parent: 2
+ - uid: 10123
+ components:
+ - type: Transform
+ pos: -134.5,31.5
+ parent: 2
+ - uid: 10125
+ components:
+ - type: Transform
+ pos: -133.5,31.5
+ parent: 2
- uid: 10126
components:
- type: Transform
@@ -19301,6 +19901,11 @@ entities:
- type: Transform
pos: -130.5,31.5
parent: 2
+ - uid: 10132
+ components:
+ - type: Transform
+ pos: -58.5,-62.5
+ parent: 2
- uid: 10134
components:
- type: Transform
@@ -19321,41 +19926,51 @@ entities:
- type: Transform
pos: -125.5,35.5
parent: 2
- - uid: 10156
+ - uid: 10152
components:
- type: Transform
- pos: -124.5,35.5
+ pos: -112.5,33.5
parent: 2
- - uid: 10167
+ - uid: 10156
components:
- type: Transform
- pos: -58.5,-74.5
+ pos: -124.5,35.5
parent: 2
- uid: 10168
components:
- type: Transform
pos: -114.5,33.5
parent: 2
- - uid: 10171
+ - uid: 10170
components:
- type: Transform
- pos: -60.5,-71.5
+ pos: -111.5,33.5
parent: 2
- - uid: 10172
+ - uid: 10173
components:
- type: Transform
- pos: -60.5,-70.5
+ pos: -113.5,33.5
parent: 2
- uid: 10176
components:
- type: Transform
pos: -115.5,33.5
parent: 2
+ - uid: 10177
+ components:
+ - type: Transform
+ pos: -114.5,34.5
+ parent: 2
- uid: 10179
components:
- type: Transform
pos: -115.5,34.5
parent: 2
+ - uid: 10183
+ components:
+ - type: Transform
+ pos: -115.5,35.5
+ parent: 2
- uid: 10186
components:
- type: Transform
@@ -19391,65 +20006,65 @@ entities:
- type: Transform
pos: -116.5,35.5
parent: 2
- - uid: 10202
+ - uid: 11038
components:
- type: Transform
- pos: -60.5,-68.5
+ pos: -7.5,-45.5
parent: 2
- - uid: 10205
+ - uid: 11039
components:
- type: Transform
- pos: -59.5,-74.5
+ pos: -7.5,-43.5
parent: 2
- - uid: 10254
+ - uid: 11040
components:
- type: Transform
- pos: -59.5,-70.5
+ pos: -7.5,-42.5
parent: 2
- - uid: 10906
+ - uid: 11041
components:
- type: Transform
- pos: -95.5,-11.5
+ pos: -7.5,-41.5
parent: 2
- - uid: 11001
+ - uid: 11042
components:
- type: Transform
- pos: -94.5,-11.5
+ pos: -7.5,-40.5
parent: 2
- - uid: 11038
+ - uid: 11043
components:
- type: Transform
- pos: -7.5,-45.5
+ pos: -7.5,-39.5
parent: 2
- - uid: 11039
+ - uid: 11044
components:
- type: Transform
- pos: -7.5,-43.5
+ pos: -7.5,-44.5
parent: 2
- - uid: 11040
+ - uid: 11066
components:
- type: Transform
- pos: -7.5,-42.5
+ pos: -85.5,-59.5
parent: 2
- - uid: 11041
+ - uid: 11068
components:
- type: Transform
- pos: -7.5,-41.5
+ pos: -87.5,-59.5
parent: 2
- - uid: 11042
+ - uid: 11081
components:
- type: Transform
- pos: -7.5,-40.5
+ pos: -87.5,-60.5
parent: 2
- - uid: 11043
+ - uid: 11083
components:
- type: Transform
- pos: -7.5,-39.5
+ pos: -86.5,-61.5
parent: 2
- - uid: 11044
+ - uid: 11085
components:
- type: Transform
- pos: -7.5,-44.5
+ pos: -86.5,-60.5
parent: 2
- uid: 11112
components:
@@ -19461,6 +20076,11 @@ entities:
- type: Transform
pos: -137.5,30.5
parent: 2
+ - uid: 11115
+ components:
+ - type: Transform
+ pos: -135.5,33.5
+ parent: 2
- uid: 11142
components:
- type: Transform
@@ -19481,6 +20101,11 @@ entities:
- type: Transform
pos: -118.5,-32.5
parent: 2
+ - uid: 11168
+ components:
+ - type: Transform
+ pos: -117.5,-32.5
+ parent: 2
- uid: 11178
components:
- type: Transform
@@ -19506,6 +20131,11 @@ entities:
- type: Transform
pos: -100.5,-52.5
parent: 2
+ - uid: 11791
+ components:
+ - type: Transform
+ pos: -111.5,-35.5
+ parent: 2
- uid: 11881
components:
- type: Transform
@@ -19521,6 +20151,21 @@ entities:
- type: Transform
pos: -100.5,-49.5
parent: 2
+ - uid: 12495
+ components:
+ - type: Transform
+ pos: -50.5,-66.5
+ parent: 2
+ - uid: 12607
+ components:
+ - type: Transform
+ pos: -135.5,32.5
+ parent: 2
+ - uid: 12728
+ components:
+ - type: Transform
+ pos: -72.5,-42.5
+ parent: 2
- uid: 12855
components:
- type: Transform
@@ -19541,11 +20186,6 @@ entities:
- type: Transform
pos: -134.5,34.5
parent: 2
- - uid: 13553
- components:
- - type: Transform
- pos: -96.5,-11.5
- parent: 2
- uid: 13566
components:
- type: Transform
@@ -19561,50 +20201,20 @@ entities:
- type: Transform
pos: -87.5,-54.5
parent: 2
- - uid: 13616
- components:
- - type: Transform
- pos: -98.5,-58.5
- parent: 2
- uid: 13647
components:
- type: Transform
pos: -136.5,-31.5
parent: 2
- - uid: 13658
- components:
- - type: Transform
- pos: -63.5,-72.5
- parent: 2
- - uid: 13685
- components:
- - type: Transform
- pos: -63.5,-71.5
- parent: 2
- - uid: 13691
- components:
- - type: Transform
- pos: -62.5,-71.5
- parent: 2
- - uid: 13692
- components:
- - type: Transform
- pos: -63.5,-73.5
- parent: 2
- - uid: 13730
- components:
- - type: Transform
- pos: -98.5,-60.5
- parent: 2
- - uid: 13732
+ - uid: 13860
components:
- type: Transform
- pos: -98.5,-59.5
+ pos: -138.5,29.5
parent: 2
- - uid: 13860
+ - uid: 13863
components:
- type: Transform
- pos: -138.5,29.5
+ pos: -134.5,33.5
parent: 2
- uid: 13875
components:
@@ -19626,56 +20236,21 @@ entities:
- type: Transform
pos: -139.5,5.5
parent: 2
- - uid: 14013
- components:
- - type: Transform
- pos: -77.5,-64.5
- parent: 2
- uid: 14017
components:
- type: Transform
pos: -139.5,3.5
parent: 2
- - uid: 14020
- components:
- - type: Transform
- pos: -76.5,-58.5
- parent: 2
- - uid: 14021
- components:
- - type: Transform
- pos: -77.5,-58.5
- parent: 2
- - uid: 14023
- components:
- - type: Transform
- pos: -77.5,-60.5
- parent: 2
- uid: 14024
components:
- type: Transform
pos: -139.5,-22.5
parent: 2
- - uid: 14092
- components:
- - type: Transform
- pos: -76.5,-54.5
- parent: 2
- uid: 14095
components:
- type: Transform
pos: -139.5,4.5
parent: 2
- - uid: 14111
- components:
- - type: Transform
- pos: -65.5,-68.5
- parent: 2
- - uid: 14136
- components:
- - type: Transform
- pos: -77.5,-59.5
- parent: 2
- uid: 14173
components:
- type: Transform
@@ -19716,31 +20291,6 @@ entities:
- type: Transform
pos: -82.5,-54.5
parent: 2
- - uid: 14206
- components:
- - type: Transform
- pos: -77.5,-66.5
- parent: 2
- - uid: 14210
- components:
- - type: Transform
- pos: -116.5,-28.5
- parent: 2
- - uid: 14364
- components:
- - type: Transform
- pos: -77.5,-62.5
- parent: 2
- - uid: 14488
- components:
- - type: Transform
- pos: -77.5,-63.5
- parent: 2
- - uid: 14489
- components:
- - type: Transform
- pos: -77.5,-65.5
- parent: 2
- uid: 14616
components:
- type: Transform
@@ -19756,170 +20306,100 @@ entities:
- type: Transform
pos: -136.5,7.5
parent: 2
- - uid: 14655
- components:
- - type: Transform
- pos: -71.5,-46.5
- parent: 2
- uid: 14656
components:
- type: Transform
pos: -73.5,-33.5
parent: 2
- - uid: 14659
- components:
- - type: Transform
- pos: -71.5,-45.5
- parent: 2
- - uid: 14701
- components:
- - type: Transform
- pos: -16.5,-52.5
- parent: 2
- - uid: 14707
- components:
- - type: Transform
- pos: -16.5,-48.5
- parent: 2
- - uid: 14716
- components:
- - type: Transform
- pos: -16.5,-53.5
- parent: 2
- - uid: 14723
- components:
- - type: Transform
- pos: -16.5,-50.5
- parent: 2
- - uid: 14755
- components:
- - type: Transform
- pos: -71.5,-44.5
- parent: 2
- - uid: 14772
- components:
- - type: Transform
- pos: -83.5,-77.5
- parent: 2
- - uid: 14773
- components:
- - type: Transform
- pos: -74.5,-34.5
- parent: 2
- - uid: 14776
+ - uid: 14756
components:
- type: Transform
- pos: -118.5,-29.5
+ pos: -101.5,1.5
parent: 2
- - uid: 14778
+ - uid: 14757
components:
- type: Transform
- pos: -71.5,-42.5
+ pos: -101.5,2.5
parent: 2
- - uid: 14782
+ - uid: 14758
components:
- type: Transform
- pos: -71.5,-41.5
+ pos: -101.5,0.5
parent: 2
- - uid: 14835
+ - uid: 14759
components:
- type: Transform
- pos: -115.5,-34.5
+ pos: -100.5,3.5
parent: 2
- uid: 15015
components:
- type: Transform
pos: -73.5,-30.5
parent: 2
- - uid: 15068
- components:
- - type: Transform
- pos: -99.5,-6.5
- parent: 2
- uid: 15099
components:
- type: Transform
pos: -92.5,-15.5
parent: 2
- - uid: 15251
- components:
- - type: Transform
- pos: -58.5,-73.5
- parent: 2
- - uid: 15257
- components:
- - type: Transform
- pos: -77.5,-70.5
- parent: 2
- - uid: 15263
- components:
- - type: Transform
- pos: -61.5,-69.5
- parent: 2
- - uid: 15326
- components:
- - type: Transform
- pos: -16.5,-51.5
- parent: 2
- - uid: 15342
+ - uid: 15743
components:
- type: Transform
- pos: -76.5,-70.5
+ pos: -73.5,-44.5
parent: 2
- - uid: 15590
+ - uid: 15921
components:
- type: Transform
- pos: -59.5,-68.5
+ pos: -92.5,-9.5
parent: 2
- - uid: 16003
+ - uid: 16068
components:
- type: Transform
- pos: -116.5,-34.5
+ pos: -74.5,-47.5
parent: 2
- - uid: 16006
+ - uid: 16089
components:
- type: Transform
- pos: -81.5,-77.5
+ pos: -124.5,-28.5
parent: 2
- - uid: 16019
+ - uid: 16097
components:
- type: Transform
- pos: -90.5,-1.5
+ pos: -94.5,-73.5
parent: 2
- - uid: 16021
+ - uid: 16100
components:
- type: Transform
- pos: -91.5,2.5
+ pos: -99.5,-66.5
parent: 2
- - uid: 16025
+ - uid: 16103
components:
- type: Transform
- pos: -90.5,-4.5
+ pos: -98.5,-66.5
parent: 2
- - uid: 16031
+ - uid: 16104
components:
- type: Transform
- pos: -56.5,-64.5
+ pos: -97.5,-65.5
parent: 2
- - uid: 16032
+ - uid: 16105
components:
- type: Transform
- pos: -83.5,-59.5
+ pos: -97.5,-66.5
parent: 2
- - uid: 16089
+ - uid: 16117
components:
- type: Transform
- pos: -124.5,-28.5
+ pos: -99.5,-67.5
parent: 2
- - uid: 16097
+ - uid: 16118
components:
- type: Transform
- pos: -94.5,-73.5
+ pos: -98.5,-67.5
parent: 2
- - uid: 16115
+ - uid: 16119
components:
- type: Transform
- pos: -82.5,-59.5
+ pos: -97.5,-67.5
parent: 2
- uid: 16121
components:
@@ -19986,6 +20466,26 @@ entities:
- type: Transform
pos: -98.5,-70.5
parent: 2
+ - uid: 16144
+ components:
+ - type: Transform
+ pos: -87.5,-70.5
+ parent: 2
+ - uid: 16145
+ components:
+ - type: Transform
+ pos: -85.5,-70.5
+ parent: 2
+ - uid: 16146
+ components:
+ - type: Transform
+ pos: -86.5,-70.5
+ parent: 2
+ - uid: 16147
+ components:
+ - type: Transform
+ pos: -84.5,-70.5
+ parent: 2
- uid: 16148
components:
- type: Transform
@@ -20006,6 +20506,16 @@ entities:
- type: Transform
pos: -94.5,-70.5
parent: 2
+ - uid: 16156
+ components:
+ - type: Transform
+ pos: -83.5,-72.5
+ parent: 2
+ - uid: 16158
+ components:
+ - type: Transform
+ pos: -82.5,-71.5
+ parent: 2
- uid: 16159
components:
- type: Transform
@@ -20026,10 +20536,45 @@ entities:
- type: Transform
pos: -97.5,-71.5
parent: 2
- - uid: 16182
+ - uid: 16167
components:
- type: Transform
- pos: -90.5,-6.5
+ pos: -86.5,-71.5
+ parent: 2
+ - uid: 16168
+ components:
+ - type: Transform
+ pos: -86.5,-72.5
+ parent: 2
+ - uid: 16170
+ components:
+ - type: Transform
+ pos: -85.5,-71.5
+ parent: 2
+ - uid: 16171
+ components:
+ - type: Transform
+ pos: -85.5,-72.5
+ parent: 2
+ - uid: 16172
+ components:
+ - type: Transform
+ pos: -84.5,-72.5
+ parent: 2
+ - uid: 16173
+ components:
+ - type: Transform
+ pos: -84.5,-71.5
+ parent: 2
+ - uid: 16174
+ components:
+ - type: Transform
+ pos: -83.5,-71.5
+ parent: 2
+ - uid: 16195
+ components:
+ - type: Transform
+ pos: -80.5,-73.5
parent: 2
- uid: 16197
components:
@@ -20046,6 +20591,56 @@ entities:
- type: Transform
pos: -97.5,-73.5
parent: 2
+ - uid: 16209
+ components:
+ - type: Transform
+ pos: -86.5,-73.5
+ parent: 2
+ - uid: 16210
+ components:
+ - type: Transform
+ pos: -85.5,-73.5
+ parent: 2
+ - uid: 16211
+ components:
+ - type: Transform
+ pos: -84.5,-73.5
+ parent: 2
+ - uid: 16216
+ components:
+ - type: Transform
+ pos: -86.5,-74.5
+ parent: 2
+ - uid: 16217
+ components:
+ - type: Transform
+ pos: -84.5,-74.5
+ parent: 2
+ - uid: 16219
+ components:
+ - type: Transform
+ pos: -87.5,-74.5
+ parent: 2
+ - uid: 16222
+ components:
+ - type: Transform
+ pos: -80.5,-74.5
+ parent: 2
+ - uid: 16223
+ components:
+ - type: Transform
+ pos: -79.5,-74.5
+ parent: 2
+ - uid: 16224
+ components:
+ - type: Transform
+ pos: -78.5,-74.5
+ parent: 2
+ - uid: 16225
+ components:
+ - type: Transform
+ pos: -85.5,-74.5
+ parent: 2
- uid: 16226
components:
- type: Transform
@@ -20056,16 +20651,46 @@ entities:
- type: Transform
pos: -96.5,-74.5
parent: 2
+ - uid: 16230
+ components:
+ - type: Transform
+ pos: -92.5,-74.5
+ parent: 2
- uid: 16231
components:
- type: Transform
pos: -91.5,-74.5
parent: 2
+ - uid: 16237
+ components:
+ - type: Transform
+ pos: -87.5,-75.5
+ parent: 2
- uid: 16239
components:
- type: Transform
pos: -86.5,-75.5
parent: 2
+ - uid: 16240
+ components:
+ - type: Transform
+ pos: -85.5,-75.5
+ parent: 2
+ - uid: 16242
+ components:
+ - type: Transform
+ pos: -84.5,-75.5
+ parent: 2
+ - uid: 16244
+ components:
+ - type: Transform
+ pos: -80.5,-75.5
+ parent: 2
+ - uid: 16245
+ components:
+ - type: Transform
+ pos: -79.5,-75.5
+ parent: 2
- uid: 16246
components:
- type: Transform
@@ -20081,6 +20706,36 @@ entities:
- type: Transform
pos: -94.5,-75.5
parent: 2
+ - uid: 16250
+ components:
+ - type: Transform
+ pos: -91.5,-75.5
+ parent: 2
+ - uid: 16251
+ components:
+ - type: Transform
+ pos: -90.5,-75.5
+ parent: 2
+ - uid: 16252
+ components:
+ - type: Transform
+ pos: -89.5,-75.5
+ parent: 2
+ - uid: 16253
+ components:
+ - type: Transform
+ pos: -88.5,-75.5
+ parent: 2
+ - uid: 16254
+ components:
+ - type: Transform
+ pos: -77.5,-76.5
+ parent: 2
+ - uid: 16255
+ components:
+ - type: Transform
+ pos: -75.5,-76.5
+ parent: 2
- uid: 16257
components:
- type: Transform
@@ -20096,6 +20751,11 @@ entities:
- type: Transform
pos: -84.5,-76.5
parent: 2
+ - uid: 16265
+ components:
+ - type: Transform
+ pos: -76.5,-76.5
+ parent: 2
- uid: 16266
components:
- type: Transform
@@ -20141,40 +20801,65 @@ entities:
- type: Transform
pos: -84.5,-77.5
parent: 2
+ - uid: 16286
+ components:
+ - type: Transform
+ pos: -80.5,-77.5
+ parent: 2
- uid: 16287
components:
- type: Transform
- pos: -99.5,-5.5
+ pos: -79.5,-77.5
+ parent: 2
+ - uid: 16288
+ components:
+ - type: Transform
+ pos: -78.5,-77.5
parent: 2
- uid: 16289
components:
- type: Transform
- pos: -90.5,-5.5
+ pos: -77.5,-77.5
+ parent: 2
+ - uid: 16290
+ components:
+ - type: Transform
+ pos: -76.5,-77.5
+ parent: 2
+ - uid: 16291
+ components:
+ - type: Transform
+ pos: -75.5,-77.5
parent: 2
- uid: 16294
components:
- type: Transform
pos: -136.5,-23.5
parent: 2
+ - uid: 16298
+ components:
+ - type: Transform
+ pos: -71.5,-78.5
+ parent: 2
- uid: 16299
components:
- type: Transform
- pos: -90.5,-3.5
+ pos: -69.5,-78.5
parent: 2
- - uid: 16301
+ - uid: 16302
components:
- type: Transform
- pos: -99.5,-4.5
+ pos: -70.5,-78.5
parent: 2
- - uid: 16305
+ - uid: 16304
components:
- type: Transform
- pos: -87.5,-78.5
+ pos: -70.5,-75.5
parent: 2
- - uid: 16307
+ - uid: 16305
components:
- type: Transform
- pos: -99.5,-3.5
+ pos: -87.5,-78.5
parent: 2
- uid: 16308
components:
@@ -20196,10 +20881,15 @@ entities:
- type: Transform
pos: -73.5,-78.5
parent: 2
- - uid: 16314
+ - uid: 16313
components:
- type: Transform
- pos: -89.5,-78.5
+ pos: -72.5,-78.5
+ parent: 2
+ - uid: 16314
+ components:
+ - type: Transform
+ pos: -89.5,-78.5
parent: 2
- uid: 16315
components:
@@ -20211,6 +20901,46 @@ entities:
- type: Transform
pos: -86.5,-78.5
parent: 2
+ - uid: 16330
+ components:
+ - type: Transform
+ pos: -69.5,-79.5
+ parent: 2
+ - uid: 16331
+ components:
+ - type: Transform
+ pos: -68.5,-79.5
+ parent: 2
+ - uid: 16332
+ components:
+ - type: Transform
+ pos: -67.5,-79.5
+ parent: 2
+ - uid: 16333
+ components:
+ - type: Transform
+ pos: -65.5,-79.5
+ parent: 2
+ - uid: 16334
+ components:
+ - type: Transform
+ pos: -66.5,-79.5
+ parent: 2
+ - uid: 16335
+ components:
+ - type: Transform
+ pos: -64.5,-79.5
+ parent: 2
+ - uid: 16337
+ components:
+ - type: Transform
+ pos: -63.5,-79.5
+ parent: 2
+ - uid: 16338
+ components:
+ - type: Transform
+ pos: -62.5,-79.5
+ parent: 2
- uid: 16339
components:
- type: Transform
@@ -20336,6 +21066,21 @@ entities:
- type: Transform
pos: -66.5,-81.5
parent: 2
+ - uid: 16381
+ components:
+ - type: Transform
+ pos: -87.5,-61.5
+ parent: 2
+ - uid: 16382
+ components:
+ - type: Transform
+ pos: -86.5,-59.5
+ parent: 2
+ - uid: 16383
+ components:
+ - type: Transform
+ pos: -85.5,-60.5
+ parent: 2
- uid: 16384
components:
- type: Transform
@@ -20349,13 +21094,33 @@ entities:
- uid: 16388
components:
- type: Transform
- pos: -106.5,-35.5
+ pos: -81.5,-60.5
+ parent: 2
+ - uid: 16389
+ components:
+ - type: Transform
+ pos: -82.5,-60.5
parent: 2
- uid: 16390
components:
- type: Transform
pos: -83.5,-61.5
parent: 2
+ - uid: 16391
+ components:
+ - type: Transform
+ pos: -85.5,-61.5
+ parent: 2
+ - uid: 16424
+ components:
+ - type: Transform
+ pos: -82.5,-61.5
+ parent: 2
+ - uid: 16425
+ components:
+ - type: Transform
+ pos: -82.5,-62.5
+ parent: 2
- uid: 16426
components:
- type: Transform
@@ -20391,6 +21156,11 @@ entities:
- type: Transform
pos: -78.5,-63.5
parent: 2
+ - uid: 16433
+ components:
+ - type: Transform
+ pos: -79.5,-58.5
+ parent: 2
- uid: 16434
components:
- type: Transform
@@ -20411,26 +21181,61 @@ entities:
- type: Transform
pos: -79.5,-61.5
parent: 2
+ - uid: 16438
+ components:
+ - type: Transform
+ pos: -80.5,-58.5
+ parent: 2
- uid: 16439
components:
- type: Transform
- pos: -100.5,-3.5
+ pos: -80.5,-59.5
parent: 2
- uid: 16440
components:
- type: Transform
pos: -79.5,-62.5
parent: 2
+ - uid: 16441
+ components:
+ - type: Transform
+ pos: -80.5,-60.5
+ parent: 2
+ - uid: 16442
+ components:
+ - type: Transform
+ pos: -80.5,-61.5
+ parent: 2
+ - uid: 16443
+ components:
+ - type: Transform
+ pos: -80.5,-62.5
+ parent: 2
- uid: 16444
components:
- type: Transform
pos: -80.5,-63.5
parent: 2
+ - uid: 16445
+ components:
+ - type: Transform
+ pos: -101.5,-58.5
+ parent: 2
+ - uid: 16448
+ components:
+ - type: Transform
+ pos: -81.5,-61.5
+ parent: 2
- uid: 16449
components:
- type: Transform
pos: -79.5,-63.5
parent: 2
+ - uid: 16450
+ components:
+ - type: Transform
+ pos: -81.5,-62.5
+ parent: 2
- uid: 16451
components:
- type: Transform
@@ -20591,11 +21396,51 @@ entities:
- type: Transform
pos: -48.5,-79.5
parent: 2
+ - uid: 16657
+ components:
+ - type: Transform
+ pos: -80.5,-69.5
+ parent: 2
+ - uid: 16658
+ components:
+ - type: Transform
+ pos: -80.5,-68.5
+ parent: 2
+ - uid: 16659
+ components:
+ - type: Transform
+ pos: -79.5,-67.5
+ parent: 2
- uid: 16660
components:
- type: Transform
pos: -81.5,-64.5
parent: 2
+ - uid: 16661
+ components:
+ - type: Transform
+ pos: -80.5,-70.5
+ parent: 2
+ - uid: 16662
+ components:
+ - type: Transform
+ pos: -81.5,-65.5
+ parent: 2
+ - uid: 16663
+ components:
+ - type: Transform
+ pos: -81.5,-66.5
+ parent: 2
+ - uid: 16664
+ components:
+ - type: Transform
+ pos: -81.5,-68.5
+ parent: 2
+ - uid: 16665
+ components:
+ - type: Transform
+ pos: -81.5,-69.5
+ parent: 2
- uid: 16666
components:
- type: Transform
@@ -20606,6 +21451,41 @@ entities:
- type: Transform
pos: -82.5,-64.5
parent: 2
+ - uid: 16668
+ components:
+ - type: Transform
+ pos: -82.5,-65.5
+ parent: 2
+ - uid: 16669
+ components:
+ - type: Transform
+ pos: -82.5,-66.5
+ parent: 2
+ - uid: 16670
+ components:
+ - type: Transform
+ pos: -81.5,-67.5
+ parent: 2
+ - uid: 16671
+ components:
+ - type: Transform
+ pos: -82.5,-67.5
+ parent: 2
+ - uid: 16672
+ components:
+ - type: Transform
+ pos: -82.5,-68.5
+ parent: 2
+ - uid: 16673
+ components:
+ - type: Transform
+ pos: -82.5,-69.5
+ parent: 2
+ - uid: 16674
+ components:
+ - type: Transform
+ pos: -82.5,-70.5
+ parent: 2
- uid: 16675
components:
- type: Transform
@@ -20636,70 +21516,235 @@ entities:
- type: Transform
pos: -79.5,-64.5
parent: 2
+ - uid: 16683
+ components:
+ - type: Transform
+ pos: -79.5,-65.5
+ parent: 2
+ - uid: 16684
+ components:
+ - type: Transform
+ pos: -79.5,-66.5
+ parent: 2
+ - uid: 16685
+ components:
+ - type: Transform
+ pos: -79.5,-68.5
+ parent: 2
+ - uid: 16688
+ components:
+ - type: Transform
+ pos: -80.5,-65.5
+ parent: 2
- uid: 16689
components:
- type: Transform
pos: -80.5,-64.5
parent: 2
+ - uid: 16690
+ components:
+ - type: Transform
+ pos: -80.5,-66.5
+ parent: 2
+ - uid: 16691
+ components:
+ - type: Transform
+ pos: -80.5,-67.5
+ parent: 2
+ - uid: 16692
+ components:
+ - type: Transform
+ pos: -81.5,-71.5
+ parent: 2
+ - uid: 16694
+ components:
+ - type: Transform
+ pos: -80.5,-72.5
+ parent: 2
+ - uid: 16696
+ components:
+ - type: Transform
+ pos: -78.5,-70.5
+ parent: 2
+ - uid: 16697
+ components:
+ - type: Transform
+ pos: -78.5,-71.5
+ parent: 2
+ - uid: 16698
+ components:
+ - type: Transform
+ pos: -78.5,-72.5
+ parent: 2
+ - uid: 16699
+ components:
+ - type: Transform
+ pos: -77.5,-71.5
+ parent: 2
+ - uid: 16700
+ components:
+ - type: Transform
+ pos: -75.5,-71.5
+ parent: 2
+ - uid: 16701
+ components:
+ - type: Transform
+ pos: -80.5,-71.5
+ parent: 2
+ - uid: 16702
+ components:
+ - type: Transform
+ pos: -77.5,-72.5
+ parent: 2
+ - uid: 16706
+ components:
+ - type: Transform
+ pos: -74.5,-71.5
+ parent: 2
+ - uid: 16709
+ components:
+ - type: Transform
+ pos: -71.5,-76.5
+ parent: 2
- uid: 16715
components:
- type: Transform
pos: -64.5,-73.5
parent: 2
- - uid: 16729
+ - uid: 16719
+ components:
+ - type: Transform
+ pos: -77.5,-70.5
+ parent: 2
+ - uid: 16720
components:
- type: Transform
- pos: -74.5,-67.5
+ pos: -77.5,-73.5
+ parent: 2
+ - uid: 16724
+ components:
+ - type: Transform
+ pos: -72.5,-74.5
+ parent: 2
+ - uid: 16732
+ components:
+ - type: Transform
+ pos: -70.5,-68.5
parent: 2
- uid: 16734
components:
- type: Transform
- pos: -62.5,-75.5
+ pos: -70.5,-69.5
parent: 2
- uid: 16735
components:
- type: Transform
- pos: -62.5,-70.5
+ pos: -70.5,-71.5
parent: 2
- uid: 16736
components:
- type: Transform
- pos: -59.5,-72.5
+ pos: -70.5,-70.5
parent: 2
- uid: 16737
components:
- type: Transform
- pos: -59.5,-71.5
+ pos: -70.5,-72.5
parent: 2
- uid: 16739
components:
- type: Transform
- pos: -58.5,-67.5
+ pos: -69.5,-69.5
+ parent: 2
+ - uid: 16742
+ components:
+ - type: Transform
+ pos: -71.5,-69.5
parent: 2
- uid: 16743
components:
- type: Transform
- pos: -57.5,-67.5
+ pos: -71.5,-70.5
parent: 2
- uid: 16744
components:
- type: Transform
- pos: -59.5,-67.5
+ pos: -71.5,-71.5
+ parent: 2
+ - uid: 16745
+ components:
+ - type: Transform
+ pos: -71.5,-68.5
parent: 2
- uid: 16749
components:
- type: Transform
- pos: -60.5,-67.5
+ pos: -74.5,-70.5
+ parent: 2
+ - uid: 16750
+ components:
+ - type: Transform
+ pos: -72.5,-68.5
+ parent: 2
+ - uid: 16751
+ components:
+ - type: Transform
+ pos: -72.5,-70.5
+ parent: 2
+ - uid: 16753
+ components:
+ - type: Transform
+ pos: -72.5,-69.5
+ parent: 2
+ - uid: 16754
+ components:
+ - type: Transform
+ pos: -72.5,-76.5
+ parent: 2
+ - uid: 16758
+ components:
+ - type: Transform
+ pos: -73.5,-69.5
+ parent: 2
+ - uid: 16759
+ components:
+ - type: Transform
+ pos: -73.5,-70.5
+ parent: 2
+ - uid: 16760
+ components:
+ - type: Transform
+ pos: -75.5,-70.5
+ parent: 2
+ - uid: 16765
+ components:
+ - type: Transform
+ pos: -74.5,-69.5
+ parent: 2
+ - uid: 16768
+ components:
+ - type: Transform
+ pos: -75.5,-75.5
+ parent: 2
+ - uid: 16771
+ components:
+ - type: Transform
+ pos: -75.5,-69.5
+ parent: 2
+ - uid: 16772
+ components:
+ - type: Transform
+ pos: -77.5,-68.5
parent: 2
- uid: 16774
components:
- type: Transform
- pos: -61.5,-68.5
+ pos: -77.5,-74.5
parent: 2
- uid: 16781
components:
- type: Transform
- pos: -75.5,-70.5
+ pos: -70.5,-74.5
parent: 2
- uid: 16782
components:
@@ -20734,7 +21779,7 @@ entities:
- uid: 16790
components:
- type: Transform
- pos: -73.5,-69.5
+ pos: -70.5,-73.5
parent: 2
- uid: 16791
components:
@@ -20744,18 +21789,88 @@ entities:
- uid: 16801
components:
- type: Transform
- pos: -62.5,-69.5
+ pos: -65.5,-68.5
parent: 2
- uid: 16803
components:
- type: Transform
- pos: -61.5,-71.5
+ pos: -65.5,-69.5
+ parent: 2
+ - uid: 16805
+ components:
+ - type: Transform
+ pos: -73.5,-76.5
+ parent: 2
+ - uid: 16814
+ components:
+ - type: Transform
+ pos: -75.5,-74.5
+ parent: 2
+ - uid: 16815
+ components:
+ - type: Transform
+ pos: -69.5,-68.5
+ parent: 2
+ - uid: 16817
+ components:
+ - type: Transform
+ pos: -70.5,-76.5
+ parent: 2
+ - uid: 16819
+ components:
+ - type: Transform
+ pos: -73.5,-74.5
+ parent: 2
+ - uid: 16827
+ components:
+ - type: Transform
+ pos: -74.5,-74.5
+ parent: 2
+ - uid: 16830
+ components:
+ - type: Transform
+ pos: -75.5,-73.5
parent: 2
- uid: 16831
components:
- type: Transform
pos: -127.5,19.5
parent: 2
+ - uid: 16835
+ components:
+ - type: Transform
+ pos: -47.5,-66.5
+ parent: 2
+ - uid: 16837
+ components:
+ - type: Transform
+ pos: -49.5,-67.5
+ parent: 2
+ - uid: 16845
+ components:
+ - type: Transform
+ pos: -49.5,-68.5
+ parent: 2
+ - uid: 16862
+ components:
+ - type: Transform
+ pos: -92.5,-72.5
+ parent: 2
+ - uid: 16863
+ components:
+ - type: Transform
+ pos: -92.5,-73.5
+ parent: 2
+ - uid: 16902
+ components:
+ - type: Transform
+ pos: -51.5,-72.5
+ parent: 2
+ - uid: 16913
+ components:
+ - type: Transform
+ pos: -73.5,-40.5
+ parent: 2
- uid: 16918
components:
- type: Transform
@@ -20786,16 +21901,136 @@ entities:
- type: Transform
pos: -49.5,-77.5
parent: 2
+ - uid: 16935
+ components:
+ - type: Transform
+ pos: -52.5,-76.5
+ parent: 2
- uid: 16937
components:
- type: Transform
pos: -53.5,-77.5
parent: 2
+ - uid: 16938
+ components:
+ - type: Transform
+ pos: -62.5,-77.5
+ parent: 2
+ - uid: 16949
+ components:
+ - type: Transform
+ pos: -64.5,-76.5
+ parent: 2
+ - uid: 16952
+ components:
+ - type: Transform
+ pos: -64.5,-77.5
+ parent: 2
+ - uid: 16953
+ components:
+ - type: Transform
+ pos: -63.5,-77.5
+ parent: 2
+ - uid: 16968
+ components:
+ - type: Transform
+ pos: -65.5,-78.5
+ parent: 2
+ - uid: 16969
+ components:
+ - type: Transform
+ pos: -59.5,-78.5
+ parent: 2
+ - uid: 16970
+ components:
+ - type: Transform
+ pos: -64.5,-78.5
+ parent: 2
+ - uid: 16971
+ components:
+ - type: Transform
+ pos: -63.5,-78.5
+ parent: 2
+ - uid: 16972
+ components:
+ - type: Transform
+ pos: -61.5,-78.5
+ parent: 2
+ - uid: 16973
+ components:
+ - type: Transform
+ pos: -60.5,-78.5
+ parent: 2
+ - uid: 16975
+ components:
+ - type: Transform
+ pos: -62.5,-78.5
+ parent: 2
+ - uid: 16979
+ components:
+ - type: Transform
+ pos: -61.5,-79.5
+ parent: 2
+ - uid: 16983
+ components:
+ - type: Transform
+ pos: -47.5,-73.5
+ parent: 2
+ - uid: 16988
+ components:
+ - type: Transform
+ pos: -57.5,-67.5
+ parent: 2
+ - uid: 16991
+ components:
+ - type: Transform
+ pos: -47.5,-72.5
+ parent: 2
+ - uid: 16992
+ components:
+ - type: Transform
+ pos: -47.5,-71.5
+ parent: 2
+ - uid: 17000
+ components:
+ - type: Transform
+ pos: -48.5,-72.5
+ parent: 2
+ - uid: 17004
+ components:
+ - type: Transform
+ pos: -49.5,-72.5
+ parent: 2
+ - uid: 17009
+ components:
+ - type: Transform
+ pos: -50.5,-72.5
+ parent: 2
+ - uid: 17082
+ components:
+ - type: Transform
+ pos: -47.5,-74.5
+ parent: 2
+ - uid: 17120
+ components:
+ - type: Transform
+ pos: -56.5,-64.5
+ parent: 2
- uid: 17121
components:
- type: Transform
pos: -57.5,-64.5
parent: 2
+ - uid: 17122
+ components:
+ - type: Transform
+ pos: -56.5,-63.5
+ parent: 2
+ - uid: 17128
+ components:
+ - type: Transform
+ pos: -57.5,-63.5
+ parent: 2
- uid: 17144
components:
- type: Transform
@@ -20816,15 +22051,80 @@ entities:
- type: Transform
pos: -136.5,5.5
parent: 2
+ - uid: 17178
+ components:
+ - type: Transform
+ pos: -47.5,-65.5
+ parent: 2
+ - uid: 17182
+ components:
+ - type: Transform
+ pos: -47.5,-70.5
+ parent: 2
+ - uid: 17188
+ components:
+ - type: Transform
+ pos: -51.5,-69.5
+ parent: 2
- uid: 17189
components:
- type: Transform
- pos: -79.5,-70.5
+ pos: -50.5,-69.5
+ parent: 2
+ - uid: 17190
+ components:
+ - type: Transform
+ pos: -49.5,-69.5
+ parent: 2
+ - uid: 17192
+ components:
+ - type: Transform
+ pos: -50.5,-67.5
parent: 2
- uid: 17195
components:
- type: Transform
- pos: -79.5,-71.5
+ pos: -50.5,-68.5
+ parent: 2
+ - uid: 17198
+ components:
+ - type: Transform
+ pos: -52.5,-67.5
+ parent: 2
+ - uid: 17199
+ components:
+ - type: Transform
+ pos: -53.5,-67.5
+ parent: 2
+ - uid: 17200
+ components:
+ - type: Transform
+ pos: -50.5,-70.5
+ parent: 2
+ - uid: 17201
+ components:
+ - type: Transform
+ pos: -51.5,-70.5
+ parent: 2
+ - uid: 17207
+ components:
+ - type: Transform
+ pos: -49.5,-70.5
+ parent: 2
+ - uid: 17209
+ components:
+ - type: Transform
+ pos: -47.5,-67.5
+ parent: 2
+ - uid: 17211
+ components:
+ - type: Transform
+ pos: -59.5,-67.5
+ parent: 2
+ - uid: 17216
+ components:
+ - type: Transform
+ pos: -60.5,-67.5
parent: 2
- uid: 17340
components:
@@ -20871,6 +22171,11 @@ entities:
- type: Transform
pos: -70.5,-67.5
parent: 2
+ - uid: 17546
+ components:
+ - type: Transform
+ pos: -77.5,-60.5
+ parent: 2
- uid: 17549
components:
- type: Transform
@@ -20896,20 +22201,40 @@ entities:
- type: Transform
pos: -21.5,-62.5
parent: 2
- - uid: 18043
+ - uid: 17610
components:
- type: Transform
- pos: -81.5,-76.5
+ pos: -21.5,-66.5
parent: 2
- - uid: 18074
+ - uid: 17611
components:
- type: Transform
- pos: -79.5,-76.5
+ pos: -21.5,-65.5
parent: 2
- - uid: 18216
+ - uid: 17658
components:
- type: Transform
- pos: -49.5,-67.5
+ pos: -13.5,-60.5
+ parent: 2
+ - uid: 17746
+ components:
+ - type: Transform
+ pos: -13.5,-61.5
+ parent: 2
+ - uid: 17747
+ components:
+ - type: Transform
+ pos: -21.5,-64.5
+ parent: 2
+ - uid: 17808
+ components:
+ - type: Transform
+ pos: -66.5,-67.5
+ parent: 2
+ - uid: 18241
+ components:
+ - type: Transform
+ pos: -62.5,-67.5
parent: 2
- uid: 18246
components:
@@ -20921,25 +22246,25 @@ entities:
- type: Transform
pos: -118.5,-34.5
parent: 2
- - uid: 18404
+ - uid: 18268
components:
- type: Transform
- pos: -56.5,-67.5
+ pos: -117.5,-31.5
parent: 2
- - uid: 18601
+ - uid: 18275
components:
- type: Transform
- pos: -50.5,-66.5
+ pos: -116.5,-31.5
parent: 2
- - uid: 18702
+ - uid: 18747
components:
- type: Transform
- pos: -93.5,-59.5
+ pos: -58.5,-67.5
parent: 2
- - uid: 18713
+ - uid: 18822
components:
- type: Transform
- pos: -118.5,-28.5
+ pos: -77.5,-61.5
parent: 2
- uid: 18830
components:
@@ -20951,20 +22276,25 @@ entities:
- type: Transform
pos: -108.5,-55.5
parent: 2
- - uid: 18864
+ - uid: 18901
components:
- type: Transform
- pos: -83.5,-60.5
+ pos: -109.5,-54.5
parent: 2
- - uid: 18901
+ - uid: 18909
components:
- type: Transform
- pos: -109.5,-54.5
+ pos: -132.5,-29.5
parent: 2
- - uid: 18955
+ - uid: 18949
components:
- type: Transform
- pos: -100.5,-2.5
+ pos: -77.5,-67.5
+ parent: 2
+ - uid: 18951
+ components:
+ - type: Transform
+ pos: -77.5,-66.5
parent: 2
- uid: 18971
components:
@@ -21016,20 +22346,40 @@ entities:
- type: Transform
pos: -134.5,-28.5
parent: 2
- - uid: 19720
+ - uid: 19507
components:
- type: Transform
- pos: -90.5,-2.5
+ pos: -77.5,-63.5
+ parent: 2
+ - uid: 19540
+ components:
+ - type: Transform
+ pos: -77.5,-64.5
+ parent: 2
+ - uid: 19637
+ components:
+ - type: Transform
+ pos: -77.5,-62.5
+ parent: 2
+ - uid: 19719
+ components:
+ - type: Transform
+ pos: -77.5,-65.5
parent: 2
- uid: 19749
components:
- type: Transform
pos: -98.5,-15.5
parent: 2
- - uid: 20037
+ - uid: 19762
+ components:
+ - type: Transform
+ pos: -99.5,-9.5
+ parent: 2
+ - uid: 20028
components:
- type: Transform
- pos: -84.5,-58.5
+ pos: -16.5,12.5
parent: 2
- uid: 20081
components:
@@ -21041,11 +22391,6 @@ entities:
- type: Transform
pos: -106.5,33.5
parent: 2
- - uid: 20280
- components:
- - type: Transform
- pos: -77.5,-61.5
- parent: 2
- uid: 20312
components:
- type: Transform
@@ -21106,6 +22451,11 @@ entities:
- type: Transform
pos: -124.5,36.5
parent: 2
+ - uid: 20459
+ components:
+ - type: Transform
+ pos: -115.5,37.5
+ parent: 2
- uid: 20465
components:
- type: Transform
@@ -21116,26 +22466,61 @@ entities:
- type: Transform
pos: -116.5,36.5
parent: 2
- - uid: 20894
+ - uid: 20893
components:
- type: Transform
- pos: -111.5,38.5
+ pos: -114.5,37.5
parent: 2
- - uid: 20945
+ - uid: 20894
components:
- type: Transform
- pos: -48.5,-65.5
+ pos: -111.5,38.5
parent: 2
- uid: 21001
components:
- type: Transform
pos: -117.5,37.5
parent: 2
+ - uid: 21333
+ components:
+ - type: Transform
+ pos: -12.5,-57.5
+ parent: 2
+ - uid: 21357
+ components:
+ - type: Transform
+ pos: -22.5,-67.5
+ parent: 2
+ - uid: 21358
+ components:
+ - type: Transform
+ pos: -19.5,-57.5
+ parent: 2
+ - uid: 21423
+ components:
+ - type: Transform
+ pos: -90.5,-69.5
+ parent: 2
+ - uid: 21424
+ components:
+ - type: Transform
+ pos: -91.5,-70.5
+ parent: 2
- uid: 21426
components:
- type: Transform
pos: -93.5,-70.5
parent: 2
+ - uid: 21427
+ components:
+ - type: Transform
+ pos: -89.5,-69.5
+ parent: 2
+ - uid: 21431
+ components:
+ - type: Transform
+ pos: -88.5,-69.5
+ parent: 2
- uid: 21443
components:
- type: Transform
@@ -21146,6 +22531,11 @@ entities:
- type: Transform
pos: -123.5,36.5
parent: 2
+ - uid: 21458
+ components:
+ - type: Transform
+ pos: -115.5,36.5
+ parent: 2
- uid: 21460
components:
- type: Transform
@@ -21161,11 +22551,26 @@ entities:
- type: Transform
pos: -110.5,38.5
parent: 2
+ - uid: 21487
+ components:
+ - type: Transform
+ pos: -109.5,35.5
+ parent: 2
+ - uid: 21565
+ components:
+ - type: Transform
+ pos: -19.5,-58.5
+ parent: 2
- uid: 21597
components:
- type: Transform
pos: -18.5,-62.5
parent: 2
+ - uid: 21598
+ components:
+ - type: Transform
+ pos: -12.5,-56.5
+ parent: 2
- uid: 21599
components:
- type: Transform
@@ -21176,10 +22581,20 @@ entities:
- type: Transform
pos: -11.5,-54.5
parent: 2
- - uid: 21673
+ - uid: 21601
components:
- type: Transform
- pos: -77.5,-54.5
+ pos: -22.5,-64.5
+ parent: 2
+ - uid: 21770
+ components:
+ - type: Transform
+ pos: -110.5,37.5
+ parent: 2
+ - uid: 21771
+ components:
+ - type: Transform
+ pos: -109.5,34.5
parent: 2
- uid: 21772
components:
@@ -21201,6 +22616,16 @@ entities:
- type: Transform
pos: -106.5,-39.5
parent: 2
+ - uid: 21862
+ components:
+ - type: Transform
+ pos: -109.5,-38.5
+ parent: 2
+ - uid: 21863
+ components:
+ - type: Transform
+ pos: -108.5,-38.5
+ parent: 2
- uid: 21869
components:
- type: Transform
@@ -21246,6 +22671,16 @@ entities:
- type: Transform
pos: -35.5,4.5
parent: 2
+ - uid: 21950
+ components:
+ - type: Transform
+ pos: -21.5,-67.5
+ parent: 2
+ - uid: 21951
+ components:
+ - type: Transform
+ pos: -22.5,-65.5
+ parent: 2
- uid: 21952
components:
- type: Transform
@@ -21256,11 +22691,6 @@ entities:
- type: Transform
pos: -20.5,-61.5
parent: 2
- - uid: 22006
- components:
- - type: Transform
- pos: -84.5,-59.5
- parent: 2
- uid: 22019
components:
- type: Transform
@@ -21276,16 +22706,6 @@ entities:
- type: Transform
pos: -35.5,7.5
parent: 2
- - uid: 22133
- components:
- - type: Transform
- pos: -98.5,-3.5
- parent: 2
- - uid: 22134
- components:
- - type: Transform
- pos: -50.5,-67.5
- parent: 2
- uid: 22144
components:
- type: Transform
@@ -21326,16 +22746,6 @@ entities:
- type: Transform
pos: -107.5,38.5
parent: 2
- - uid: 22358
- components:
- - type: Transform
- pos: -47.5,-66.5
- parent: 2
- - uid: 22410
- components:
- - type: Transform
- pos: -83.5,-79.5
- parent: 2
- uid: 22427
components:
- type: Transform
@@ -21351,165 +22761,195 @@ entities:
- type: Transform
pos: -129.5,33.5
parent: 2
- - uid: 22463
+ - uid: 22670
components:
- type: Transform
- pos: -84.5,-79.5
+ pos: -138.5,30.5
parent: 2
- - uid: 22496
+ - uid: 22672
components:
- type: Transform
- pos: -91.5,-1.5
+ pos: -88.5,-59.5
parent: 2
- - uid: 22498
+ - uid: 22798
components:
- type: Transform
- pos: -91.5,1.5
+ pos: -88.5,-60.5
parent: 2
- - uid: 22499
+ - uid: 22817
components:
- type: Transform
- pos: -100.5,-1.5
+ pos: -135.5,3.5
parent: 2
- - uid: 22500
+ - uid: 22881
components:
- type: Transform
- pos: -91.5,-2.5
+ pos: -61.5,-67.5
parent: 2
- - uid: 22501
+ - uid: 22896
components:
- type: Transform
- pos: -91.5,0.5
+ pos: -96.5,-59.5
parent: 2
- - uid: 22670
+ - uid: 22902
components:
- type: Transform
- pos: -138.5,30.5
+ pos: -90.5,-59.5
parent: 2
- - uid: 22671
+ - uid: 22907
components:
- type: Transform
- pos: -96.5,-3.5
+ pos: -89.5,-59.5
parent: 2
- - uid: 22672
+ - uid: 22909
components:
- type: Transform
- pos: -98.5,-4.5
+ pos: -96.5,-60.5
parent: 2
- - uid: 22687
+ - uid: 23055
components:
- type: Transform
- pos: -97.5,-3.5
+ pos: -13.5,9.5
parent: 2
- - uid: 22817
+ - uid: 23076
components:
- type: Transform
- pos: -135.5,3.5
+ pos: -16.5,9.5
parent: 2
- - uid: 22876
+ - uid: 23077
components:
- type: Transform
- pos: -49.5,-66.5
+ pos: -63.5,-76.5
parent: 2
- - uid: 22881
+ - uid: 23078
components:
- type: Transform
- pos: -52.5,-67.5
+ pos: -57.5,-74.5
parent: 2
- - uid: 22892
+ - uid: 23080
components:
- type: Transform
- pos: -71.5,-43.5
+ pos: -59.5,-76.5
parent: 2
- - uid: 23055
+ - uid: 23083
components:
- type: Transform
- pos: -13.5,9.5
+ pos: -56.5,-74.5
parent: 2
- - uid: 23076
+ - uid: 23087
components:
- type: Transform
- pos: -16.5,9.5
+ pos: -55.5,-74.5
parent: 2
- - uid: 23096
+ - uid: 23088
components:
- type: Transform
- pos: -60.5,-75.5
+ pos: -61.5,-77.5
parent: 2
- - uid: 23097
+ - uid: 23089
components:
- type: Transform
- pos: -59.5,-75.5
+ pos: -61.5,-76.5
parent: 2
- - uid: 23112
+ - uid: 23090
components:
- type: Transform
- pos: -106.5,-51.5
+ pos: -61.5,-74.5
parent: 2
- - uid: 23122
+ - uid: 23091
components:
- type: Transform
- pos: -78.5,-69.5
+ pos: -60.5,-77.5
parent: 2
- - uid: 23123
+ - uid: 23092
components:
- type: Transform
- pos: -133.5,34.5
+ pos: -61.5,-75.5
parent: 2
- - uid: 23125
+ - uid: 23093
components:
- type: Transform
- pos: -78.5,-70.5
+ pos: -60.5,-76.5
parent: 2
- - uid: 23127
+ - uid: 23094
components:
- type: Transform
- pos: -14.5,9.5
+ pos: -60.5,-74.5
parent: 2
- - uid: 23172
+ - uid: 23095
components:
- type: Transform
- pos: -15.5,9.5
+ pos: -59.5,-77.5
parent: 2
- - uid: 23173
+ - uid: 23096
components:
- type: Transform
- pos: -75.5,-35.5
+ pos: -60.5,-75.5
parent: 2
- - uid: 23206
+ - uid: 23097
components:
- type: Transform
- pos: -91.5,-0.5
+ pos: -59.5,-75.5
parent: 2
- - uid: 23274
+ - uid: 23098
components:
- type: Transform
- pos: -83.5,-76.5
+ pos: -59.5,-74.5
parent: 2
- - uid: 23458
+ - uid: 23102
components:
- type: Transform
- pos: -94.5,-59.5
+ pos: -58.5,-74.5
parent: 2
- - uid: 23459
+ - uid: 23106
components:
- type: Transform
- pos: -48.5,-66.5
+ pos: -53.5,-76.5
parent: 2
- - uid: 23461
+ - uid: 23107
components:
- type: Transform
- pos: -82.5,-75.5
+ pos: -53.5,-74.5
parent: 2
- - uid: 23674
+ - uid: 23110
components:
- type: Transform
- pos: -73.5,-32.5
+ pos: -54.5,-74.5
parent: 2
- - uid: 23717
+ - uid: 23111
components:
- type: Transform
- pos: -65.5,-69.5
+ pos: -53.5,-75.5
+ parent: 2
+ - uid: 23112
+ components:
+ - type: Transform
+ pos: -106.5,-51.5
+ parent: 2
+ - uid: 23123
+ components:
+ - type: Transform
+ pos: -133.5,34.5
+ parent: 2
+ - uid: 23127
+ components:
+ - type: Transform
+ pos: -14.5,9.5
+ parent: 2
+ - uid: 23164
+ components:
+ - type: Transform
+ pos: -82.5,9.5
+ parent: 2
+ - uid: 23172
+ components:
+ - type: Transform
+ pos: -15.5,9.5
+ parent: 2
+ - uid: 23674
+ components:
+ - type: Transform
+ pos: -73.5,-32.5
parent: 2
- uid: 23779
components:
@@ -21531,15 +22971,20 @@ entities:
- type: Transform
pos: -106.5,-19.5
parent: 2
- - uid: 24003
+ - uid: 24103
components:
- type: Transform
- pos: -106.5,-34.5
+ pos: -19.5,-69.5
parent: 2
- - uid: 24103
+ - uid: 24105
components:
- type: Transform
- pos: -19.5,-69.5
+ pos: -22.5,-68.5
+ parent: 2
+ - uid: 24108
+ components:
+ - type: Transform
+ pos: -22.5,-66.5
parent: 2
- uid: 24111
components:
@@ -21576,16 +23021,36 @@ entities:
- type: Transform
pos: -43.5,-76.5
parent: 2
+ - uid: 24386
+ components:
+ - type: Transform
+ pos: -43.5,-75.5
+ parent: 2
+ - uid: 24389
+ components:
+ - type: Transform
+ pos: -42.5,-75.5
+ parent: 2
- uid: 24455
components:
- type: Transform
pos: -76.5,-24.5
parent: 2
+ - uid: 24523
+ components:
+ - type: Transform
+ pos: -45.5,-75.5
+ parent: 2
- uid: 24528
components:
- type: Transform
pos: -44.5,-76.5
parent: 2
+ - uid: 24537
+ components:
+ - type: Transform
+ pos: -44.5,-75.5
+ parent: 2
- uid: 24541
components:
- type: Transform
@@ -21601,6 +23066,11 @@ entities:
- type: Transform
pos: -73.5,-29.5
parent: 2
+ - uid: 24813
+ components:
+ - type: Transform
+ pos: -46.5,-75.5
+ parent: 2
- uid: 24816
components:
- type: Transform
@@ -21616,1857 +23086,150 @@ entities:
- type: Transform
pos: -45.5,-76.5
parent: 2
- - uid: 24825
- components:
- - type: Transform
- pos: -41.5,-76.5
- parent: 2
- - uid: 25447
- components:
- - type: Transform
- pos: -106.5,-48.5
- parent: 2
- - uid: 25453
- components:
- - type: Transform
- pos: -89.5,-15.5
- parent: 2
- - uid: 25783
- components:
- - type: Transform
- pos: -10.5,-56.5
- parent: 2
- - uid: 25787
- components:
- - type: Transform
- pos: -11.5,-60.5
- parent: 2
- - uid: 25791
- components:
- - type: Transform
- pos: -12.5,-63.5
- parent: 2
- - uid: 25833
- components:
- - type: Transform
- pos: -9.5,-55.5
- parent: 2
- - uid: 25834
- components:
- - type: Transform
- pos: -9.5,-56.5
- parent: 2
- - uid: 25835
- components:
- - type: Transform
- pos: -10.5,-57.5
- parent: 2
- - uid: 25836
- components:
- - type: Transform
- pos: -10.5,-58.5
- parent: 2
- - uid: 25837
- components:
- - type: Transform
- pos: -10.5,-59.5
- parent: 2
- - uid: 25838
- components:
- - type: Transform
- pos: -10.5,-60.5
- parent: 2
- - uid: 25839
- components:
- - type: Transform
- pos: -11.5,-61.5
- parent: 2
- - uid: 25840
- components:
- - type: Transform
- pos: -11.5,-62.5
- parent: 2
-- proto: AsteroidRockMining
- entities:
- - uid: 290
- components:
- - type: Transform
- pos: -113.5,34.5
- parent: 2
- - uid: 300
- components:
- - type: Transform
- pos: -109.5,37.5
- parent: 2
- - uid: 517
- components:
- - type: Transform
- pos: -97.5,-50.5
- parent: 2
- - uid: 558
- components:
- - type: Transform
- pos: -91.5,-69.5
- parent: 2
- - uid: 640
- components:
- - type: Transform
- pos: -97.5,-51.5
- parent: 2
- - uid: 672
- components:
- - type: Transform
- pos: -97.5,-49.5
- parent: 2
- - uid: 815
- components:
- - type: Transform
- pos: -93.5,-68.5
- parent: 2
- - uid: 881
- components:
- - type: Transform
- pos: -92.5,-70.5
- parent: 2
- - uid: 890
- components:
- - type: Transform
- pos: -109.5,36.5
- parent: 2
- - uid: 898
- components:
- - type: Transform
- pos: -110.5,34.5
- parent: 2
- - uid: 901
- components:
- - type: Transform
- pos: -114.5,35.5
- parent: 2
- - uid: 1089
- components:
- - type: Transform
- pos: -92.5,-71.5
- parent: 2
- - uid: 1127
- components:
- - type: Transform
- pos: -100.5,-63.5
- parent: 2
- - uid: 1183
- components:
- - type: Transform
- pos: -101.5,-63.5
- parent: 2
- - uid: 1206
- components:
- - type: Transform
- pos: -18.5,-57.5
- parent: 2
- - uid: 1257
- components:
- - type: Transform
- pos: -133.5,33.5
- parent: 2
- - uid: 1258
- components:
- - type: Transform
- pos: -110.5,-35.5
- parent: 2
- - uid: 1260
- components:
- - type: Transform
- pos: -109.5,-35.5
- parent: 2
- - uid: 1280
- components:
- - type: Transform
- pos: -135.5,31.5
- parent: 2
- - uid: 1282
- components:
- - type: Transform
- pos: -97.5,-64.5
- parent: 2
- - uid: 1308
- components:
- - type: Transform
- pos: -110.5,-38.5
- parent: 2
- - uid: 1315
- components:
- - type: Transform
- pos: -96.5,-61.5
- parent: 2
- - uid: 1323
- components:
- - type: Transform
- pos: -98.5,-64.5
- parent: 2
- - uid: 1345
- components:
- - type: Transform
- pos: -99.5,-64.5
- parent: 2
- - uid: 1487
- components:
- - type: Transform
- pos: -97.5,-60.5
- parent: 2
- - uid: 1522
- components:
- - type: Transform
- pos: -52.5,-75.5
- parent: 2
- - uid: 1548
- components:
- - type: Transform
- pos: -98.5,-65.5
- parent: 2
- - uid: 1553
- components:
- - type: Transform
- pos: -51.5,-75.5
- parent: 2
- - uid: 1554
- components:
- - type: Transform
- pos: -50.5,-75.5
- parent: 2
- - uid: 1646
- components:
- - type: Transform
- pos: -53.5,-75.5
- parent: 2
- - uid: 1660
- components:
- - type: Transform
- pos: -81.5,-69.5
- parent: 2
- - uid: 1675
- components:
- - type: Transform
- pos: -102.5,-63.5
- parent: 2
- - uid: 1679
- components:
- - type: Transform
- pos: -79.5,-65.5
- parent: 2
- - uid: 1717
- components:
- - type: Transform
- pos: -80.5,-65.5
- parent: 2
- - uid: 1837
- components:
- - type: Transform
- pos: -110.5,-37.5
- parent: 2
- - uid: 1838
- components:
- - type: Transform
- pos: -110.5,-36.5
- parent: 2
- - uid: 1839
- components:
- - type: Transform
- pos: -109.5,-37.5
- parent: 2
- - uid: 1850
- components:
- - type: Transform
- pos: -83.5,-66.5
- parent: 2
- - uid: 1856
- components:
- - type: Transform
- pos: -63.5,-76.5
- parent: 2
- - uid: 1867
- components:
- - type: Transform
- pos: -92.5,-68.5
- parent: 2
- - uid: 1875
- components:
- - type: Transform
- pos: -86.5,-59.5
- parent: 2
- - uid: 1881
- components:
- - type: Transform
- pos: -55.5,-75.5
- parent: 2
- - uid: 1941
- components:
- - type: Transform
- pos: -83.5,-69.5
- parent: 2
- - uid: 1956
- components:
- - type: Transform
- pos: -83.5,-67.5
- parent: 2
- - uid: 1981
- components:
- - type: Transform
- pos: -91.5,-59.5
- parent: 2
- - uid: 2043
- components:
- - type: Transform
- pos: -83.5,-68.5
- parent: 2
- - uid: 2087
- components:
- - type: Transform
- pos: -99.5,-65.5
- parent: 2
- - uid: 2123
- components:
- - type: Transform
- pos: -94.5,-67.5
- parent: 2
- - uid: 2131
- components:
- - type: Transform
- pos: -83.5,-65.5
- parent: 2
- - uid: 2159
- components:
- - type: Transform
- pos: -82.5,-65.5
- parent: 2
- - uid: 2242
- components:
- - type: Transform
- pos: -87.5,-59.5
- parent: 2
- - uid: 2246
- components:
- - type: Transform
- pos: -94.5,-66.5
- parent: 2
- - uid: 2314
- components:
- - type: Transform
- pos: -93.5,-67.5
- parent: 2
- - uid: 2377
- components:
- - type: Transform
- pos: -81.5,-65.5
- parent: 2
- - uid: 2379
- components:
- - type: Transform
- pos: -90.5,-68.5
- parent: 2
- - uid: 2380
- components:
- - type: Transform
- pos: -94.5,-62.5
- parent: 2
- - uid: 2381
- components:
- - type: Transform
- pos: -94.5,-65.5
- parent: 2
- - uid: 2418
- components:
- - type: Transform
- pos: -79.5,-66.5
- parent: 2
- - uid: 2566
- components:
- - type: Transform
- pos: -92.5,-59.5
- parent: 2
- - uid: 2567
- components:
- - type: Transform
- pos: -98.5,-66.5
- parent: 2
- - uid: 2568
- components:
- - type: Transform
- pos: -97.5,-65.5
- parent: 2
- - uid: 2570
- components:
- - type: Transform
- pos: -97.5,-66.5
- parent: 2
- - uid: 2572
- components:
- - type: Transform
- pos: -16.5,11.5
- parent: 2
- - uid: 2573
- components:
- - type: Transform
- pos: -47.5,-71.5
- parent: 2
- - uid: 2574
- components:
- - type: Transform
- pos: -47.5,-69.5
- parent: 2
- - uid: 2575
- components:
- - type: Transform
- pos: -47.5,-68.5
- parent: 2
- - uid: 2580
- components:
- - type: Transform
- pos: -79.5,-67.5
- parent: 2
- - uid: 2581
- components:
- - type: Transform
- pos: -94.5,-61.5
- parent: 2
- - uid: 2586
- components:
- - type: Transform
- pos: -85.5,-61.5
- parent: 2
- - uid: 2601
- components:
- - type: Transform
- pos: -93.5,-61.5
- parent: 2
- - uid: 2628
- components:
- - type: Transform
- pos: -16.5,16.5
- parent: 2
- - uid: 2630
- components:
- - type: Transform
- pos: -82.5,-69.5
- parent: 2
- - uid: 2640
- components:
- - type: Transform
- pos: -70.5,-68.5
- parent: 2
- - uid: 2642
- components:
- - type: Transform
- pos: -68.5,-68.5
- parent: 2
- - uid: 2652
- components:
- - type: Transform
- pos: -69.5,-68.5
- parent: 2
- - uid: 2731
- components:
- - type: Transform
- pos: -49.5,-75.5
- parent: 2
- - uid: 2739
- components:
- - type: Transform
- pos: -47.5,-70.5
- parent: 2
- - uid: 3253
- components:
- - type: Transform
- pos: -47.5,-75.5
- parent: 2
- - uid: 3330
- components:
- - type: Transform
- pos: -48.5,-75.5
- parent: 2
- - uid: 3347
- components:
- - type: Transform
- pos: -56.5,-75.5
- parent: 2
- - uid: 3366
- components:
- - type: Transform
- pos: -54.5,-75.5
- parent: 2
- - uid: 3421
- components:
- - type: Transform
- pos: -57.5,-75.5
- parent: 2
- - uid: 3423
- components:
- - type: Transform
- pos: -99.5,-49.5
- parent: 2
- - uid: 3429
- components:
- - type: Transform
- pos: -13.5,-59.5
- parent: 2
- - uid: 3490
- components:
- - type: Transform
- pos: -17.5,-57.5
- parent: 2
- - uid: 3501
- components:
- - type: Transform
- pos: -96.5,-62.5
- parent: 2
- - uid: 3522
- components:
- - type: Transform
- pos: -96.5,-60.5
- parent: 2
- - uid: 3628
- components:
- - type: Transform
- pos: -81.5,-74.5
- parent: 2
- - uid: 3633
- components:
- - type: Transform
- pos: -77.5,-75.5
- parent: 2
- - uid: 3634
- components:
- - type: Transform
- pos: -77.5,-71.5
- parent: 2
- - uid: 3644
- components:
- - type: Transform
- pos: -74.5,-72.5
- parent: 2
- - uid: 3686
- components:
- - type: Transform
- pos: -75.5,-71.5
- parent: 2
- - uid: 3699
- components:
- - type: Transform
- pos: -89.5,-68.5
- parent: 2
- - uid: 3701
- components:
- - type: Transform
- pos: -73.5,-74.5
- parent: 2
- - uid: 3707
- components:
- - type: Transform
- pos: -75.5,-75.5
- parent: 2
- - uid: 3708
- components:
- - type: Transform
- pos: -78.5,-72.5
- parent: 2
- - uid: 3709
- components:
- - type: Transform
- pos: -73.5,-73.5
- parent: 2
- - uid: 3735
- components:
- - type: Transform
- pos: -17.5,-56.5
- parent: 2
- - uid: 3762
- components:
- - type: Transform
- pos: -16.5,18.5
- parent: 2
- - uid: 3805
- components:
- - type: Transform
- pos: -16.5,17.5
- parent: 2
- - uid: 3807
- components:
- - type: Transform
- pos: -72.5,-70.5
- parent: 2
- - uid: 3919
- components:
- - type: Transform
- pos: -73.5,-72.5
- parent: 2
- - uid: 3920
- components:
- - type: Transform
- pos: -83.5,-70.5
- parent: 2
- - uid: 3924
- components:
- - type: Transform
- pos: -76.5,-71.5
- parent: 2
- - uid: 3925
- components:
- - type: Transform
- pos: -74.5,-71.5
- parent: 2
- - uid: 3926
- components:
- - type: Transform
- pos: -76.5,-75.5
- parent: 2
- - uid: 3927
- components:
- - type: Transform
- pos: -74.5,-75.5
- parent: 2
- - uid: 4000
- components:
- - type: Transform
- pos: -15.5,19.5
- parent: 2
- - uid: 4002
- components:
- - type: Transform
- pos: -13.5,15.5
- parent: 2
- - uid: 4012
- components:
- - type: Transform
- pos: -21.5,-68.5
- parent: 2
- - uid: 4024
- components:
- - type: Transform
- pos: -19.5,-56.5
- parent: 2
- - uid: 4035
- components:
- - type: Transform
- pos: -72.5,-72.5
- parent: 2
- - uid: 4146
- components:
- - type: Transform
- pos: -13.5,16.5
- parent: 2
- - uid: 4147
- components:
- - type: Transform
- pos: -16.5,15.5
- parent: 2
- - uid: 4148
- components:
- - type: Transform
- pos: -15.5,15.5
- parent: 2
- - uid: 4149
- components:
- - type: Transform
- pos: -14.5,19.5
- parent: 2
- - uid: 4151
- components:
- - type: Transform
- pos: -14.5,15.5
- parent: 2
- - uid: 4153
- components:
- - type: Transform
- pos: -82.5,10.5
- parent: 2
- - uid: 4155
- components:
- - type: Transform
- pos: -133.5,32.5
- parent: 2
- - uid: 4198
- components:
- - type: Transform
- pos: -72.5,-71.5
- parent: 2
- - uid: 4248
- components:
- - type: Transform
- pos: -49.5,-68.5
- parent: 2
- - uid: 4252
- components:
- - type: Transform
- pos: -79.5,-69.5
- parent: 2
- - uid: 4256
- components:
- - type: Transform
- pos: -58.5,-69.5
- parent: 2
- - uid: 4278
- components:
- - type: Transform
- pos: -82.5,8.5
- parent: 2
- - uid: 4282
- components:
- - type: Transform
- pos: -134.5,31.5
- parent: 2
- - uid: 4318
- components:
- - type: Transform
- pos: -77.5,-69.5
- parent: 2
- - uid: 4357
- components:
- - type: Transform
- pos: -18.5,-56.5
- parent: 2
- - uid: 4434
- components:
- - type: Transform
- pos: -12.5,-55.5
- parent: 2
- - uid: 4435
- components:
- - type: Transform
- pos: -16.5,13.5
- parent: 2
- - uid: 4441
- components:
- - type: Transform
- pos: -13.5,14.5
- parent: 2
- - uid: 4485
- components:
- - type: Transform
- pos: -99.5,-50.5
- parent: 2
- - uid: 4502
- components:
- - type: Transform
- pos: -99.5,-51.5
- parent: 2
- - uid: 4503
- components:
- - type: Transform
- pos: -98.5,-51.5
- parent: 2
- - uid: 4510
- components:
- - type: Transform
- pos: -98.5,-49.5
- parent: 2
- - uid: 4519
- components:
- - type: Transform
- pos: -16.5,14.5
- parent: 2
- - uid: 4525
- components:
- - type: Transform
- pos: -15.5,13.5
- parent: 2
- - uid: 4661
- components:
- - type: Transform
- pos: -83.5,-74.5
- parent: 2
- - uid: 4764
- components:
- - type: Transform
- pos: -75.5,-67.5
- parent: 2
- - uid: 4804
- components:
- - type: Transform
- pos: -77.5,-67.5
- parent: 2
- - uid: 4816
- components:
- - type: Transform
- pos: -133.5,31.5
- parent: 2
- - uid: 4851
- components:
- - type: Transform
- pos: -112.5,33.5
- parent: 2
- - uid: 5559
- components:
- - type: Transform
- pos: -14.5,14.5
- parent: 2
- - uid: 5632
- components:
- - type: Transform
- pos: -76.5,-69.5
- parent: 2
- - uid: 5970
- components:
- - type: Transform
- pos: -72.5,-77.5
- parent: 2
- - uid: 6107
- components:
- - type: Transform
- pos: -77.5,-68.5
- parent: 2
- - uid: 6116
- components:
- - type: Transform
- pos: -12.5,-46.5
- parent: 2
- - uid: 6117
- components:
- - type: Transform
- pos: -11.5,-48.5
- parent: 2
- - uid: 6126
- components:
- - type: Transform
- pos: -111.5,33.5
- parent: 2
- - uid: 6127
- components:
- - type: Transform
- pos: -11.5,-47.5
- parent: 2
- - uid: 6128
- components:
- - type: Transform
- pos: -11.5,-50.5
- parent: 2
- - uid: 6278
- components:
- - type: Transform
- pos: -11.5,-49.5
- parent: 2
- - uid: 6606
- components:
- - type: Transform
- pos: -11.5,-46.5
- parent: 2
- - uid: 6799
- components:
- - type: Transform
- pos: -75.5,-68.5
- parent: 2
- - uid: 6846
- components:
- - type: Transform
- pos: -75.5,-69.5
- parent: 2
- - uid: 6908
- components:
- - type: Transform
- pos: -11.5,-51.5
- parent: 2
- - uid: 6957
- components:
- - type: Transform
- pos: -85.5,-70.5
- parent: 2
- - uid: 6966
- components:
- - type: Transform
- pos: -84.5,-70.5
- parent: 2
- - uid: 6975
- components:
- - type: Transform
- pos: -11.5,-45.5
- parent: 2
- - uid: 6998
- components:
- - type: Transform
- pos: -82.5,-71.5
- parent: 2
- - uid: 7003
- components:
- - type: Transform
- pos: -113.5,33.5
- parent: 2
- - uid: 7004
- components:
- - type: Transform
- pos: -114.5,34.5
- parent: 2
- - uid: 7011
- components:
- - type: Transform
- pos: -115.5,35.5
- parent: 2
- - uid: 7012
- components:
- - type: Transform
- pos: -85.5,-71.5
- parent: 2
- - uid: 7014
- components:
- - type: Transform
- pos: -85.5,-72.5
- parent: 2
- - uid: 7033
- components:
- - type: Transform
- pos: -81.5,-71.5
- parent: 2
- - uid: 7036
- components:
- - type: Transform
- pos: -81.5,-72.5
- parent: 2
- - uid: 7045
- components:
- - type: Transform
- pos: -12.5,-45.5
- parent: 2
- - uid: 7085
- components:
- - type: Transform
- pos: -85.5,-73.5
- parent: 2
- - uid: 7176
- components:
- - type: Transform
- pos: -135.5,33.5
- parent: 2
- - uid: 7222
- components:
- - type: Transform
- pos: -12.5,-52.5
- parent: 2
- - uid: 7233
- components:
- - type: Transform
- pos: -12.5,-53.5
- parent: 2
- - uid: 7421
- components:
- - type: Transform
- pos: -12.5,-54.5
- parent: 2
- - uid: 7467
- components:
- - type: Transform
- pos: -85.5,-74.5
- parent: 2
- - uid: 7468
- components:
- - type: Transform
- pos: -85.5,-75.5
- parent: 2
- - uid: 7469
- components:
- - type: Transform
- pos: -80.5,-69.5
- parent: 2
- - uid: 7472
- components:
- - type: Transform
- pos: -84.5,-75.5
- parent: 2
- - uid: 7483
- components:
- - type: Transform
- pos: -12.5,-51.5
- parent: 2
- - uid: 7572
- components:
- - type: Transform
- pos: -58.5,-71.5
- parent: 2
- - uid: 7576
- components:
- - type: Transform
- pos: -87.5,-68.5
- parent: 2
- - uid: 7614
- components:
- - type: Transform
- pos: -86.5,-67.5
- parent: 2
- - uid: 7617
- components:
- - type: Transform
- pos: -86.5,-68.5
- parent: 2
- - uid: 7659
- components:
- - type: Transform
- pos: -87.5,-69.5
- parent: 2
- - uid: 7661
- components:
- - type: Transform
- pos: -85.5,-66.5
- parent: 2
- - uid: 7893
- components:
- - type: Transform
- pos: -85.5,-67.5
- parent: 2
- - uid: 8147
- components:
- - type: Transform
- pos: -85.5,-65.5
- parent: 2
- - uid: 8252
- components:
- - type: Transform
- pos: -85.5,-64.5
- parent: 2
- - uid: 8470
- components:
- - type: Transform
- pos: -135.5,32.5
- parent: 2
- - uid: 8477
- components:
- - type: Transform
- pos: -134.5,33.5
- parent: 2
- - uid: 8483
- components:
- - type: Transform
- pos: -85.5,-63.5
- parent: 2
- - uid: 8484
- components:
- - type: Transform
- pos: -85.5,-62.5
- parent: 2
- - uid: 8489
- components:
- - type: Transform
- pos: -58.5,-70.5
- parent: 2
- - uid: 8497
- components:
- - type: Transform
- pos: -58.5,-72.5
- parent: 2
- - uid: 8504
- components:
- - type: Transform
- pos: -115.5,37.5
- parent: 2
- - uid: 8505
- components:
- - type: Transform
- pos: -51.5,-68.5
- parent: 2
- - uid: 8508
- components:
- - type: Transform
- pos: -114.5,37.5
- parent: 2
- - uid: 8510
- components:
- - type: Transform
- pos: -57.5,-72.5
- parent: 2
- - uid: 8512
- components:
- - type: Transform
- pos: -115.5,36.5
- parent: 2
- - uid: 8515
- components:
- - type: Transform
- pos: -82.5,-70.5
- parent: 2
- - uid: 8516
- components:
- - type: Transform
- pos: -109.5,35.5
- parent: 2
- - uid: 8517
- components:
- - type: Transform
- pos: -53.5,-68.5
- parent: 2
- - uid: 8544
- components:
- - type: Transform
- pos: -96.5,-66.5
- parent: 2
- - uid: 8674
- components:
- - type: Transform
- pos: -96.5,-64.5
- parent: 2
- - uid: 8676
- components:
- - type: Transform
- pos: -96.5,-63.5
- parent: 2
- - uid: 8679
- components:
- - type: Transform
- pos: -96.5,-65.5
- parent: 2
- - uid: 8681
- components:
- - type: Transform
- pos: -72.5,-75.5
- parent: 2
- - uid: 8685
- components:
- - type: Transform
- pos: -72.5,-76.5
- parent: 2
- - uid: 8692
- components:
- - type: Transform
- pos: -110.5,37.5
- parent: 2
- - uid: 8827
- components:
- - type: Transform
- pos: -72.5,-74.5
- parent: 2
- - uid: 8829
- components:
- - type: Transform
- pos: -72.5,-73.5
- parent: 2
- - uid: 8841
- components:
- - type: Transform
- pos: -16.5,-56.5
- parent: 2
- - uid: 8891
- components:
- - type: Transform
- pos: -16.5,-55.5
- parent: 2
- - uid: 8892
- components:
- - type: Transform
- pos: -16.5,-54.5
- parent: 2
- - uid: 8916
- components:
- - type: Transform
- pos: -67.5,-68.5
- parent: 2
- - uid: 8918
- components:
- - type: Transform
- pos: -72.5,-69.5
- parent: 2
- - uid: 8919
- components:
- - type: Transform
- pos: -57.5,-74.5
- parent: 2
- - uid: 9108
- components:
- - type: Transform
- pos: -57.5,-73.5
- parent: 2
- - uid: 9176
- components:
- - type: Transform
- pos: -109.5,34.5
- parent: 2
- - uid: 9208
- components:
- - type: Transform
- pos: -55.5,-68.5
- parent: 2
- - uid: 9213
- components:
- - type: Transform
- pos: -76.5,-67.5
- parent: 2
- - uid: 9216
- components:
- - type: Transform
- pos: -58.5,-68.5
- parent: 2
- - uid: 9252
- components:
- - type: Transform
- pos: -109.5,-38.5
- parent: 2
- - uid: 9295
- components:
- - type: Transform
- pos: -62.5,-76.5
- parent: 2
- - uid: 9368
- components:
- - type: Transform
- pos: -61.5,-76.5
- parent: 2
- - uid: 9369
- components:
- - type: Transform
- pos: -94.5,-63.5
- parent: 2
- - uid: 9370
- components:
- - type: Transform
- pos: -94.5,-64.5
- parent: 2
- - uid: 9379
- components:
- - type: Transform
- pos: -99.5,-66.5
- parent: 2
- - uid: 9386
- components:
- - type: Transform
- pos: -87.5,-70.5
- parent: 2
- - uid: 9389
- components:
- - type: Transform
- pos: -86.5,-70.5
- parent: 2
- - uid: 9406
- components:
- - type: Transform
- pos: -79.5,-75.5
- parent: 2
- - uid: 9408
- components:
- - type: Transform
- pos: -86.5,-71.5
- parent: 2
- - uid: 9410
- components:
- - type: Transform
- pos: -86.5,-72.5
- parent: 2
- - uid: 9411
- components:
- - type: Transform
- pos: -86.5,-73.5
- parent: 2
- - uid: 9412
- components:
- - type: Transform
- pos: -86.5,-74.5
- parent: 2
- - uid: 9413
- components:
- - type: Transform
- pos: -87.5,-74.5
- parent: 2
- - uid: 9448
- components:
- - type: Transform
- pos: -92.5,-74.5
- parent: 2
- - uid: 9458
- components:
- - type: Transform
- pos: -81.5,-73.5
- parent: 2
- - uid: 9461
- components:
- - type: Transform
- pos: -87.5,-75.5
- parent: 2
- - uid: 9512
- components:
- - type: Transform
- pos: -79.5,-74.5
- parent: 2
- - uid: 9533
- components:
- - type: Transform
- pos: -79.5,-72.5
- parent: 2
- - uid: 9541
- components:
- - type: Transform
- pos: -78.5,-75.5
- parent: 2
- - uid: 9546
- components:
- - type: Transform
- pos: -82.5,-74.5
- parent: 2
- - uid: 9621
- components:
- - type: Transform
- pos: -91.5,-75.5
- parent: 2
- - uid: 9965
- components:
- - type: Transform
- pos: -90.5,-75.5
- parent: 2
- - uid: 10090
- components:
- - type: Transform
- pos: -82.5,9.5
- parent: 2
- - uid: 10122
- components:
- - type: Transform
- pos: -89.5,-75.5
- parent: 2
- - uid: 10124
- components:
- - type: Transform
- pos: -78.5,-71.5
- parent: 2
- - uid: 10125
- components:
- - type: Transform
- pos: -88.5,-75.5
- parent: 2
- - uid: 10132
- components:
- - type: Transform
- pos: -72.5,-78.5
- parent: 2
- - uid: 10152
- components:
- - type: Transform
- pos: -64.5,-79.5
- parent: 2
- - uid: 10160
- components:
- - type: Transform
- pos: -83.5,-75.5
- parent: 2
- - uid: 10631
- components:
- - type: Transform
- pos: -79.5,-73.5
- parent: 2
- - uid: 10632
- components:
- - type: Transform
- pos: -74.5,-74.5
- parent: 2
- - uid: 10637
- components:
- - type: Transform
- pos: -63.5,-79.5
- parent: 2
- - uid: 11822
- components:
- - type: Transform
- pos: -62.5,-79.5
- parent: 2
- - uid: 12633
- components:
- - type: Transform
- pos: -52.5,-68.5
- parent: 2
- - uid: 13572
- components:
- - type: Transform
- pos: -71.5,-68.5
- parent: 2
- - uid: 13660
- components:
- - type: Transform
- pos: -50.5,-68.5
- parent: 2
- - uid: 13694
- components:
- - type: Transform
- pos: -54.5,-68.5
- parent: 2
- - uid: 14138
- components:
- - type: Transform
- pos: -48.5,-68.5
- parent: 2
- - uid: 14174
- components:
- - type: Transform
- pos: -15.5,14.5
- parent: 2
- - uid: 14178
- components:
- - type: Transform
- pos: -92.5,-72.5
- parent: 2
- - uid: 14181
- components:
- - type: Transform
- pos: -92.5,-73.5
- parent: 2
- - uid: 14298
- components:
- - type: Transform
- pos: -62.5,-77.5
- parent: 2
- - uid: 14299
- components:
- - type: Transform
- pos: -64.5,-76.5
- parent: 2
- - uid: 14491
- components:
- - type: Transform
- pos: -64.5,-77.5
- parent: 2
- - uid: 14496
- components:
- - type: Transform
- pos: -63.5,-77.5
- parent: 2
- - uid: 14687
- components:
- - type: Transform
- pos: -64.5,-78.5
- parent: 2
- - uid: 14694
- components:
- - type: Transform
- pos: -63.5,-78.5
- parent: 2
- - uid: 14697
- components:
- - type: Transform
- pos: -61.5,-78.5
- parent: 2
- - uid: 14702
- components:
- - type: Transform
- pos: -62.5,-78.5
- parent: 2
- - uid: 14703
- components:
- - type: Transform
- pos: -61.5,-79.5
- parent: 2
- - uid: 14714
- components:
- - type: Transform
- pos: -21.5,-66.5
- parent: 2
- - uid: 14715
- components:
- - type: Transform
- pos: -21.5,-65.5
- parent: 2
- - uid: 14757
- components:
- - type: Transform
- pos: -13.5,-60.5
- parent: 2
- - uid: 14964
- components:
- - type: Transform
- pos: -13.5,-61.5
- parent: 2
- - uid: 15253
- components:
- - type: Transform
- pos: -21.5,-64.5
- parent: 2
- - uid: 15255
- components:
- - type: Transform
- pos: -92.5,-60.5
- parent: 2
- - uid: 15256
- components:
- - type: Transform
- pos: -88.5,-68.5
- parent: 2
- - uid: 15258
- components:
- - type: Transform
- pos: -16.5,12.5
- parent: 2
- - uid: 15259
- components:
- - type: Transform
- pos: -91.5,-68.5
- parent: 2
- - uid: 15261
- components:
- - type: Transform
- pos: -12.5,-57.5
- parent: 2
- - uid: 16027
- components:
- - type: Transform
- pos: -22.5,-67.5
- parent: 2
- - uid: 16029
- components:
- - type: Transform
- pos: -19.5,-57.5
- parent: 2
- - uid: 16100
- components:
- - type: Transform
- pos: -90.5,-69.5
- parent: 2
- - uid: 16144
- components:
- - type: Transform
- pos: -91.5,-70.5
- parent: 2
- - uid: 16146
- components:
- - type: Transform
- pos: -89.5,-69.5
- parent: 2
- - uid: 16167
- components:
- - type: Transform
- pos: -88.5,-69.5
- parent: 2
- - uid: 16168
- components:
- - type: Transform
- pos: -19.5,-58.5
- parent: 2
- - uid: 16209
- components:
- - type: Transform
- pos: -12.5,-56.5
- parent: 2
- - uid: 16216
- components:
- - type: Transform
- pos: -22.5,-64.5
- parent: 2
- - uid: 16219
- components:
- - type: Transform
- pos: -71.5,-69.5
- parent: 2
- - uid: 16230
- components:
- - type: Transform
- pos: -21.5,-67.5
- parent: 2
- - uid: 16237
- components:
- - type: Transform
- pos: -22.5,-65.5
- parent: 2
- - uid: 16250
- components:
- - type: Transform
- pos: -61.5,-77.5
- parent: 2
- - uid: 16251
- components:
- - type: Transform
- pos: -60.5,-76.5
- parent: 2
- - uid: 16252
- components:
- - type: Transform
- pos: -86.5,-60.5
- parent: 2
- - uid: 16253
- components:
- - type: Transform
- pos: -86.5,-61.5
- parent: 2
- - uid: 16313
- components:
- - type: Transform
- pos: -93.5,-60.5
- parent: 2
- - uid: 16335
- components:
- - type: Transform
- pos: -22.5,-68.5
- parent: 2
- - uid: 16337
- components:
- - type: Transform
- pos: -22.5,-66.5
- parent: 2
- - uid: 16338
- components:
- - type: Transform
- pos: -43.5,-75.5
- parent: 2
- - uid: 16724
- components:
- - type: Transform
- pos: -42.5,-75.5
- parent: 2
- - uid: 16745
- components:
- - type: Transform
- pos: -79.5,-68.5
- parent: 2
- - uid: 16758
- components:
- - type: Transform
- pos: -45.5,-75.5
- parent: 2
- - uid: 16759
- components:
- - type: Transform
- pos: -44.5,-75.5
- parent: 2
- - uid: 16810
+ - uid: 24824
components:
- type: Transform
- pos: -46.5,-75.5
+ pos: -41.5,-75.5
parent: 2
- - uid: 16814
+ - uid: 24825
components:
- type: Transform
- pos: -41.5,-75.5
+ pos: -41.5,-76.5
parent: 2
- - uid: 16829
+ - uid: 24826
components:
- type: Transform
pos: -41.5,-74.5
parent: 2
- - uid: 16862
+ - uid: 24827
components:
- type: Transform
pos: -41.5,-73.5
parent: 2
- - uid: 16863
+ - uid: 24828
components:
- type: Transform
pos: -41.5,-72.5
parent: 2
- - uid: 16938
+ - uid: 24829
components:
- type: Transform
pos: -41.5,-71.5
parent: 2
- - uid: 16949
+ - uid: 24830
components:
- type: Transform
pos: -42.5,-71.5
parent: 2
- - uid: 16952
+ - uid: 24831
components:
- type: Transform
pos: -43.5,-71.5
parent: 2
- - uid: 16953
+ - uid: 24832
components:
- type: Transform
pos: -44.5,-71.5
parent: 2
- - uid: 16970
+ - uid: 24833
components:
- type: Transform
pos: -46.5,-71.5
parent: 2
- - uid: 16971
+ - uid: 24834
components:
- type: Transform
pos: -45.5,-71.5
parent: 2
- - uid: 16972
- components:
- - type: Transform
- pos: -13.5,-58.5
- parent: 2
- - uid: 16975
- components:
- - type: Transform
- pos: -13.5,-57.5
- parent: 2
- - uid: 16979
- components:
- - type: Transform
- pos: -98.5,-61.5
- parent: 2
- - uid: 17403
- components:
- - type: Transform
- pos: -99.5,-61.5
- parent: 2
- - uid: 17546
- components:
- - type: Transform
- pos: -97.5,-61.5
- parent: 2
- - uid: 17610
- components:
- - type: Transform
- pos: -47.5,-73.5
- parent: 2
- - uid: 17611
- components:
- - type: Transform
- pos: -47.5,-74.5
- parent: 2
- - uid: 17658
- components:
- - type: Transform
- pos: -97.5,-62.5
- parent: 2
- - uid: 17746
- components:
- - type: Transform
- pos: -98.5,-63.5
- parent: 2
- - uid: 17747
- components:
- - type: Transform
- pos: -99.5,-63.5
- parent: 2
- - uid: 18637
- components:
- - type: Transform
- pos: -97.5,-63.5
- parent: 2
- - uid: 18723
- components:
- - type: Transform
- pos: -99.5,-62.5
- parent: 2
- - uid: 18786
- components:
- - type: Transform
- pos: -62.5,-74.5
- parent: 2
- - uid: 20028
- components:
- - type: Transform
- pos: -16.5,20.5
- parent: 2
- - uid: 20529
- components:
- - type: Transform
- pos: -61.5,-74.5
- parent: 2
- - uid: 20782
- components:
- - type: Transform
- pos: -60.5,-73.5
- parent: 2
- - uid: 21333
- components:
- - type: Transform
- pos: -16.5,19.5
- parent: 2
- - uid: 21357
- components:
- - type: Transform
- pos: -15.5,20.5
- parent: 2
- - uid: 21358
- components:
- - type: Transform
- pos: -60.5,-74.5
- parent: 2
- - uid: 21423
- components:
- - type: Transform
- pos: -60.5,-72.5
- parent: 2
- - uid: 21424
- components:
- - type: Transform
- pos: -62.5,-72.5
- parent: 2
- - uid: 21427
- components:
- - type: Transform
- pos: -61.5,-72.5
- parent: 2
- - uid: 21431
+ - uid: 24835
components:
- type: Transform
- pos: -82.5,-60.5
+ pos: -46.5,-72.5
parent: 2
- - uid: 21565
+ - uid: 24836
components:
- type: Transform
- pos: -80.5,-60.5
+ pos: -46.5,-73.5
parent: 2
- - uid: 21598
+ - uid: 24837
components:
- type: Transform
- pos: -82.5,-61.5
+ pos: -46.5,-74.5
parent: 2
- - uid: 21601
+ - uid: 25447
components:
- type: Transform
- pos: -82.5,-62.5
+ pos: -106.5,-48.5
parent: 2
- - uid: 21667
+ - uid: 25453
components:
- type: Transform
- pos: -80.5,-61.5
+ pos: -89.5,-15.5
parent: 2
- - uid: 21670
+ - uid: 25780
components:
- type: Transform
- pos: -80.5,-62.5
+ pos: -13.5,-58.5
parent: 2
- - uid: 21770
+ - uid: 25781
components:
- type: Transform
- pos: -81.5,-62.5
+ pos: -13.5,-57.5
parent: 2
- - uid: 21771
+ - uid: 25783
components:
- type: Transform
- pos: -59.5,-78.5
+ pos: -10.5,-56.5
parent: 2
- - uid: 21862
+ - uid: 25787
components:
- type: Transform
- pos: -60.5,-78.5
+ pos: -11.5,-60.5
parent: 2
- - uid: 21950
+ - uid: 25791
components:
- type: Transform
- pos: -47.5,-72.5
+ pos: -12.5,-63.5
parent: 2
- - uid: 21951
+ - uid: 25833
components:
- type: Transform
- pos: -62.5,-73.5
+ pos: -9.5,-55.5
parent: 2
- - uid: 22348
+ - uid: 25834
components:
- type: Transform
- pos: -59.5,-76.5
+ pos: -9.5,-56.5
parent: 2
- - uid: 23066
+ - uid: 25835
components:
- type: Transform
- pos: -60.5,-77.5
+ pos: -10.5,-57.5
parent: 2
- - uid: 23080
+ - uid: 25836
components:
- type: Transform
- pos: -59.5,-77.5
+ pos: -10.5,-58.5
parent: 2
- - uid: 23088
+ - uid: 25837
components:
- type: Transform
- pos: -46.5,-72.5
+ pos: -10.5,-59.5
parent: 2
- - uid: 23091
+ - uid: 25838
components:
- type: Transform
- pos: -46.5,-73.5
+ pos: -10.5,-60.5
parent: 2
- - uid: 23093
+ - uid: 25839
components:
- type: Transform
- pos: -46.5,-74.5
+ pos: -11.5,-61.5
parent: 2
- - uid: 23095
+ - uid: 25840
components:
- type: Transform
- pos: -81.5,-60.5
+ pos: -11.5,-62.5
parent: 2
- proto: AtmosDeviceFanDirectional
entities:
@@ -23506,6 +23269,76 @@ entities:
rot: 1.5707963267948966 rad
pos: -13.5,-65.5
parent: 2
+ - uid: 12421
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-35.5
+ parent: 2
+ - uid: 12452
+ components:
+ - type: Transform
+ pos: -81.5,-82.5
+ parent: 2
+ - uid: 22368
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -39.5,19.5
+ parent: 2
+ - uid: 22369
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -39.5,12.5
+ parent: 2
+ - uid: 22370
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -81.5,20.5
+ parent: 2
+ - uid: 22371
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-37.5
+ parent: 2
+ - uid: 22372
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,-18.5
+ parent: 2
+ - uid: 22985
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,-16.5
+ parent: 2
+ - uid: 22986
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,-8.5
+ parent: 2
+ - uid: 22987
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,-10.5
+ parent: 2
+ - uid: 22988
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -81.5,18.5
+ parent: 2
+ - uid: 22989
+ components:
+ - type: Transform
+ pos: -83.5,-82.5
+ parent: 2
- uid: 22991
components:
- type: Transform
@@ -23974,6 +23807,11 @@ entities:
- type: Transform
pos: -87.5,-5.5
parent: 2
+ - uid: 4510
+ components:
+ - type: Transform
+ pos: -86.5,2.5
+ parent: 2
- uid: 4511
components:
- type: Transform
@@ -24009,6 +23847,11 @@ entities:
- type: Transform
pos: -85.5,1.5
parent: 2
+ - uid: 4519
+ components:
+ - type: Transform
+ pos: -85.5,2.5
+ parent: 2
- uid: 4520
components:
- type: Transform
@@ -24024,6 +23867,11 @@ entities:
- type: Transform
pos: -86.5,0.5
parent: 2
+ - uid: 4525
+ components:
+ - type: Transform
+ pos: -84.5,2.5
+ parent: 2
- uid: 4527
components:
- type: Transform
@@ -24135,13 +23983,6 @@ entities:
- type: Transform
pos: -110.5,1.5
parent: 2
-- proto: AtmosMonitoringComputerCircuitboard
- entities:
- - uid: 4265
- components:
- - type: Transform
- pos: -116.5044,-32.550922
- parent: 2
- proto: Autolathe
entities:
- uid: 5871
@@ -24159,26 +24000,12 @@ entities:
- type: Transform
pos: -121.5,-37.5
parent: 2
-- proto: AutolatheMachineCircuitboard
- entities:
- - uid: 2537
- components:
- - type: Transform
- pos: -116.43733,-30.501385
- parent: 2
-- proto: BananaPhoneInstrument
- entities:
- - uid: 25889
- components:
- - type: Transform
- pos: -113.51352,29.580717
- parent: 2
- proto: BannerCargo
entities:
- - uid: 10722
+ - uid: 15922
components:
- type: Transform
- pos: -101.5,6.5
+ pos: -102.5,8.5
parent: 2
- proto: BannerEngineering
entities:
@@ -24215,18 +24042,6 @@ entities:
- type: Transform
pos: -95.5,-17.5
parent: 2
-- proto: BannerSyndicate
- entities:
- - uid: 2409
- components:
- - type: Transform
- pos: -15.5,18.5
- parent: 2
- - type: Contraband
- allowedJobs: []
- allowedDepartments:
- - Security
- severity: Syndicate
- proto: BarberScissors
entities:
- uid: 3403
@@ -24235,12 +24050,27 @@ entities:
rot: 1.5707963267948966 rad
pos: -55.5,-38.5
parent: 2
-- proto: BarSignComboCafe
+- proto: Barricade
entities:
- - uid: 9228
+ - uid: 2132
components:
- type: Transform
- pos: -70.5,-34.5
+ pos: -75.5,-49.5
+ parent: 2
+ - uid: 3314
+ components:
+ - type: Transform
+ pos: -73.5,-49.5
+ parent: 2
+ - uid: 25695
+ components:
+ - type: Transform
+ pos: -74.5,-49.5
+ parent: 2
+ - uid: 25907
+ components:
+ - type: Transform
+ pos: -76.5,-49.5
parent: 2
- proto: BarSignEngineChange
entities:
@@ -24300,42 +24130,6 @@ entities:
- type: Transform
pos: -82.5,-7.5
parent: 2
-- proto: BaseUplinkRadio
- entities:
- - uid: 2504
- components:
- - type: MetaData
- desc: A suspicious old radio. It doesn't seem to do anything, but you can TELL it's nefarious just by looking at it.
- name: old radio
- - type: Transform
- parent: 2411
- - type: Physics
- canCollide: False
- - type: RadioMicrophone
- - type: TelecomExempt
- - type: RadioSpeaker
- channels:
- - Common
- - type: Speech
- suffixSpeechVerbs:
- chat-speech-verb-suffix-exclamation-strong: DefaultExclamationStrong
- chat-speech-verb-suffix-exclamation: DefaultExclamation
- chat-speech-verb-suffix-question: DefaultQuestion
- chat-speech-verb-suffix-stutter: DefaultStutter
- chat-speech-verb-suffix-mumble: DefaultMumble
- allowedEmotes: []
- - type: InsideEntityStorage
- missingComponents:
- - UserInterface
- - ActivatableUI
- - Store
-- proto: Basketball
- entities:
- - uid: 9418
- components:
- - type: Transform
- pos: -85.414406,-44.58086
- parent: 2
- proto: BeachBall
entities:
- uid: 2492
@@ -24343,11 +24137,6 @@ entities:
- type: Transform
pos: -45.5,-9.5
parent: 2
- - uid: 9433
- components:
- - type: Transform
- pos: -88.52135,-46.29961
- parent: 2
- proto: Beaker
entities:
- uid: 3952
@@ -24412,19 +24201,6 @@ entities:
- type: Transform
pos: -98.5,-34.5
parent: 2
- - uid: 2516
- components:
- - type: MetaData
- desc: A normal bed, but there's a syndicate logo on the sticker - therefore making it highly illegal contraband.
- name: syndicate bed
- - type: Transform
- pos: -13.5,17.5
- parent: 2
- - type: Contraband
- allowedJobs: []
- allowedDepartments:
- - Security
- severity: Syndicate
- uid: 2894
components:
- type: Transform
@@ -24455,6 +24231,16 @@ entities:
- type: Transform
pos: -44.5,-51.5
parent: 2
+ - uid: 4146
+ components:
+ - type: Transform
+ pos: -17.5,-49.5
+ parent: 2
+ - uid: 4147
+ components:
+ - type: Transform
+ pos: -17.5,-53.5
+ parent: 2
- uid: 4201
components:
- type: Transform
@@ -24520,36 +24306,21 @@ entities:
- type: Transform
pos: -67.5,-26.5
parent: 2
- - uid: 16042
- components:
- - type: Transform
- pos: -18.5,-52.5
- parent: 2
- - uid: 16243
- components:
- - type: Transform
- pos: -18.5,-48.5
- parent: 2
- - uid: 18686
+ - uid: 17834
components:
- type: Transform
- pos: -82.5,-42.5
+ pos: -86.5,-42.5
parent: 2
- - uid: 18690
+ - uid: 17835
components:
- type: Transform
- pos: -78.5,-42.5
+ pos: -90.5,-42.5
parent: 2
- uid: 20635
components:
- type: Transform
pos: -37.5,-56.5
parent: 2
- - uid: 21509
- components:
- - type: Transform
- pos: -86.5,-42.5
- parent: 2
- proto: BedsheetBrown
entities:
- uid: 2048
@@ -24620,6 +24391,16 @@ entities:
parent: 2
- proto: BedsheetMedical
entities:
+ - uid: 4148
+ components:
+ - type: Transform
+ pos: -17.5,-53.5
+ parent: 2
+ - uid: 4149
+ components:
+ - type: Transform
+ pos: -17.5,-49.5
+ parent: 2
- uid: 4202
components:
- type: Transform
@@ -24668,16 +24449,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -38.5,-31.5
parent: 2
- - uid: 16038
- components:
- - type: Transform
- pos: -18.5,-52.5
- parent: 2
- - uid: 16043
- components:
- - type: Transform
- pos: -18.5,-48.5
- parent: 2
- proto: BedsheetOrange
entities:
- uid: 7040
@@ -24698,20 +24469,15 @@ entities:
rot: 1.5707963267948966 rad
pos: -98.5,-30.5
parent: 2
- - uid: 18094
- components:
- - type: Transform
- pos: -78.5,-42.5
- parent: 2
- - uid: 18725
+ - uid: 17833
components:
- type: Transform
- pos: -82.5,-42.5
+ pos: -86.5,-42.5
parent: 2
- - uid: 20774
+ - uid: 17836
components:
- type: Transform
- pos: -86.5,-42.5
+ pos: -90.5,-42.5
parent: 2
- proto: BedsheetQM
entities:
@@ -24769,18 +24535,6 @@ entities:
- type: Transform
pos: -37.5,-56.5
parent: 2
-- proto: BedsheetSyndie
- entities:
- - uid: 2382
- components:
- - type: Transform
- pos: -13.5,17.5
- parent: 2
- - type: Contraband
- allowedJobs: []
- allowedDepartments:
- - Security
- severity: Syndicate
- proto: BenchBlueComfy
entities:
- uid: 4976
@@ -24916,11 +24670,6 @@ entities:
parent: 2
- type: DeviceLinkSink
invokeCounter: 1
- - uid: 20188
- components:
- - type: Transform
- pos: -38.5,-70.5
- parent: 2
- uid: 23169
components:
- type: Transform
@@ -25101,21 +24850,27 @@ entities:
- type: Transform
pos: -26.5,-49.5
parent: 2
- - uid: 5113
+ - uid: 4818
components:
- type: Transform
- pos: -91.5,-36.5
+ pos: -90.5,-36.5
parent: 2
- - uid: 5391
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ - uid: 6659
components:
- type: Transform
pos: -92.5,-36.5
parent: 2
- - uid: 5581
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - uid: 6757
components:
- type: Transform
- pos: -90.5,-36.5
+ pos: -91.5,-36.5
parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 2
- uid: 9642
components:
- type: Transform
@@ -25123,13 +24878,6 @@ entities:
parent: 2
- type: DeviceLinkSink
invokeCounter: 1
- - uid: 17192
- components:
- - type: Transform
- pos: -111.5,-44.5
- parent: 2
- - type: DeviceLinkSink
- invokeCounter: 1
- uid: 17813
components:
- type: Transform
@@ -25144,20 +24892,6 @@ entities:
parent: 2
- type: DeviceLinkSink
invokeCounter: 1
- - uid: 18724
- components:
- - type: Transform
- pos: -111.5,-45.5
- parent: 2
- - type: DeviceLinkSink
- invokeCounter: 1
- - uid: 22284
- components:
- - type: Transform
- pos: -111.5,-46.5
- parent: 2
- - type: DeviceLinkSink
- invokeCounter: 1
- proto: BlockGameArcade
entities:
- uid: 9587
@@ -25206,8 +24940,6 @@ entities:
- type: Transform
pos: -55.51698,-77.4413
parent: 2
- - type: Item
- size: Huge
missingComponents:
- Blueprint
- StaticPrice
@@ -25215,11 +24947,10 @@ entities:
- DamageExaminable
- proto: Bonfire
entities:
- - uid: 19824
+ - uid: 16729
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -68.5,-74.5
+ pos: -67.5,-73.5
parent: 2
- proto: BookRandomStory
entities:
@@ -25302,10 +25033,8 @@ entities:
- uid: 11630
components:
- type: Transform
- parent: 8669
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
+ pos: -26.492687,8.519552
+ parent: 2
- proto: BoozeDispenser
entities:
- uid: 8791
@@ -25325,12 +25054,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -70.5,-31.5
parent: 2
- - uid: 24445
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -132.5,-29.5
- parent: 2
- proto: BorgCharger
entities:
- uid: 7320
@@ -25377,15 +25100,25 @@ entities:
- type: Transform
pos: -69.69247,-26.289198
parent: 2
- - uid: 16442
+ - uid: 22282
components:
- type: Transform
- pos: -82.23979,-21.728704
+ pos: -82.74675,-22.28722
parent: 2
- - uid: 25883
+ - uid: 22283
+ components:
+ - type: Transform
+ pos: -82.3405,-22.271595
+ parent: 2
+ - uid: 22284
+ components:
+ - type: Transform
+ pos: -82.731125,-22.69347
+ parent: 2
+ - uid: 22285
components:
- type: Transform
- pos: -82.23979,-21.384954
+ pos: -82.356125,-22.69347
parent: 2
- proto: BoxBodyBag
entities:
@@ -25408,11 +25141,6 @@ entities:
parent: 2
- proto: BoxFolderBlue
entities:
- - uid: 6020
- components:
- - type: Transform
- pos: -94.518295,0.5016465
- parent: 2
- uid: 9351
components:
- type: Transform
@@ -25457,11 +25185,6 @@ entities:
- type: Transform
pos: -52.54664,-7.3773193
parent: 2
- - uid: 25892
- components:
- - type: Transform
- pos: -114.472176,29.576769
- parent: 2
- proto: BoxFolderRed
entities:
- uid: 9043
@@ -25515,10 +25238,11 @@ entities:
parent: 2
- proto: BoxingBell
entities:
- - uid: 20947
+ - uid: 16101
components:
- type: Transform
- pos: -56.5,-68.5
+ rot: 3.141592653589793 rad
+ pos: -52.5,-72.5
parent: 2
- proto: BoxLatexGloves
entities:
@@ -25527,6 +25251,28 @@ entities:
- type: Transform
pos: -22.202202,-48.277267
parent: 2
+- proto: BoxLethalshot
+ entities:
+ - uid: 22278
+ components:
+ - type: Transform
+ pos: -82.731125,-21.66222
+ parent: 2
+ - uid: 22279
+ components:
+ - type: Transform
+ pos: -82.403,-21.66222
+ parent: 2
+ - uid: 22280
+ components:
+ - type: Transform
+ pos: -82.778,-21.365345
+ parent: 2
+ - uid: 22281
+ components:
+ - type: Transform
+ pos: -82.403,-21.365345
+ parent: 2
- proto: BoxLightbulb
entities:
- uid: 3383
@@ -25605,66 +25351,42 @@ entities:
parent: 2
- proto: BrigTimer
entities:
- - uid: 5396
+ - uid: 368
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,4.5
+ rot: 1.5707963267948966 rad
+ pos: -97.5,-30.5
parent: 2
- type: DeviceLinkSource
linkedPorts:
- 8661:
- - Timer: Open
+ 357:
- Timer: AutoClose
- Start: Close
- - uid: 14643
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,8.5
- parent: 2
- - type: DeviceLinkSource
- linkedPorts:
- 8660:
- Timer: Open
- - Timer: AutoClose
- - Start: Close
- - uid: 15254
+ - uid: 516
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -97.5,-32.5
+ pos: -97.5,-26.5
parent: 2
- type: DeviceLinkSource
linkedPorts:
- 357:
+ 915:
+ - Timer: AutoClose
- Start: Close
- Timer: Open
- - Timer: AutoClose
- - uid: 22692
+ - uid: 517
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -97.5,-24.5
+ pos: -97.5,-22.5
parent: 2
- type: DeviceLinkSource
linkedPorts:
512:
- - Start: Close
- - Timer: Open
- Timer: AutoClose
- - uid: 22696
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -97.5,-28.5
- parent: 2
- - type: DeviceLinkSource
- linkedPorts:
- 915:
- Start: Close
- Timer: Open
- - Timer: AutoClose
- proto: Brutepack
entities:
- uid: 20642
@@ -25679,6 +25401,11 @@ entities:
parent: 2
- proto: Bucket
entities:
+ - uid: 4819
+ components:
+ - type: Transform
+ pos: -82.43224,-49.377106
+ parent: 2
- uid: 8165
components:
- type: Transform
@@ -25690,11 +25417,6 @@ entities:
- type: Transform
pos: -50.30467,-19.362368
parent: 2
- - uid: 20901
- components:
- - type: Transform
- pos: -80.42632,-49.478905
- parent: 2
- proto: ButtonFrameCaution
entities:
- uid: 1343
@@ -25702,18 +25424,6 @@ entities:
- type: Transform
pos: -102.5,31.5
parent: 2
- - uid: 1930
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -70.5,-1.5
- parent: 2
- - uid: 1931
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -39.5,-69.5
- parent: 2
- uid: 2549
components:
- type: Transform
@@ -25783,7 +25493,7 @@ entities:
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -60.5,4.5
+ pos: -60.5,4.25
parent: 2
- uid: 21089
components:
@@ -25809,12 +25519,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -83.5,22.5
parent: 2
- - uid: 25988
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -131.5,-48.8
- parent: 2
- proto: ButtonFrameCautionSecurity
entities:
- uid: 5327
@@ -25844,6 +25548,12 @@ entities:
rot: 1.5707963267948966 rad
pos: -152.5,-6.5
parent: 2
+ - uid: 6920
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -89.5,-35.5
+ parent: 2
- proto: ButtonFrameExit
entities:
- uid: 2446
@@ -25857,17 +25567,6 @@ entities:
- type: Transform
pos: -31.5,-22.5
parent: 2
- - uid: 15343
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -112.5,-42.5
- parent: 2
- - uid: 22689
- components:
- - type: Transform
- pos: -112.5,-48.5
- parent: 2
- uid: 25631
components:
- type: Transform
@@ -25905,17 +25604,22 @@ entities:
rot: 1.5707963267948966 rad
pos: -56.5,-24.5
parent: 2
- - uid: 8981
+ - uid: 13712
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -89.5,-39.5
+ pos: -87.5,13.5
parent: 2
- - uid: 13712
+ - uid: 16467
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -87.5,13.5
+ rot: 3.141592653589793 rad
+ pos: -116.5,-42.5
+ parent: 2
+ - uid: 16487
+ components:
+ - type: Transform
+ pos: -116.5,-48.5
parent: 2
- uid: 22377
components:
@@ -25923,11 +25627,17 @@ entities:
rot: 1.5707963267948966 rad
pos: -22.5,19.5
parent: 2
+ - uid: 24167
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -89.5,-40.5
+ parent: 2
- uid: 24962
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -131.5,-48.2
+ pos: -131.5,-48.5
parent: 2
- uid: 26037
components:
@@ -26058,31 +25768,11 @@ entities:
- type: Transform
pos: -15.5,-68.5
parent: 2
- - uid: 1402
- components:
- - type: Transform
- pos: -81.5,-38.5
- parent: 2
- uid: 1486
components:
- type: Transform
pos: -31.5,-45.5
parent: 2
- - uid: 1560
- components:
- - type: Transform
- pos: -79.5,-38.5
- parent: 2
- - uid: 1563
- components:
- - type: Transform
- pos: -79.5,-39.5
- parent: 2
- - uid: 1585
- components:
- - type: Transform
- pos: -80.5,-38.5
- parent: 2
- uid: 1642
components:
- type: Transform
@@ -26108,11 +25798,6 @@ entities:
- type: Transform
pos: -138.5,-46.5
parent: 2
- - uid: 1693
- components:
- - type: Transform
- pos: -82.5,-44.5
- parent: 2
- uid: 1755
components:
- type: Transform
@@ -26123,15 +25808,20 @@ entities:
- type: Transform
pos: -42.5,-64.5
parent: 2
- - uid: 1833
+ - uid: 1878
components:
- type: Transform
- pos: -80.5,-44.5
+ pos: -42.5,-67.5
parent: 2
- - uid: 1878
+ - uid: 1930
components:
- type: Transform
- pos: -42.5,-67.5
+ pos: -31.5,-2.5
+ parent: 2
+ - uid: 1931
+ components:
+ - type: Transform
+ pos: -31.5,-3.5
parent: 2
- uid: 1938
components:
@@ -26148,15 +25838,35 @@ entities:
- type: Transform
pos: -64.5,1.5
parent: 2
- - uid: 2373
+ - uid: 2390
components:
- type: Transform
- pos: -84.5,-44.5
+ pos: -130.5,-32.5
parent: 2
- - uid: 2390
+ - uid: 2406
components:
- type: Transform
- pos: -130.5,-32.5
+ pos: -96.5,-2.5
+ parent: 2
+ - uid: 2407
+ components:
+ - type: Transform
+ pos: -95.5,-2.5
+ parent: 2
+ - uid: 2409
+ components:
+ - type: Transform
+ pos: -95.5,-1.5
+ parent: 2
+ - uid: 2410
+ components:
+ - type: Transform
+ pos: -95.5,-0.5
+ parent: 2
+ - uid: 2411
+ components:
+ - type: Transform
+ pos: -95.5,-3.5
parent: 2
- uid: 2422
components:
@@ -26233,6 +25943,11 @@ entities:
- type: Transform
pos: -15.5,-6.5
parent: 2
+ - uid: 2646
+ components:
+ - type: Transform
+ pos: -76.5,-55.5
+ parent: 2
- uid: 2744
components:
- type: Transform
@@ -26383,11 +26098,31 @@ entities:
- type: Transform
pos: -55.5,5.5
parent: 2
+ - uid: 2800
+ components:
+ - type: Transform
+ pos: -76.5,-56.5
+ parent: 2
- uid: 2972
components:
- type: Transform
pos: -15.5,-7.5
parent: 2
+ - uid: 2989
+ components:
+ - type: Transform
+ pos: -76.5,-54.5
+ parent: 2
+ - uid: 2990
+ components:
+ - type: Transform
+ pos: -76.5,-57.5
+ parent: 2
+ - uid: 3010
+ components:
+ - type: Transform
+ pos: -76.5,-58.5
+ parent: 2
- uid: 3030
components:
- type: Transform
@@ -26713,6 +26448,11 @@ entities:
- type: Transform
pos: -70.5,-3.5
parent: 2
+ - uid: 3253
+ components:
+ - type: Transform
+ pos: -48.5,-64.5
+ parent: 2
- uid: 3255
components:
- type: Transform
@@ -26768,10 +26508,10 @@ entities:
- type: Transform
pos: -61.5,-12.5
parent: 2
- - uid: 3306
+ - uid: 3347
components:
- type: Transform
- pos: -74.5,-56.5
+ pos: -75.5,-54.5
parent: 2
- uid: 3396
components:
@@ -26783,21 +26523,51 @@ entities:
- type: Transform
pos: -98.5,32.5
parent: 2
+ - uid: 3404
+ components:
+ - type: Transform
+ pos: -74.5,-54.5
+ parent: 2
- uid: 3417
components:
- type: Transform
pos: -135.5,-39.5
parent: 2
+ - uid: 3424
+ components:
+ - type: Transform
+ pos: -92.5,-64.5
+ parent: 2
+ - uid: 3429
+ components:
+ - type: Transform
+ pos: -95.5,-4.5
+ parent: 2
- uid: 3433
components:
- type: Transform
pos: -129.5,-39.5
parent: 2
+ - uid: 3437
+ components:
+ - type: Transform
+ pos: -94.5,-2.5
+ parent: 2
- uid: 3455
components:
- type: Transform
pos: -131.5,-39.5
parent: 2
+ - uid: 3493
+ components:
+ - type: Transform
+ pos: -93.5,-2.5
+ parent: 2
+ - uid: 3501
+ components:
+ - type: Transform
+ pos: -99.5,-2.5
+ parent: 2
- uid: 3508
components:
- type: Transform
@@ -26853,11 +26623,6 @@ entities:
- type: Transform
pos: -68.5,-18.5
parent: 2
- - uid: 3744
- components:
- - type: Transform
- pos: -76.5,-56.5
- parent: 2
- uid: 3767
components:
- type: Transform
@@ -26868,11 +26633,26 @@ entities:
- type: Transform
pos: -24.5,-39.5
parent: 2
+ - uid: 3795
+ components:
+ - type: Transform
+ pos: -92.5,-62.5
+ parent: 2
- uid: 3797
components:
- type: Transform
pos: -25.5,-38.5
parent: 2
+ - uid: 3816
+ components:
+ - type: Transform
+ pos: -92.5,-63.5
+ parent: 2
+ - uid: 3835
+ components:
+ - type: Transform
+ pos: -97.5,-2.5
+ parent: 2
- uid: 3839
components:
- type: Transform
@@ -26881,7 +26661,7 @@ entities:
- uid: 3840
components:
- type: Transform
- pos: -77.5,-56.5
+ pos: -98.5,-2.5
parent: 2
- uid: 3843
components:
@@ -26893,10 +26673,15 @@ entities:
- type: Transform
pos: -104.5,-64.5
parent: 2
- - uid: 3964
+ - uid: 3938
components:
- type: Transform
- pos: -62.5,-57.5
+ pos: -93.5,-64.5
+ parent: 2
+ - uid: 3951
+ components:
+ - type: Transform
+ pos: -91.5,-64.5
parent: 2
- uid: 4006
components:
@@ -26908,66 +26693,21 @@ entities:
- type: Transform
pos: -26.5,-8.5
parent: 2
- - uid: 4095
- components:
- - type: Transform
- pos: -73.5,-54.5
- parent: 2
- - uid: 4107
- components:
- - type: Transform
- pos: -49.5,-71.5
- parent: 2
- - uid: 4112
- components:
- - type: Transform
- pos: -53.5,-71.5
- parent: 2
- uid: 4126
components:
- type: Transform
pos: -13.5,5.5
parent: 2
- - uid: 4156
- components:
- - type: Transform
- pos: -72.5,-62.5
- parent: 2
- uid: 4215
components:
- type: Transform
pos: -23.5,-9.5
parent: 2
- - uid: 4253
- components:
- - type: Transform
- pos: -52.5,-71.5
- parent: 2
- - uid: 4254
- components:
- - type: Transform
- pos: -51.5,-71.5
- parent: 2
- - uid: 4255
- components:
- - type: Transform
- pos: -50.5,-71.5
- parent: 2
- uid: 4324
components:
- type: Transform
pos: -124.5,-32.5
parent: 2
- - uid: 4326
- components:
- - type: Transform
- pos: -62.5,-58.5
- parent: 2
- - uid: 4402
- components:
- - type: Transform
- pos: -75.5,-56.5
- parent: 2
- uid: 4414
components:
- type: Transform
@@ -27013,11 +26753,6 @@ entities:
- type: Transform
pos: -88.5,-8.5
parent: 2
- - uid: 4558
- components:
- - type: Transform
- pos: -74.5,-35.5
- parent: 2
- uid: 4587
components:
- type: Transform
@@ -27098,6 +26833,11 @@ entities:
- type: Transform
pos: -19.5,-2.5
parent: 2
+ - uid: 4811
+ components:
+ - type: Transform
+ pos: -76.5,-37.5
+ parent: 2
- uid: 4849
components:
- type: Transform
@@ -27358,6 +27098,11 @@ entities:
- type: Transform
pos: -42.5,-62.5
parent: 2
+ - uid: 5581
+ components:
+ - type: Transform
+ pos: -48.5,-65.5
+ parent: 2
- uid: 5597
components:
- type: Transform
@@ -27498,11 +27243,6 @@ entities:
- type: Transform
pos: -123.5,-22.5
parent: 2
- - uid: 6436
- components:
- - type: Transform
- pos: -70.5,-57.5
- parent: 2
- uid: 6520
components:
- type: Transform
@@ -27518,50 +27258,15 @@ entities:
- type: Transform
pos: -43.5,-16.5
parent: 2
- - uid: 6688
- components:
- - type: Transform
- pos: -87.5,-44.5
- parent: 2
- uid: 6693
components:
- type: Transform
- pos: -85.5,-44.5
- parent: 2
- - uid: 6706
- components:
- - type: Transform
- pos: -86.5,-44.5
- parent: 2
- - uid: 6709
- components:
- - type: Transform
- pos: -83.5,-44.5
- parent: 2
- - uid: 6725
- components:
- - type: Transform
- pos: -70.5,-58.5
- parent: 2
- - uid: 6784
- components:
- - type: Transform
- pos: -55.5,-71.5
- parent: 2
- - uid: 6795
- components:
- - type: Transform
- pos: -93.5,-0.5
- parent: 2
- - uid: 6805
- components:
- - type: Transform
- pos: -95.5,-0.5
+ pos: -76.5,-66.5
parent: 2
- - uid: 6817
+ - uid: 6806
components:
- type: Transform
- pos: -74.5,-38.5
+ pos: -76.5,-69.5
parent: 2
- uid: 6869
components:
@@ -27673,36 +27378,11 @@ entities:
- type: Transform
pos: -140.5,-39.5
parent: 2
- - uid: 7491
- components:
- - type: Transform
- pos: -71.5,-38.5
- parent: 2
- - uid: 7507
- components:
- - type: Transform
- pos: -69.5,-38.5
- parent: 2
- - uid: 7511
- components:
- - type: Transform
- pos: -68.5,-38.5
- parent: 2
- uid: 7518
components:
- type: Transform
pos: -35.5,-39.5
parent: 2
- - uid: 7563
- components:
- - type: Transform
- pos: -91.5,-44.5
- parent: 2
- - uid: 7573
- components:
- - type: Transform
- pos: -88.5,-44.5
- parent: 2
- uid: 7680
components:
- type: Transform
@@ -27808,11 +27488,6 @@ entities:
- type: Transform
pos: -134.5,-39.5
parent: 2
- - uid: 7845
- components:
- - type: Transform
- pos: -90.5,-44.5
- parent: 2
- uid: 7847
components:
- type: Transform
@@ -27828,11 +27503,6 @@ entities:
- type: Transform
pos: -104.5,28.5
parent: 2
- - uid: 7889
- components:
- - type: Transform
- pos: -89.5,-44.5
- parent: 2
- uid: 7895
components:
- type: Transform
@@ -27843,11 +27513,6 @@ entities:
- type: Transform
pos: -104.5,25.5
parent: 2
- - uid: 8065
- components:
- - type: Transform
- pos: -91.5,-45.5
- parent: 2
- uid: 8092
components:
- type: Transform
@@ -28043,16 +27708,6 @@ entities:
- type: Transform
pos: -115.5,-41.5
parent: 2
- - uid: 8145
- components:
- - type: Transform
- pos: -91.5,-47.5
- parent: 2
- - uid: 8159
- components:
- - type: Transform
- pos: -91.5,-42.5
- parent: 2
- uid: 8311
components:
- type: Transform
@@ -28098,6 +27753,11 @@ entities:
- type: Transform
pos: -14.5,-63.5
parent: 2
+ - uid: 8567
+ components:
+ - type: Transform
+ pos: -76.5,-67.5
+ parent: 2
- uid: 8816
components:
- type: Transform
@@ -28113,36 +27773,11 @@ entities:
- type: Transform
pos: -21.5,-30.5
parent: 2
- - uid: 8901
- components:
- - type: Transform
- pos: -91.5,-39.5
- parent: 2
- - uid: 8903
- components:
- - type: Transform
- pos: -87.5,-38.5
- parent: 2
- uid: 8946
components:
- type: Transform
pos: -122.5,-14.5
parent: 2
- - uid: 8952
- components:
- - type: Transform
- pos: -91.5,-38.5
- parent: 2
- - uid: 8964
- components:
- - type: Transform
- pos: -88.5,-38.5
- parent: 2
- - uid: 8978
- components:
- - type: Transform
- pos: -89.5,-38.5
- parent: 2
- uid: 9027
components:
- type: Transform
@@ -28178,11 +27813,6 @@ entities:
- type: Transform
pos: -19.5,-30.5
parent: 2
- - uid: 9427
- components:
- - type: Transform
- pos: -57.5,-68.5
- parent: 2
- uid: 9527
components:
- type: Transform
@@ -28203,11 +27833,6 @@ entities:
- type: Transform
pos: -126.5,0.5
parent: 2
- - uid: 9606
- components:
- - type: Transform
- pos: -96.5,-0.5
- parent: 2
- uid: 9615
components:
- type: Transform
@@ -28218,26 +27843,6 @@ entities:
- type: Transform
pos: -128.5,3.5
parent: 2
- - uid: 9635
- components:
- - type: Transform
- pos: -94.5,-0.5
- parent: 2
- - uid: 9645
- components:
- - type: Transform
- pos: -54.5,-71.5
- parent: 2
- - uid: 9647
- components:
- - type: Transform
- pos: -57.5,-70.5
- parent: 2
- - uid: 9649
- components:
- - type: Transform
- pos: -57.5,-71.5
- parent: 2
- uid: 9678
components:
- type: Transform
@@ -28248,21 +27853,11 @@ entities:
- type: Transform
pos: -52.5,-36.5
parent: 2
- - uid: 9731
- components:
- - type: Transform
- pos: -57.5,-69.5
- parent: 2
- uid: 9786
components:
- type: Transform
pos: -35.5,-61.5
parent: 2
- - uid: 9787
- components:
- - type: Transform
- pos: -56.5,-71.5
- parent: 2
- uid: 9791
components:
- type: Transform
@@ -28378,11 +27973,6 @@ entities:
- type: Transform
pos: -120.5,16.5
parent: 2
- - uid: 9967
- components:
- - type: Transform
- pos: -73.5,-62.5
- parent: 2
- uid: 9972
components:
- type: Transform
@@ -28438,6 +28028,21 @@ entities:
- type: Transform
pos: -98.5,33.5
parent: 2
+ - uid: 10630
+ components:
+ - type: Transform
+ pos: -32.5,-3.5
+ parent: 2
+ - uid: 10631
+ components:
+ - type: Transform
+ pos: -32.5,-6.5
+ parent: 2
+ - uid: 10632
+ components:
+ - type: Transform
+ pos: -32.5,-4.5
+ parent: 2
- uid: 10633
components:
- type: Transform
@@ -28448,15 +28053,30 @@ entities:
- type: Transform
pos: -35.5,-4.5
parent: 2
- - uid: 10723
+ - uid: 10636
components:
- type: Transform
- pos: -38.5,-13.5
+ pos: -31.5,-1.5
parent: 2
- - uid: 10737
+ - uid: 10637
components:
- type: Transform
- pos: -39.5,-13.5
+ pos: -31.5,-7.5
+ parent: 2
+ - uid: 10638
+ components:
+ - type: Transform
+ pos: -31.5,-8.5
+ parent: 2
+ - uid: 10639
+ components:
+ - type: Transform
+ pos: -31.5,-9.5
+ parent: 2
+ - uid: 10640
+ components:
+ - type: Transform
+ pos: -32.5,-7.5
parent: 2
- uid: 10753
components:
@@ -28473,6 +28093,11 @@ entities:
- type: Transform
pos: -101.5,26.5
parent: 2
+ - uid: 11050
+ components:
+ - type: Transform
+ pos: -65.5,-64.5
+ parent: 2
- uid: 11058
components:
- type: Transform
@@ -28483,11 +28108,6 @@ entities:
- type: Transform
pos: -55.5,-59.5
parent: 2
- - uid: 11115
- components:
- - type: Transform
- pos: -40.5,-13.5
- parent: 2
- uid: 11120
components:
- type: Transform
@@ -28853,11 +28473,6 @@ entities:
- type: Transform
pos: -38.5,-61.5
parent: 2
- - uid: 12617
- components:
- - type: Transform
- pos: -42.5,-13.5
- parent: 2
- uid: 12726
components:
- type: Transform
@@ -30058,6 +29673,11 @@ entities:
- type: Transform
pos: -133.5,-32.5
parent: 2
+ - uid: 13722
+ components:
+ - type: Transform
+ pos: -88.5,2.5
+ parent: 2
- uid: 13728
components:
- type: Transform
@@ -30088,10 +29708,10 @@ entities:
- type: Transform
pos: -141.5,-45.5
parent: 2
- - uid: 13743
+ - uid: 13803
components:
- type: Transform
- pos: -41.5,-13.5
+ pos: -88.5,3.5
parent: 2
- uid: 13808
components:
@@ -30673,11 +30293,6 @@ entities:
- type: Transform
pos: -138.5,-40.5
parent: 2
- - uid: 14184
- components:
- - type: Transform
- pos: -72.5,-38.5
- parent: 2
- uid: 14217
components:
- type: Transform
@@ -30718,6 +30333,11 @@ entities:
- type: Transform
pos: -12.5,-36.5
parent: 2
+ - uid: 14608
+ components:
+ - type: Transform
+ pos: -71.5,-59.5
+ parent: 2
- uid: 14625
components:
- type: Transform
@@ -30733,41 +30353,11 @@ entities:
- type: Transform
pos: -68.5,-33.5
parent: 2
- - uid: 14746
- components:
- - type: Transform
- pos: -72.5,-54.5
- parent: 2
- uid: 14750
components:
- type: Transform
pos: -122.5,9.5
parent: 2
- - uid: 14764
- components:
- - type: Transform
- pos: -97.5,-0.5
- parent: 2
- - uid: 14775
- components:
- - type: Transform
- pos: -74.5,-37.5
- parent: 2
- - uid: 14836
- components:
- - type: Transform
- pos: -74.5,-62.5
- parent: 2
- - uid: 14837
- components:
- - type: Transform
- pos: -74.5,-60.5
- parent: 2
- - uid: 14838
- components:
- - type: Transform
- pos: -74.5,-63.5
- parent: 2
- uid: 14880
components:
- type: Transform
@@ -32028,11 +31618,6 @@ entities:
- type: Transform
pos: -47.5,-12.5
parent: 2
- - uid: 15850
- components:
- - type: Transform
- pos: -98.5,0.5
- parent: 2
- uid: 15853
components:
- type: Transform
@@ -32123,16 +31708,6 @@ entities:
- type: Transform
pos: -100.5,31.5
parent: 2
- - uid: 15999
- components:
- - type: Transform
- pos: -35.5,-3.5
- parent: 2
- - uid: 16013
- components:
- - type: Transform
- pos: -74.5,-59.5
- parent: 2
- uid: 16030
components:
- type: Transform
@@ -32148,41 +31723,11 @@ entities:
- type: Transform
pos: -145.5,-43.5
parent: 2
- - uid: 16045
- components:
- - type: Transform
- pos: -89.5,-60.5
- parent: 2
- - uid: 16046
- components:
- - type: Transform
- pos: -35.5,-2.5
- parent: 2
- - uid: 16092
- components:
- - type: Transform
- pos: -88.5,-59.5
- parent: 2
- - uid: 16104
- components:
- - type: Transform
- pos: -89.5,-61.5
- parent: 2
- uid: 16114
components:
- type: Transform
pos: -15.5,0.5
parent: 2
- - uid: 16171
- components:
- - type: Transform
- pos: -89.5,4.5
- parent: 2
- - uid: 16173
- components:
- - type: Transform
- pos: -89.5,5.5
- parent: 2
- uid: 16175
components:
- type: Transform
@@ -32198,21 +31743,6 @@ entities:
- type: Transform
pos: -41.5,-2.5
parent: 2
- - uid: 16187
- components:
- - type: Transform
- pos: -89.5,-59.5
- parent: 2
- - uid: 16210
- components:
- - type: Transform
- pos: -89.5,2.5
- parent: 2
- - uid: 16217
- components:
- - type: Transform
- pos: -89.5,1.5
- parent: 2
- uid: 16232
components:
- type: Transform
@@ -32228,31 +31758,11 @@ entities:
- type: Transform
pos: -94.5,22.5
parent: 2
- - uid: 16443
- components:
- - type: Transform
- pos: -89.5,3.5
- parent: 2
- - uid: 16461
- components:
- - type: Transform
- pos: -114.5,-31.5
- parent: 2
- - uid: 16467
- components:
- - type: Transform
- pos: -115.5,-31.5
- parent: 2
- uid: 16486
components:
- type: Transform
pos: -128.5,13.5
parent: 2
- - uid: 16487
- components:
- - type: Transform
- pos: -113.5,-31.5
- parent: 2
- uid: 16497
components:
- type: Transform
@@ -32283,6 +31793,11 @@ entities:
- type: Transform
pos: -33.5,-65.5
parent: 2
+ - uid: 16503
+ components:
+ - type: Transform
+ pos: -73.5,-58.5
+ parent: 2
- uid: 16555
components:
- type: Transform
@@ -32298,46 +31813,6 @@ entities:
- type: Transform
pos: -85.5,-8.5
parent: 2
- - uid: 16659
- components:
- - type: Transform
- pos: -108.5,-30.5
- parent: 2
- - uid: 16662
- components:
- - type: Transform
- pos: -108.5,-31.5
- parent: 2
- - uid: 16668
- components:
- - type: Transform
- pos: -109.5,-31.5
- parent: 2
- - uid: 16673
- components:
- - type: Transform
- pos: -74.5,-55.5
- parent: 2
- - uid: 16674
- components:
- - type: Transform
- pos: -110.5,-31.5
- parent: 2
- - uid: 16683
- components:
- - type: Transform
- pos: -111.5,-31.5
- parent: 2
- - uid: 16684
- components:
- - type: Transform
- pos: -112.5,-31.5
- parent: 2
- - uid: 16685
- components:
- - type: Transform
- pos: -107.5,-31.5
- parent: 2
- uid: 16708
components:
- type: Transform
@@ -32433,30 +31908,20 @@ entities:
- type: Transform
pos: -94.5,18.5
parent: 2
- - uid: 16807
- components:
- - type: Transform
- pos: -74.5,-64.5
- parent: 2
- uid: 16818
components:
- type: Transform
pos: -104.5,-46.5
parent: 2
- - uid: 16821
- components:
- - type: Transform
- pos: -88.5,-47.5
- parent: 2
- - uid: 16823
+ - uid: 16824
components:
- type: Transform
- pos: -87.5,-47.5
+ pos: -104.5,-45.5
parent: 2
- - uid: 16824
+ - uid: 16829
components:
- type: Transform
- pos: -104.5,-45.5
+ pos: -104.5,-47.5
parent: 2
- uid: 16834
components:
@@ -32473,25 +31938,15 @@ entities:
- type: Transform
pos: -36.5,-38.5
parent: 2
- - uid: 16969
- components:
- - type: Transform
- pos: -74.5,-65.5
- parent: 2
- - uid: 16973
- components:
- - type: Transform
- pos: -73.5,-65.5
- parent: 2
- uid: 16978
components:
- type: Transform
pos: -88.5,-6.5
parent: 2
- - uid: 17004
+ - uid: 16994
components:
- type: Transform
- pos: -74.5,-58.5
+ pos: -92.5,-65.5
parent: 2
- uid: 17008
components:
@@ -32538,11 +31993,6 @@ entities:
- type: Transform
pos: -87.5,-8.5
parent: 2
- - uid: 17128
- components:
- - type: Transform
- pos: -72.5,-65.5
- parent: 2
- uid: 17129
components:
- type: Transform
@@ -32673,36 +32123,11 @@ entities:
- type: Transform
pos: -16.5,-65.5
parent: 2
- - uid: 17808
- components:
- - type: Transform
- pos: -71.5,-65.5
- parent: 2
- - uid: 17827
- components:
- - type: Transform
- pos: -74.5,-57.5
- parent: 2
- - uid: 17829
- components:
- - type: Transform
- pos: -74.5,-54.5
- parent: 2
- - uid: 17836
- components:
- - type: Transform
- pos: -70.5,-38.5
- parent: 2
- uid: 17975
components:
- type: Transform
pos: -24.5,-2.5
parent: 2
- - uid: 18103
- components:
- - type: Transform
- pos: -70.5,-65.5
- parent: 2
- uid: 18174
components:
- type: Transform
@@ -32713,56 +32138,11 @@ entities:
- type: Transform
pos: -73.5,-21.5
parent: 2
- - uid: 18206
- components:
- - type: Transform
- pos: -93.5,-8.5
- parent: 2
- - uid: 18211
- components:
- - type: Transform
- pos: -93.5,-5.5
- parent: 2
- - uid: 18212
- components:
- - type: Transform
- pos: -86.5,-63.5
- parent: 2
- - uid: 18214
- components:
- - type: Transform
- pos: -87.5,-63.5
- parent: 2
- - uid: 18215
- components:
- - type: Transform
- pos: -10.5,-28.5
- parent: 2
- - uid: 18217
- components:
- - type: Transform
- pos: -91.5,-63.5
- parent: 2
- - uid: 18218
- components:
- - type: Transform
- pos: -96.5,-5.5
- parent: 2
- - uid: 18221
- components:
- - type: Transform
- pos: -90.5,-63.5
- parent: 2
- uid: 18260
components:
- type: Transform
pos: -125.5,-32.5
parent: 2
- - uid: 18349
- components:
- - type: Transform
- pos: -88.5,-63.5
- parent: 2
- uid: 18475
components:
- type: Transform
@@ -33358,6 +32738,241 @@ entities:
- type: Transform
pos: -88.5,-36.5
parent: 2
+ - uid: 18594
+ components:
+ - type: Transform
+ pos: -88.5,-37.5
+ parent: 2
+ - uid: 18595
+ components:
+ - type: Transform
+ pos: -88.5,-38.5
+ parent: 2
+ - uid: 18596
+ components:
+ - type: Transform
+ pos: -89.5,-38.5
+ parent: 2
+ - uid: 18597
+ components:
+ - type: Transform
+ pos: -90.5,-38.5
+ parent: 2
+ - uid: 18598
+ components:
+ - type: Transform
+ pos: -92.5,-38.5
+ parent: 2
+ - uid: 18599
+ components:
+ - type: Transform
+ pos: -93.5,-38.5
+ parent: 2
+ - uid: 18600
+ components:
+ - type: Transform
+ pos: -91.5,-38.5
+ parent: 2
+ - uid: 18601
+ components:
+ - type: Transform
+ pos: -87.5,-38.5
+ parent: 2
+ - uid: 18602
+ components:
+ - type: Transform
+ pos: -86.5,-38.5
+ parent: 2
+ - uid: 18603
+ components:
+ - type: Transform
+ pos: -84.5,-38.5
+ parent: 2
+ - uid: 18604
+ components:
+ - type: Transform
+ pos: -83.5,-38.5
+ parent: 2
+ - uid: 18605
+ components:
+ - type: Transform
+ pos: -82.5,-38.5
+ parent: 2
+ - uid: 18606
+ components:
+ - type: Transform
+ pos: -81.5,-43.5
+ parent: 2
+ - uid: 18607
+ components:
+ - type: Transform
+ pos: -80.5,-43.5
+ parent: 2
+ - uid: 18608
+ components:
+ - type: Transform
+ pos: -85.5,-38.5
+ parent: 2
+ - uid: 18609
+ components:
+ - type: Transform
+ pos: -83.5,-39.5
+ parent: 2
+ - uid: 18610
+ components:
+ - type: Transform
+ pos: -83.5,-40.5
+ parent: 2
+ - uid: 18611
+ components:
+ - type: Transform
+ pos: -83.5,-41.5
+ parent: 2
+ - uid: 18612
+ components:
+ - type: Transform
+ pos: -82.5,-41.5
+ parent: 2
+ - uid: 18613
+ components:
+ - type: Transform
+ pos: -91.5,-39.5
+ parent: 2
+ - uid: 18614
+ components:
+ - type: Transform
+ pos: -91.5,-40.5
+ parent: 2
+ - uid: 18615
+ components:
+ - type: Transform
+ pos: -91.5,-42.5
+ parent: 2
+ - uid: 18616
+ components:
+ - type: Transform
+ pos: -91.5,-43.5
+ parent: 2
+ - uid: 18617
+ components:
+ - type: Transform
+ pos: -91.5,-44.5
+ parent: 2
+ - uid: 18618
+ components:
+ - type: Transform
+ pos: -91.5,-41.5
+ parent: 2
+ - uid: 18619
+ components:
+ - type: Transform
+ pos: -91.5,-45.5
+ parent: 2
+ - uid: 18620
+ components:
+ - type: Transform
+ pos: -88.5,-45.5
+ parent: 2
+ - uid: 18621
+ components:
+ - type: Transform
+ pos: -90.5,-45.5
+ parent: 2
+ - uid: 18622
+ components:
+ - type: Transform
+ pos: -89.5,-45.5
+ parent: 2
+ - uid: 18623
+ components:
+ - type: Transform
+ pos: -87.5,-45.5
+ parent: 2
+ - uid: 18624
+ components:
+ - type: Transform
+ pos: -86.5,-45.5
+ parent: 2
+ - uid: 18625
+ components:
+ - type: Transform
+ pos: -85.5,-45.5
+ parent: 2
+ - uid: 18626
+ components:
+ - type: Transform
+ pos: -84.5,-45.5
+ parent: 2
+ - uid: 18627
+ components:
+ - type: Transform
+ pos: -83.5,-45.5
+ parent: 2
+ - uid: 18628
+ components:
+ - type: Transform
+ pos: -82.5,-45.5
+ parent: 2
+ - uid: 18629
+ components:
+ - type: Transform
+ pos: -82.5,-44.5
+ parent: 2
+ - uid: 18630
+ components:
+ - type: Transform
+ pos: -82.5,-43.5
+ parent: 2
+ - uid: 18631
+ components:
+ - type: Transform
+ pos: -82.5,-42.5
+ parent: 2
+ - uid: 18632
+ components:
+ - type: Transform
+ pos: -79.5,-43.5
+ parent: 2
+ - uid: 18633
+ components:
+ - type: Transform
+ pos: -79.5,-44.5
+ parent: 2
+ - uid: 18634
+ components:
+ - type: Transform
+ pos: -79.5,-45.5
+ parent: 2
+ - uid: 18635
+ components:
+ - type: Transform
+ pos: -79.5,-47.5
+ parent: 2
+ - uid: 18636
+ components:
+ - type: Transform
+ pos: -79.5,-48.5
+ parent: 2
+ - uid: 18637
+ components:
+ - type: Transform
+ pos: -79.5,-49.5
+ parent: 2
+ - uid: 18638
+ components:
+ - type: Transform
+ pos: -79.5,-46.5
+ parent: 2
+ - uid: 18639
+ components:
+ - type: Transform
+ pos: -91.5,-46.5
+ parent: 2
+ - uid: 18640
+ components:
+ - type: Transform
+ pos: -91.5,-47.5
+ parent: 2
- uid: 18641
components:
- type: Transform
@@ -33373,6 +32988,36 @@ entities:
- type: Transform
pos: -91.5,-48.5
parent: 2
+ - uid: 18644
+ components:
+ - type: Transform
+ pos: -88.5,-49.5
+ parent: 2
+ - uid: 18645
+ components:
+ - type: Transform
+ pos: -88.5,-48.5
+ parent: 2
+ - uid: 18646
+ components:
+ - type: Transform
+ pos: -88.5,-47.5
+ parent: 2
+ - uid: 18647
+ components:
+ - type: Transform
+ pos: -88.5,-46.5
+ parent: 2
+ - uid: 18648
+ components:
+ - type: Transform
+ pos: -85.5,-46.5
+ parent: 2
+ - uid: 18649
+ components:
+ - type: Transform
+ pos: -85.5,-47.5
+ parent: 2
- uid: 18650
components:
- type: Transform
@@ -33533,40 +33178,65 @@ entities:
- type: Transform
pos: -101.5,-40.5
parent: 2
- - uid: 18715
+ - uid: 18682
components:
- type: Transform
- pos: -73.5,-38.5
+ pos: -100.5,-27.5
parent: 2
- - uid: 18728
+ - uid: 18683
components:
- type: Transform
- pos: -36.5,-37.5
+ pos: -100.5,-29.5
parent: 2
- - uid: 18784
+ - uid: 18684
components:
- type: Transform
- pos: -138.5,-9.5
+ pos: -100.5,-28.5
parent: 2
- - uid: 18833
+ - uid: 18686
components:
- type: Transform
- pos: -83.5,-38.5
+ pos: -100.5,-25.5
parent: 2
- - uid: 18834
+ - uid: 18687
components:
- type: Transform
- pos: -10.5,-29.5
+ pos: -100.5,-24.5
parent: 2
- - uid: 18835
+ - uid: 18688
components:
- type: Transform
- pos: -92.5,-63.5
+ pos: -100.5,-23.5
parent: 2
- - uid: 18865
+ - uid: 18689
components:
- type: Transform
- pos: -98.5,1.5
+ pos: -100.5,-26.5
+ parent: 2
+ - uid: 18690
+ components:
+ - type: Transform
+ pos: -100.5,-31.5
+ parent: 2
+ - uid: 18691
+ components:
+ - type: Transform
+ pos: -100.5,-30.5
+ parent: 2
+ - uid: 18692
+ components:
+ - type: Transform
+ pos: -100.5,-32.5
+ parent: 2
+ - uid: 18728
+ components:
+ - type: Transform
+ pos: -36.5,-37.5
+ parent: 2
+ - uid: 18784
+ components:
+ - type: Transform
+ pos: -138.5,-9.5
parent: 2
- uid: 18972
components:
@@ -34523,6 +34193,11 @@ entities:
- type: Transform
pos: -108.5,-5.5
parent: 2
+ - uid: 19447
+ components:
+ - type: Transform
+ pos: -88.5,4.5
+ parent: 2
- uid: 19452
components:
- type: Transform
@@ -34538,11 +34213,6 @@ entities:
- type: Transform
pos: -68.5,-31.5
parent: 2
- - uid: 19622
- components:
- - type: Transform
- pos: -89.5,-62.5
- parent: 2
- uid: 19626
components:
- type: Transform
@@ -34558,6 +34228,11 @@ entities:
- type: Transform
pos: -54.5,-36.5
parent: 2
+ - uid: 19720
+ components:
+ - type: Transform
+ pos: -71.5,-58.5
+ parent: 2
- uid: 19733
components:
- type: Transform
@@ -34588,21 +34263,11 @@ entities:
- type: Transform
pos: -75.5,-25.5
parent: 2
- - uid: 19763
- components:
- - type: Transform
- pos: -69.5,-65.5
- parent: 2
- uid: 19802
components:
- type: Transform
pos: -94.5,23.5
parent: 2
- - uid: 19809
- components:
- - type: Transform
- pos: -89.5,-63.5
- parent: 2
- uid: 19813
components:
- type: Transform
@@ -35128,16 +34793,6 @@ entities:
- type: Transform
pos: -102.5,12.5
parent: 2
- - uid: 20148
- components:
- - type: Transform
- pos: -74.5,-61.5
- parent: 2
- - uid: 20266
- components:
- - type: Transform
- pos: -81.5,-44.5
- parent: 2
- uid: 20341
components:
- type: Transform
@@ -35203,71 +34858,11 @@ entities:
- type: Transform
pos: -10.5,-43.5
parent: 2
- - uid: 20459
- components:
- - type: Transform
- pos: -66.5,-65.5
- parent: 2
- - uid: 20515
- components:
- - type: Transform
- pos: -91.5,-43.5
- parent: 2
- - uid: 20516
- components:
- - type: Transform
- pos: -91.5,-46.5
- parent: 2
- - uid: 20517
- components:
- - type: Transform
- pos: -91.5,-40.5
- parent: 2
- - uid: 20518
- components:
- - type: Transform
- pos: -91.5,-41.5
- parent: 2
- - uid: 20519
- components:
- - type: Transform
- pos: -90.5,-38.5
- parent: 2
- - uid: 20520
- components:
- - type: Transform
- pos: -84.5,-47.5
- parent: 2
- - uid: 20521
- components:
- - type: Transform
- pos: -89.5,-47.5
- parent: 2
- - uid: 20522
- components:
- - type: Transform
- pos: -90.5,-47.5
- parent: 2
- - uid: 20536
- components:
- - type: Transform
- pos: -79.5,-43.5
- parent: 2
- uid: 20542
components:
- type: Transform
pos: -48.5,-52.5
parent: 2
- - uid: 20543
- components:
- - type: Transform
- pos: -79.5,-44.5
- parent: 2
- - uid: 20564
- components:
- - type: Transform
- pos: -79.5,-42.5
- parent: 2
- uid: 20598
components:
- type: Transform
@@ -35318,40 +34913,10 @@ entities:
- type: Transform
pos: -109.5,-10.5
parent: 2
- - uid: 20731
- components:
- - type: Transform
- pos: -67.5,-65.5
- parent: 2
- - uid: 20791
- components:
- - type: Transform
- pos: -74.5,-36.5
- parent: 2
- - uid: 20806
- components:
- - type: Transform
- pos: -86.5,-47.5
- parent: 2
- - uid: 20807
- components:
- - type: Transform
- pos: -83.5,-45.5
- parent: 2
- - uid: 20809
- components:
- - type: Transform
- pos: -83.5,-47.5
- parent: 2
- - uid: 20810
- components:
- - type: Transform
- pos: -85.5,-47.5
- parent: 2
- - uid: 20827
+ - uid: 20728
components:
- type: Transform
- pos: -83.5,-46.5
+ pos: -71.5,-57.5
parent: 2
- uid: 20872
components:
@@ -35453,11 +35018,6 @@ entities:
- type: Transform
pos: -28.5,-59.5
parent: 2
- - uid: 20893
- components:
- - type: Transform
- pos: -68.5,-65.5
- parent: 2
- uid: 20899
components:
- type: Transform
@@ -35698,6 +35258,11 @@ entities:
- type: Transform
pos: -118.5,-4.5
parent: 2
+ - uid: 21499
+ components:
+ - type: Transform
+ pos: -73.5,-57.5
+ parent: 2
- uid: 21500
components:
- type: Transform
@@ -35743,6 +35308,16 @@ entities:
- type: Transform
pos: -65.5,-56.5
parent: 2
+ - uid: 21509
+ components:
+ - type: Transform
+ pos: -73.5,-56.5
+ parent: 2
+ - uid: 21510
+ components:
+ - type: Transform
+ pos: -71.5,-56.5
+ parent: 2
- uid: 21511
components:
- type: Transform
@@ -35763,6 +35338,11 @@ entities:
- type: Transform
pos: -67.5,-56.5
parent: 2
+ - uid: 21515
+ components:
+ - type: Transform
+ pos: -72.5,-56.5
+ parent: 2
- uid: 21516
components:
- type: Transform
@@ -35923,6 +35503,11 @@ entities:
- type: Transform
pos: -67.5,-54.5
parent: 2
+ - uid: 21554
+ components:
+ - type: Transform
+ pos: -75.5,-56.5
+ parent: 2
- uid: 21716
components:
- type: Transform
@@ -35958,11 +35543,6 @@ entities:
- type: Transform
pos: -68.5,-21.5
parent: 2
- - uid: 22115
- components:
- - type: Transform
- pos: -79.5,-41.5
- parent: 2
- uid: 22124
components:
- type: Transform
@@ -36033,11 +35613,6 @@ entities:
- type: Transform
pos: -18.5,-28.5
parent: 2
- - uid: 22478
- components:
- - type: Transform
- pos: -98.5,-0.5
- parent: 2
- uid: 22486
components:
- type: Transform
@@ -36073,6 +35648,61 @@ entities:
- type: Transform
pos: -121.5,-4.5
parent: 2
+ - uid: 22494
+ components:
+ - type: Transform
+ pos: -109.5,-28.5
+ parent: 2
+ - uid: 22495
+ components:
+ - type: Transform
+ pos: -109.5,-30.5
+ parent: 2
+ - uid: 22496
+ components:
+ - type: Transform
+ pos: -109.5,-31.5
+ parent: 2
+ - uid: 22497
+ components:
+ - type: Transform
+ pos: -109.5,-29.5
+ parent: 2
+ - uid: 22498
+ components:
+ - type: Transform
+ pos: -109.5,-32.5
+ parent: 2
+ - uid: 22499
+ components:
+ - type: Transform
+ pos: -110.5,-31.5
+ parent: 2
+ - uid: 22500
+ components:
+ - type: Transform
+ pos: -111.5,-31.5
+ parent: 2
+ - uid: 22501
+ components:
+ - type: Transform
+ pos: -113.5,-31.5
+ parent: 2
+ - uid: 22502
+ components:
+ - type: Transform
+ pos: -114.5,-31.5
+ parent: 2
+ - uid: 22503
+ components:
+ - type: Transform
+ pos: -112.5,-31.5
+ parent: 2
+ - uid: 22504
+ components:
+ - type: Transform
+ pos: -108.5,-31.5
+ parent: 2
- uid: 22505
components:
- type: Transform
@@ -36508,6 +36138,11 @@ entities:
- type: Transform
pos: -106.5,25.5
parent: 2
+ - uid: 22692
+ components:
+ - type: Transform
+ pos: -106.5,26.5
+ parent: 2
- uid: 22710
components:
- type: Transform
@@ -37083,6 +36718,11 @@ entities:
- type: Transform
pos: -101.5,-56.5
parent: 2
+ - uid: 22876
+ components:
+ - type: Transform
+ pos: -77.5,-56.5
+ parent: 2
- uid: 22900
components:
- type: Transform
@@ -37218,15 +36858,20 @@ entities:
- type: Transform
pos: -27.5,-67.5
parent: 2
- - uid: 22952
+ - uid: 22950
components:
- type: Transform
- pos: -58.5,-33.5
+ pos: -26.5,-64.5
parent: 2
- - uid: 23111
+ - uid: 22951
components:
- type: Transform
- pos: -104.5,-47.5
+ pos: -26.5,-65.5
+ parent: 2
+ - uid: 22952
+ components:
+ - type: Transform
+ pos: -58.5,-33.5
parent: 2
- uid: 23124
components:
@@ -37243,16 +36888,6 @@ entities:
- type: Transform
pos: -135.5,24.5
parent: 2
- - uid: 23187
- components:
- - type: Transform
- pos: -98.5,3.5
- parent: 2
- - uid: 23188
- components:
- - type: Transform
- pos: -98.5,2.5
- parent: 2
- uid: 23191
components:
- type: Transform
@@ -37283,15 +36918,170 @@ entities:
- type: Transform
pos: -50.5,-63.5
parent: 2
+ - uid: 23206
+ components:
+ - type: Transform
+ pos: -48.5,-66.5
+ parent: 2
+ - uid: 23208
+ components:
+ - type: Transform
+ pos: -48.5,-67.5
+ parent: 2
+ - uid: 23209
+ components:
+ - type: Transform
+ pos: -48.5,-68.5
+ parent: 2
+ - uid: 23210
+ components:
+ - type: Transform
+ pos: -48.5,-69.5
+ parent: 2
+ - uid: 23211
+ components:
+ - type: Transform
+ pos: -48.5,-70.5
+ parent: 2
+ - uid: 23212
+ components:
+ - type: Transform
+ pos: -48.5,-71.5
+ parent: 2
+ - uid: 23213
+ components:
+ - type: Transform
+ pos: -49.5,-71.5
+ parent: 2
+ - uid: 23214
+ components:
+ - type: Transform
+ pos: -50.5,-71.5
+ parent: 2
+ - uid: 23215
+ components:
+ - type: Transform
+ pos: -52.5,-71.5
+ parent: 2
+ - uid: 23216
+ components:
+ - type: Transform
+ pos: -53.5,-71.5
+ parent: 2
+ - uid: 23217
+ components:
+ - type: Transform
+ pos: -54.5,-71.5
+ parent: 2
- uid: 23218
components:
- type: Transform
- pos: -93.5,-10.5
+ pos: -55.5,-71.5
parent: 2
- uid: 23219
components:
- type: Transform
- pos: -93.5,-63.5
+ pos: -56.5,-71.5
+ parent: 2
+ - uid: 23220
+ components:
+ - type: Transform
+ pos: -57.5,-71.5
+ parent: 2
+ - uid: 23221
+ components:
+ - type: Transform
+ pos: -58.5,-71.5
+ parent: 2
+ - uid: 23222
+ components:
+ - type: Transform
+ pos: -51.5,-71.5
+ parent: 2
+ - uid: 23223
+ components:
+ - type: Transform
+ pos: -59.5,-71.5
+ parent: 2
+ - uid: 23224
+ components:
+ - type: Transform
+ pos: -60.5,-71.5
+ parent: 2
+ - uid: 23225
+ components:
+ - type: Transform
+ pos: -60.5,-70.5
+ parent: 2
+ - uid: 23226
+ components:
+ - type: Transform
+ pos: -60.5,-69.5
+ parent: 2
+ - uid: 23227
+ components:
+ - type: Transform
+ pos: -57.5,-72.5
+ parent: 2
+ - uid: 23228
+ components:
+ - type: Transform
+ pos: -76.5,-59.5
+ parent: 2
+ - uid: 23229
+ components:
+ - type: Transform
+ pos: -76.5,-61.5
+ parent: 2
+ - uid: 23230
+ components:
+ - type: Transform
+ pos: -76.5,-62.5
+ parent: 2
+ - uid: 23231
+ components:
+ - type: Transform
+ pos: -76.5,-63.5
+ parent: 2
+ - uid: 23232
+ components:
+ - type: Transform
+ pos: -76.5,-64.5
+ parent: 2
+ - uid: 23233
+ components:
+ - type: Transform
+ pos: -76.5,-65.5
+ parent: 2
+ - uid: 23234
+ components:
+ - type: Transform
+ pos: -76.5,-60.5
+ parent: 2
+ - uid: 23235
+ components:
+ - type: Transform
+ pos: -75.5,-65.5
+ parent: 2
+ - uid: 23236
+ components:
+ - type: Transform
+ pos: -74.5,-65.5
+ parent: 2
+ - uid: 23237
+ components:
+ - type: Transform
+ pos: -73.5,-65.5
+ parent: 2
+ - uid: 23238
+ components:
+ - type: Transform
+ pos: -71.5,-65.5
+ parent: 2
+ - uid: 23242
+ components:
+ - type: Transform
+ pos: -72.5,-65.5
parent: 2
- uid: 23253
components:
@@ -37353,45 +37143,175 @@ entities:
- type: Transform
pos: -47.5,-59.5
parent: 2
+ - uid: 23266
+ components:
+ - type: Transform
+ pos: -76.5,-70.5
+ parent: 2
+ - uid: 23267
+ components:
+ - type: Transform
+ pos: -76.5,-71.5
+ parent: 2
+ - uid: 23268
+ components:
+ - type: Transform
+ pos: -76.5,-72.5
+ parent: 2
+ - uid: 23269
+ components:
+ - type: Transform
+ pos: -76.5,-73.5
+ parent: 2
+ - uid: 23270
+ components:
+ - type: Transform
+ pos: -76.5,-74.5
+ parent: 2
+ - uid: 23271
+ components:
+ - type: Transform
+ pos: -76.5,-75.5
+ parent: 2
+ - uid: 23272
+ components:
+ - type: Transform
+ pos: -76.5,-68.5
+ parent: 2
+ - uid: 23273
+ components:
+ - type: Transform
+ pos: -77.5,-75.5
+ parent: 2
+ - uid: 23274
+ components:
+ - type: Transform
+ pos: -78.5,-75.5
+ parent: 2
+ - uid: 23275
+ components:
+ - type: Transform
+ pos: -78.5,-76.5
+ parent: 2
+ - uid: 23276
+ components:
+ - type: Transform
+ pos: -79.5,-76.5
+ parent: 2
+ - uid: 23277
+ components:
+ - type: Transform
+ pos: -81.5,-76.5
+ parent: 2
+ - uid: 23278
+ components:
+ - type: Transform
+ pos: -82.5,-76.5
+ parent: 2
+ - uid: 23279
+ components:
+ - type: Transform
+ pos: -80.5,-76.5
+ parent: 2
- uid: 23280
components:
- type: Transform
- pos: -78.5,-44.5
+ pos: -82.5,-77.5
+ parent: 2
+ - uid: 23281
+ components:
+ - type: Transform
+ pos: -82.5,-78.5
parent: 2
- uid: 23282
components:
- type: Transform
- pos: -93.5,-7.5
+ pos: -82.5,-79.5
parent: 2
- - uid: 23286
+ - uid: 23283
components:
- type: Transform
- pos: -94.5,-10.5
+ pos: -82.5,-80.5
parent: 2
- - uid: 23287
+ - uid: 23284
components:
- type: Transform
- pos: -93.5,-9.5
+ pos: -82.5,-81.5
parent: 2
- - uid: 23294
+ - uid: 23300
components:
- type: Transform
- pos: -92.5,-5.5
+ pos: -76.5,-44.5
parent: 2
- - uid: 23297
+ - uid: 23301
components:
- type: Transform
- pos: -93.5,-6.5
+ pos: -76.5,-43.5
+ parent: 2
+ - uid: 23302
+ components:
+ - type: Transform
+ pos: -76.5,-50.5
+ parent: 2
+ - uid: 23303
+ components:
+ - type: Transform
+ pos: -76.5,-41.5
+ parent: 2
+ - uid: 23304
+ components:
+ - type: Transform
+ pos: -76.5,-39.5
+ parent: 2
+ - uid: 23305
+ components:
+ - type: Transform
+ pos: -76.5,-38.5
+ parent: 2
+ - uid: 23306
+ components:
+ - type: Transform
+ pos: -76.5,-42.5
+ parent: 2
+ - uid: 23307
+ components:
+ - type: Transform
+ pos: -76.5,-40.5
parent: 2
- uid: 23309
components:
- type: Transform
- pos: -95.5,-5.5
+ pos: -76.5,-52.5
parent: 2
- uid: 23310
components:
- type: Transform
- pos: -94.5,-5.5
+ pos: -76.5,-51.5
+ parent: 2
+ - uid: 23311
+ components:
+ - type: Transform
+ pos: -76.5,-49.5
+ parent: 2
+ - uid: 23312
+ components:
+ - type: Transform
+ pos: -76.5,-48.5
+ parent: 2
+ - uid: 23313
+ components:
+ - type: Transform
+ pos: -76.5,-47.5
+ parent: 2
+ - uid: 23314
+ components:
+ - type: Transform
+ pos: -76.5,-46.5
+ parent: 2
+ - uid: 23315
+ components:
+ - type: Transform
+ pos: -76.5,-45.5
parent: 2
- uid: 23316
components:
@@ -37458,21 +37378,6 @@ entities:
- type: Transform
pos: -68.5,-27.5
parent: 2
- - uid: 23395
- components:
- - type: Transform
- pos: -86.5,-38.5
- parent: 2
- - uid: 23435
- components:
- - type: Transform
- pos: -84.5,-38.5
- parent: 2
- - uid: 23455
- components:
- - type: Transform
- pos: -79.5,-40.5
- parent: 2
- uid: 23465
components:
- type: Transform
@@ -37613,6 +37518,11 @@ entities:
- type: Transform
pos: -94.5,32.5
parent: 2
+ - uid: 23519
+ components:
+ - type: Transform
+ pos: -72.5,-38.5
+ parent: 2
- uid: 23520
components:
- type: Transform
@@ -37998,16 +37908,6 @@ entities:
- type: Transform
pos: -68.5,-35.5
parent: 2
- - uid: 23676
- components:
- - type: Transform
- pos: -82.5,-38.5
- parent: 2
- - uid: 23707
- components:
- - type: Transform
- pos: -85.5,-38.5
- parent: 2
- uid: 23775
components:
- type: Transform
@@ -38673,25 +38573,30 @@ entities:
- type: Transform
pos: -44.5,-63.5
parent: 2
- - uid: 24389
+ - uid: 24434
components:
- type: Transform
- pos: -104.5,-48.5
+ pos: -99.5,-1.5
parent: 2
- - uid: 24447
+ - uid: 24438
components:
- type: Transform
- pos: -104.5,-50.5
+ pos: -100.5,-1.5
parent: 2
- - uid: 24523
+ - uid: 24607
components:
- type: Transform
- pos: -104.5,-51.5
+ pos: -91.5,-60.5
parent: 2
- - uid: 24537
+ - uid: 24608
components:
- type: Transform
- pos: -104.5,-49.5
+ pos: -92.5,-60.5
+ parent: 2
+ - uid: 24609
+ components:
+ - type: Transform
+ pos: -92.5,-61.5
parent: 2
- uid: 24629
components:
@@ -38823,21 +38728,6 @@ entities:
- type: Transform
pos: -94.5,45.5
parent: 2
- - uid: 24813
- components:
- - type: Transform
- pos: -104.5,-52.5
- parent: 2
- - uid: 24836
- components:
- - type: Transform
- pos: -86.5,-36.5
- parent: 2
- - uid: 24837
- components:
- - type: Transform
- pos: -86.5,-37.5
- parent: 2
- uid: 25114
components:
- type: Transform
@@ -39103,11 +38993,6 @@ entities:
- type: Transform
pos: -94.5,39.5
parent: 2
- - uid: 25968
- components:
- - type: Transform
- pos: -117.5,26.5
- parent: 2
- uid: 25970
components:
- type: Transform
@@ -39178,40 +39063,75 @@ entities:
- type: Transform
pos: -73.5,-35.5
parent: 2
+ - uid: 25984
+ components:
+ - type: Transform
+ pos: -74.5,-35.5
+ parent: 2
+ - uid: 25985
+ components:
+ - type: Transform
+ pos: -75.5,-35.5
+ parent: 2
+ - uid: 25986
+ components:
+ - type: Transform
+ pos: -76.5,-35.5
+ parent: 2
+ - uid: 25987
+ components:
+ - type: Transform
+ pos: -76.5,-36.5
+ parent: 2
+ - uid: 25988
+ components:
+ - type: Transform
+ pos: -76.5,-37.5
+ parent: 2
+ - uid: 25989
+ components:
+ - type: Transform
+ pos: -75.5,-37.5
+ parent: 2
+ - uid: 25990
+ components:
+ - type: Transform
+ pos: -74.5,-37.5
+ parent: 2
+ - uid: 25991
+ components:
+ - type: Transform
+ pos: -73.5,-37.5
+ parent: 2
- uid: 25992
components:
- type: Transform
- pos: -133.5,-13.5
+ pos: -72.5,-37.5
parent: 2
- uid: 25993
components:
- type: Transform
- pos: -133.5,-14.5
+ pos: -71.5,-37.5
parent: 2
- uid: 25994
components:
- type: Transform
- pos: -133.5,-15.5
+ pos: -70.5,-37.5
parent: 2
- uid: 25995
components:
- type: Transform
- pos: -133.5,-16.5
- parent: 2
- - uid: 25996
- components:
- - type: Transform
- pos: -133.5,-17.5
+ pos: -69.5,-37.5
parent: 2
- uid: 25997
components:
- type: Transform
- pos: -133.5,-19.5
+ pos: -72.5,-39.5
parent: 2
- uid: 25998
components:
- type: Transform
- pos: -133.5,-20.5
+ pos: -72.5,-40.5
parent: 2
- uid: 25999
components:
@@ -39378,26 +39298,11 @@ entities:
- type: Transform
pos: -33.5,6.5
parent: 2
- - uid: 26038
- components:
- - type: Transform
- pos: -133.5,-21.5
- parent: 2
- - uid: 26039
- components:
- - type: Transform
- pos: -133.5,-22.5
- parent: 2
- uid: 26040
components:
- type: Transform
pos: -39.5,2.5
parent: 2
- - uid: 26041
- components:
- - type: Transform
- pos: -133.5,-23.5
- parent: 2
- uid: 26042
components:
- type: Transform
@@ -39443,56 +39348,6 @@ entities:
- type: Transform
pos: -40.5,0.5
parent: 2
- - uid: 26051
- components:
- - type: Transform
- pos: -133.5,-18.5
- parent: 2
- - uid: 26052
- components:
- - type: Transform
- pos: -133.5,-24.5
- parent: 2
- - uid: 26054
- components:
- - type: Transform
- pos: -133.5,-26.5
- parent: 2
- - uid: 26055
- components:
- - type: Transform
- pos: -133.5,-25.5
- parent: 2
- - uid: 26056
- components:
- - type: Transform
- pos: -133.5,-27.5
- parent: 2
- - uid: 26057
- components:
- - type: Transform
- pos: -132.5,-27.5
- parent: 2
- - uid: 26058
- components:
- - type: Transform
- pos: -131.5,-27.5
- parent: 2
- - uid: 26059
- components:
- - type: Transform
- pos: -130.5,-27.5
- parent: 2
- - uid: 26060
- components:
- - type: Transform
- pos: -128.5,-27.5
- parent: 2
- - uid: 26098
- components:
- - type: Transform
- pos: -127.5,-27.5
- parent: 2
- uid: 26181
components:
- type: Transform
@@ -39518,71 +39373,6 @@ entities:
- type: Transform
pos: -130.5,-52.5
parent: 2
- - uid: 26186
- components:
- - type: Transform
- pos: -126.5,-27.5
- parent: 2
- - uid: 26187
- components:
- - type: Transform
- pos: -125.5,-27.5
- parent: 2
- - uid: 26188
- components:
- - type: Transform
- pos: -124.5,-27.5
- parent: 2
- - uid: 26189
- components:
- - type: Transform
- pos: -123.5,-27.5
- parent: 2
- - uid: 26190
- components:
- - type: Transform
- pos: -129.5,-27.5
- parent: 2
- - uid: 26191
- components:
- - type: Transform
- pos: -122.5,-27.5
- parent: 2
- - uid: 26192
- components:
- - type: Transform
- pos: -121.5,-27.5
- parent: 2
- - uid: 26204
- components:
- - type: Transform
- pos: -25.5,-63.5
- parent: 2
- - uid: 26205
- components:
- - type: Transform
- pos: -25.5,-64.5
- parent: 2
- - uid: 26206
- components:
- - type: Transform
- pos: -25.5,-66.5
- parent: 2
- - uid: 26207
- components:
- - type: Transform
- pos: -25.5,-67.5
- parent: 2
- - uid: 26208
- components:
- - type: Transform
- pos: -25.5,-65.5
- parent: 2
- - uid: 26209
- components:
- - type: Transform
- pos: -26.5,-67.5
- parent: 2
- proto: CableApcStack
entities:
- uid: 4360
@@ -39590,11 +39380,6 @@ entities:
- type: Transform
pos: -26.681332,-6.5260487
parent: 2
- - uid: 23304
- components:
- - type: Transform
- pos: -112.261406,-29.224083
- parent: 2
- proto: CableApcStack1
entities:
- uid: 21068
@@ -39663,6 +39448,11 @@ entities:
- type: Transform
pos: -77.5,-8.5
parent: 2
+ - uid: 507
+ components:
+ - type: Transform
+ pos: -88.5,4.5
+ parent: 2
- uid: 525
components:
- type: Transform
@@ -39688,11 +39478,6 @@ entities:
- type: Transform
pos: -26.5,-57.5
parent: 2
- - uid: 913
- components:
- - type: Transform
- pos: -59.5,-68.5
- parent: 2
- uid: 990
components:
- type: Transform
@@ -39713,6 +39498,11 @@ entities:
- type: Transform
pos: -153.5,18.5
parent: 2
+ - uid: 1723
+ components:
+ - type: Transform
+ pos: -76.5,-36.5
+ parent: 2
- uid: 1787
components:
- type: Transform
@@ -39763,6 +39553,11 @@ entities:
- type: Transform
pos: -93.5,-44.5
parent: 2
+ - uid: 1919
+ components:
+ - type: Transform
+ pos: -101.5,-24.5
+ parent: 2
- uid: 1948
components:
- type: Transform
@@ -39855,6 +39650,11 @@ entities:
- type: Transform
pos: -86.5,-17.5
parent: 2
+ - uid: 2083
+ components:
+ - type: Transform
+ pos: -78.5,-44.5
+ parent: 2
- uid: 2084
components:
- type: Transform
@@ -40130,6 +39930,11 @@ entities:
- type: Transform
pos: -98.5,-27.5
parent: 2
+ - uid: 2361
+ components:
+ - type: Transform
+ pos: -100.5,-27.5
+ parent: 2
- uid: 2383
components:
- type: Transform
@@ -40180,20 +39985,75 @@ entities:
- type: Transform
pos: -111.5,-10.5
parent: 2
- - uid: 2561
+ - uid: 2563
components:
- type: Transform
- pos: -59.5,-66.5
+ pos: -78.5,-35.5
parent: 2
- - uid: 2562
+ - uid: 2572
components:
- type: Transform
- pos: -59.5,-67.5
+ pos: -78.5,-36.5
parent: 2
- - uid: 2629
+ - uid: 2573
+ components:
+ - type: Transform
+ pos: -78.5,-37.5
+ parent: 2
+ - uid: 2576
+ components:
+ - type: Transform
+ pos: -78.5,-47.5
+ parent: 2
+ - uid: 2578
+ components:
+ - type: Transform
+ pos: -78.5,-46.5
+ parent: 2
+ - uid: 2579
+ components:
+ - type: Transform
+ pos: -78.5,-38.5
+ parent: 2
+ - uid: 2580
+ components:
+ - type: Transform
+ pos: -78.5,-48.5
+ parent: 2
+ - uid: 2583
+ components:
+ - type: Transform
+ pos: -78.5,-49.5
+ parent: 2
+ - uid: 2584
+ components:
+ - type: Transform
+ pos: -78.5,-40.5
+ parent: 2
+ - uid: 2585
+ components:
+ - type: Transform
+ pos: -78.5,-41.5
+ parent: 2
+ - uid: 2586
components:
- type: Transform
- pos: -59.5,-69.5
+ pos: -78.5,-50.5
+ parent: 2
+ - uid: 2587
+ components:
+ - type: Transform
+ pos: -78.5,-51.5
+ parent: 2
+ - uid: 2603
+ components:
+ - type: Transform
+ pos: -80.5,-38.5
+ parent: 2
+ - uid: 2608
+ components:
+ - type: Transform
+ pos: -92.5,-44.5
parent: 2
- uid: 2635
components:
@@ -40205,6 +40065,11 @@ entities:
- type: Transform
pos: -94.5,-49.5
parent: 2
+ - uid: 2676
+ components:
+ - type: Transform
+ pos: -78.5,-39.5
+ parent: 2
- uid: 2805
components:
- type: Transform
@@ -40595,6 +40460,16 @@ entities:
- type: Transform
pos: -57.5,-80.5
parent: 2
+ - uid: 3421
+ components:
+ - type: Transform
+ pos: -88.5,1.5
+ parent: 2
+ - uid: 3423
+ components:
+ - type: Transform
+ pos: -88.5,0.5
+ parent: 2
- uid: 3425
components:
- type: Transform
@@ -40645,6 +40520,11 @@ entities:
- type: Transform
pos: -90.5,-27.5
parent: 2
+ - uid: 3720
+ components:
+ - type: Transform
+ pos: -78.5,-34.5
+ parent: 2
- uid: 3740
components:
- type: Transform
@@ -40655,6 +40535,36 @@ entities:
- type: Transform
pos: 0.5,6.5
parent: 2
+ - uid: 3812
+ components:
+ - type: Transform
+ pos: -84.5,-38.5
+ parent: 2
+ - uid: 3946
+ components:
+ - type: Transform
+ pos: -82.5,-42.5
+ parent: 2
+ - uid: 3948
+ components:
+ - type: Transform
+ pos: -82.5,-41.5
+ parent: 2
+ - uid: 3961
+ components:
+ - type: Transform
+ pos: -82.5,-40.5
+ parent: 2
+ - uid: 3962
+ components:
+ - type: Transform
+ pos: -82.5,-39.5
+ parent: 2
+ - uid: 3964
+ components:
+ - type: Transform
+ pos: -91.5,-37.5
+ parent: 2
- uid: 3971
components:
- type: Transform
@@ -40670,6 +40580,11 @@ entities:
- type: Transform
pos: -91.5,-30.5
parent: 2
+ - uid: 4000
+ components:
+ - type: Transform
+ pos: -101.5,-26.5
+ parent: 2
- uid: 4001
components:
- type: Transform
@@ -40705,6 +40620,11 @@ entities:
- type: Transform
pos: -97.5,-27.5
parent: 2
+ - uid: 4024
+ components:
+ - type: Transform
+ pos: -101.5,-27.5
+ parent: 2
- uid: 4025
components:
- type: Transform
@@ -40790,6 +40710,11 @@ entities:
- type: Transform
pos: -94.5,-51.5
parent: 2
+ - uid: 4277
+ components:
+ - type: Transform
+ pos: -48.5,-65.5
+ parent: 2
- uid: 4289
components:
- type: Transform
@@ -40895,6 +40820,11 @@ entities:
- type: Transform
pos: -72.5,-35.5
parent: 2
+ - uid: 4568
+ components:
+ - type: Transform
+ pos: -74.5,-35.5
+ parent: 2
- uid: 4571
components:
- type: Transform
@@ -40910,6 +40840,16 @@ entities:
- type: Transform
pos: -105.5,15.5
parent: 2
+ - uid: 4664
+ components:
+ - type: Transform
+ pos: -105.5,6.5
+ parent: 2
+ - uid: 4687
+ components:
+ - type: Transform
+ pos: -104.5,5.5
+ parent: 2
- uid: 4701
components:
- type: Transform
@@ -41920,11 +41860,6 @@ entities:
- type: Transform
pos: -28.5,2.5
parent: 2
- - uid: 5105
- components:
- - type: Transform
- pos: -58.5,-69.5
- parent: 2
- uid: 5173
components:
- type: Transform
@@ -42335,11 +42270,21 @@ entities:
- type: Transform
pos: -149.5,-32.5
parent: 2
+ - uid: 5611
+ components:
+ - type: Transform
+ pos: -105.5,10.5
+ parent: 2
- uid: 5620
components:
- type: Transform
pos: -136.5,13.5
parent: 2
+ - uid: 5697
+ components:
+ - type: Transform
+ pos: -48.5,-64.5
+ parent: 2
- uid: 5706
components:
- type: Transform
@@ -42435,6 +42380,16 @@ entities:
- type: Transform
pos: -103.5,-2.5
parent: 2
+ - uid: 6127
+ components:
+ - type: Transform
+ pos: -105.5,9.5
+ parent: 2
+ - uid: 6128
+ components:
+ - type: Transform
+ pos: -105.5,8.5
+ parent: 2
- uid: 6129
components:
- type: Transform
@@ -42665,11 +42620,26 @@ entities:
- type: Transform
pos: -92.5,-18.5
parent: 2
+ - uid: 6494
+ components:
+ - type: Transform
+ pos: -101.5,-25.5
+ parent: 2
+ - uid: 6495
+ components:
+ - type: Transform
+ pos: -101.5,-23.5
+ parent: 2
- uid: 6496
components:
- type: Transform
pos: -97.5,-26.5
parent: 2
+ - uid: 6501
+ components:
+ - type: Transform
+ pos: -101.5,-22.5
+ parent: 2
- uid: 6618
components:
- type: Transform
@@ -42740,11 +42710,86 @@ entities:
- type: Transform
pos: -57.5,-11.5
parent: 2
- - uid: 6721
+ - uid: 6653
+ components:
+ - type: Transform
+ pos: -76.5,-49.5
+ parent: 2
+ - uid: 6654
+ components:
+ - type: Transform
+ pos: -76.5,-54.5
+ parent: 2
+ - uid: 6655
+ components:
+ - type: Transform
+ pos: -76.5,-52.5
+ parent: 2
+ - uid: 6656
+ components:
+ - type: Transform
+ pos: -76.5,-44.5
+ parent: 2
+ - uid: 6657
+ components:
+ - type: Transform
+ pos: -76.5,-42.5
+ parent: 2
+ - uid: 6660
+ components:
+ - type: Transform
+ pos: -76.5,-41.5
+ parent: 2
+ - uid: 6675
+ components:
+ - type: Transform
+ pos: -78.5,-42.5
+ parent: 2
+ - uid: 6676
+ components:
+ - type: Transform
+ pos: -78.5,-43.5
+ parent: 2
+ - uid: 6677
+ components:
+ - type: Transform
+ pos: -78.5,-45.5
+ parent: 2
+ - uid: 6678
components:
- type: Transform
pos: -76.5,-39.5
parent: 2
+ - uid: 6680
+ components:
+ - type: Transform
+ pos: -76.5,-47.5
+ parent: 2
+ - uid: 6681
+ components:
+ - type: Transform
+ pos: -76.5,-43.5
+ parent: 2
+ - uid: 6687
+ components:
+ - type: Transform
+ pos: -76.5,-53.5
+ parent: 2
+ - uid: 6688
+ components:
+ - type: Transform
+ pos: -76.5,-38.5
+ parent: 2
+ - uid: 6690
+ components:
+ - type: Transform
+ pos: -76.5,-50.5
+ parent: 2
+ - uid: 6691
+ components:
+ - type: Transform
+ pos: -76.5,-51.5
+ parent: 2
- uid: 6759
components:
- type: Transform
@@ -42765,16 +42810,36 @@ entities:
- type: Transform
pos: -97.5,-32.5
parent: 2
+ - uid: 6784
+ components:
+ - type: Transform
+ pos: -101.5,-32.5
+ parent: 2
+ - uid: 6785
+ components:
+ - type: Transform
+ pos: -101.5,-29.5
+ parent: 2
- uid: 6787
components:
- type: Transform
pos: -97.5,-24.5
parent: 2
+ - uid: 6788
+ components:
+ - type: Transform
+ pos: -101.5,-31.5
+ parent: 2
- uid: 6789
components:
- type: Transform
pos: -97.5,-31.5
parent: 2
+ - uid: 6792
+ components:
+ - type: Transform
+ pos: -101.5,-28.5
+ parent: 2
- uid: 6800
components:
- type: Transform
@@ -42785,6 +42850,11 @@ entities:
- type: Transform
pos: -97.5,-29.5
parent: 2
+ - uid: 6816
+ components:
+ - type: Transform
+ pos: -101.5,-30.5
+ parent: 2
- uid: 6838
components:
- type: Transform
@@ -42860,11 +42930,6 @@ entities:
- type: Transform
pos: -82.5,-52.5
parent: 2
- - uid: 7032
- components:
- - type: Transform
- pos: -74.5,-65.5
- parent: 2
- uid: 7035
components:
- type: Transform
@@ -43095,6 +43160,11 @@ entities:
- type: Transform
pos: -153.5,9.5
parent: 2
+ - uid: 7478
+ components:
+ - type: Transform
+ pos: -52.5,-68.5
+ parent: 2
- uid: 7479
components:
- type: Transform
@@ -43215,21 +43285,6 @@ entities:
- type: Transform
pos: -106.5,7.5
parent: 2
- - uid: 7909
- components:
- - type: Transform
- pos: -103.5,7.5
- parent: 2
- - uid: 7920
- components:
- - type: Transform
- pos: -106.5,11.5
- parent: 2
- - uid: 7922
- components:
- - type: Transform
- pos: -104.5,11.5
- parent: 2
- uid: 7925
components:
- type: Transform
@@ -43360,6 +43415,11 @@ entities:
- type: Transform
pos: -105.5,17.5
parent: 2
+ - uid: 8551
+ components:
+ - type: Transform
+ pos: -105.5,7.5
+ parent: 2
- uid: 8552
components:
- type: Transform
@@ -43455,16 +43515,6 @@ entities:
- type: Transform
pos: -133.5,-21.5
parent: 2
- - uid: 9057
- components:
- - type: Transform
- pos: -99.5,-23.5
- parent: 2
- - uid: 9087
- components:
- - type: Transform
- pos: -99.5,-31.5
- parent: 2
- uid: 9118
components:
- type: Transform
@@ -43485,15 +43535,15 @@ entities:
- type: Transform
pos: -133.5,-14.5
parent: 2
- - uid: 9126
+ - uid: 9216
components:
- type: Transform
- pos: -98.5,-31.5
+ pos: -88.5,3.5
parent: 2
- - uid: 9170
+ - uid: 9220
components:
- type: Transform
- pos: -100.5,-31.5
+ pos: -88.5,2.5
parent: 2
- uid: 9275
components:
@@ -43605,16 +43655,6 @@ entities:
- type: Transform
pos: -143.5,15.5
parent: 2
- - uid: 9831
- components:
- - type: Transform
- pos: -77.5,-37.5
- parent: 2
- - uid: 9834
- components:
- - type: Transform
- pos: -76.5,-52.5
- parent: 2
- uid: 10091
components:
- type: Transform
@@ -43650,11 +43690,6 @@ entities:
- type: Transform
pos: -105.5,21.5
parent: 2
- - uid: 10711
- components:
- - type: Transform
- pos: -76.5,-38.5
- parent: 2
- uid: 10757
components:
- type: Transform
@@ -43675,26 +43710,11 @@ entities:
- type: Transform
pos: -105.5,13.5
parent: 2
- - uid: 10860
- components:
- - type: Transform
- pos: -95.5,-24.5
- parent: 2
- uid: 11033
components:
- type: Transform
pos: -145.5,15.5
parent: 2
- - uid: 11052
- components:
- - type: Transform
- pos: -76.5,-48.5
- parent: 2
- - uid: 11054
- components:
- - type: Transform
- pos: -76.5,-41.5
- parent: 2
- uid: 11099
components:
- type: Transform
@@ -44295,11 +44315,6 @@ entities:
- type: Transform
pos: -89.5,-52.5
parent: 2
- - uid: 12728
- components:
- - type: Transform
- pos: -76.5,-50.5
- parent: 2
- uid: 12767
components:
- type: Transform
@@ -44330,6 +44345,26 @@ entities:
- type: Transform
pos: -130.5,-9.5
parent: 2
+ - uid: 13556
+ components:
+ - type: Transform
+ pos: -79.5,-52.5
+ parent: 2
+ - uid: 13557
+ components:
+ - type: Transform
+ pos: -78.5,-52.5
+ parent: 2
+ - uid: 13591
+ components:
+ - type: Transform
+ pos: -91.5,-40.5
+ parent: 2
+ - uid: 13592
+ components:
+ - type: Transform
+ pos: -86.5,-38.5
+ parent: 2
- uid: 13593
components:
- type: Transform
@@ -44445,6 +44480,11 @@ entities:
- type: Transform
pos: -153.5,-29.5
parent: 2
+ - uid: 13885
+ components:
+ - type: Transform
+ pos: -91.5,-43.5
+ parent: 2
- uid: 13901
components:
- type: Transform
@@ -44560,16 +44600,6 @@ entities:
- type: Transform
pos: -140.5,-14.5
parent: 2
- - uid: 14179
- components:
- - type: Transform
- pos: -103.5,9.5
- parent: 2
- - uid: 14203
- components:
- - type: Transform
- pos: -103.5,10.5
- parent: 2
- uid: 14265
components:
- type: Transform
@@ -44595,11 +44625,36 @@ entities:
- type: Transform
pos: -95.5,-16.5
parent: 2
+ - uid: 14298
+ components:
+ - type: Transform
+ pos: -91.5,-41.5
+ parent: 2
+ - uid: 14299
+ components:
+ - type: Transform
+ pos: -91.5,-42.5
+ parent: 2
- uid: 14363
components:
- type: Transform
pos: -91.5,-31.5
parent: 2
+ - uid: 14364
+ components:
+ - type: Transform
+ pos: -92.5,-36.5
+ parent: 2
+ - uid: 14540
+ components:
+ - type: Transform
+ pos: -90.5,-36.5
+ parent: 2
+ - uid: 14543
+ components:
+ - type: Transform
+ pos: -91.5,-39.5
+ parent: 2
- uid: 14588
components:
- type: Transform
@@ -44625,6 +44680,31 @@ entities:
- type: Transform
pos: -72.5,-28.5
parent: 2
+ - uid: 14813
+ components:
+ - type: Transform
+ pos: -90.5,-38.5
+ parent: 2
+ - uid: 14832
+ components:
+ - type: Transform
+ pos: -88.5,-38.5
+ parent: 2
+ - uid: 14835
+ components:
+ - type: Transform
+ pos: -89.5,-38.5
+ parent: 2
+ - uid: 14837
+ components:
+ - type: Transform
+ pos: -91.5,-38.5
+ parent: 2
+ - uid: 14839
+ components:
+ - type: Transform
+ pos: -87.5,-38.5
+ parent: 2
- uid: 14997
components:
- type: Transform
@@ -44635,15 +44715,15 @@ entities:
- type: Transform
pos: -73.5,-25.5
parent: 2
- - uid: 15052
+ - uid: 15056
components:
- type: Transform
- pos: -106.5,10.5
+ pos: -100.5,5.5
parent: 2
- - uid: 15056
+ - uid: 15061
components:
- type: Transform
- pos: -100.5,5.5
+ pos: -83.5,-38.5
parent: 2
- uid: 15069
components:
@@ -44665,15 +44745,15 @@ entities:
- type: Transform
pos: -119.5,-26.5
parent: 2
- - uid: 15244
+ - uid: 15311
components:
- type: Transform
- pos: -103.5,6.5
+ pos: -105.5,14.5
parent: 2
- - uid: 15311
+ - uid: 15313
components:
- type: Transform
- pos: -105.5,14.5
+ pos: -105.5,5.5
parent: 2
- uid: 15319
components:
@@ -44785,55 +44865,60 @@ entities:
- type: Transform
pos: -41.5,-41.5
parent: 2
- - uid: 15914
+ - uid: 16041
components:
- type: Transform
- pos: -79.5,-52.5
+ pos: -79.5,-43.5
parent: 2
- - uid: 15990
+ - uid: 16043
components:
- type: Transform
- pos: -76.5,-42.5
+ pos: -82.5,-43.5
parent: 2
- - uid: 15991
+ - uid: 16046
components:
- type: Transform
- pos: -76.5,-49.5
+ pos: -80.5,-43.5
parent: 2
- - uid: 16139
+ - uid: 16053
components:
- type: Transform
- pos: -22.5,-59.5
+ pos: -83.5,-43.5
parent: 2
- - uid: 16342
+ - uid: 16139
components:
- type: Transform
- pos: -100.5,-28.5
+ pos: -22.5,-59.5
parent: 2
- uid: 16348
components:
- type: Transform
pos: -80.5,-26.5
parent: 2
- - uid: 16407
+ - uid: 16392
components:
- type: Transform
- pos: -79.5,-26.5
+ pos: -76.5,-45.5
parent: 2
- - uid: 16408
+ - uid: 16393
components:
- type: Transform
- pos: -76.5,-47.5
+ pos: -76.5,-46.5
parent: 2
- - uid: 16413
+ - uid: 16394
components:
- type: Transform
- pos: -103.5,8.5
+ pos: -76.5,-40.5
parent: 2
- - uid: 16419
+ - uid: 16395
components:
- type: Transform
- pos: -97.5,-31.5
+ pos: -76.5,-48.5
+ parent: 2
+ - uid: 16407
+ components:
+ - type: Transform
+ pos: -79.5,-26.5
parent: 2
- uid: 16454
components:
@@ -44850,86 +44935,16 @@ entities:
- type: Transform
pos: -82.5,-26.5
parent: 2
- - uid: 16693
- components:
- - type: Transform
- pos: -77.5,-36.5
- parent: 2
- - uid: 16694
- components:
- - type: Transform
- pos: -100.5,-30.5
- parent: 2
- - uid: 16696
- components:
- - type: Transform
- pos: -100.5,-27.5
- parent: 2
- - uid: 16697
- components:
- - type: Transform
- pos: -100.5,-32.5
- parent: 2
- - uid: 16698
- components:
- - type: Transform
- pos: -96.5,-23.5
- parent: 2
- - uid: 16700
- components:
- - type: Transform
- pos: -95.5,-28.5
- parent: 2
- - uid: 16701
- components:
- - type: Transform
- pos: -96.5,-31.5
- parent: 2
- - uid: 16813
- components:
- - type: Transform
- pos: -103.5,11.5
- parent: 2
- - uid: 16835
- components:
- - type: Transform
- pos: -98.5,-23.5
- parent: 2
- uid: 16890
components:
- type: Transform
pos: -72.5,-32.5
parent: 2
- - uid: 16902
- components:
- - type: Transform
- pos: -95.5,-26.5
- parent: 2
- uid: 16951
components:
- type: Transform
pos: -109.5,-49.5
parent: 2
- - uid: 16968
- components:
- - type: Transform
- pos: -100.5,-26.5
- parent: 2
- - uid: 16976
- components:
- - type: Transform
- pos: -95.5,-30.5
- parent: 2
- - uid: 16983
- components:
- - type: Transform
- pos: -97.5,-23.5
- parent: 2
- - uid: 16988
- components:
- - type: Transform
- pos: -95.5,-31.5
- parent: 2
- uid: 16996
components:
- type: Transform
@@ -44950,41 +44965,11 @@ entities:
- type: Transform
pos: -123.5,-2.5
parent: 2
- - uid: 17081
- components:
- - type: Transform
- pos: -76.5,-51.5
- parent: 2
- - uid: 17082
- components:
- - type: Transform
- pos: -77.5,-52.5
- parent: 2
- - uid: 17093
- components:
- - type: Transform
- pos: -76.5,-44.5
- parent: 2
- - uid: 17098
- components:
- - type: Transform
- pos: -76.5,-40.5
- parent: 2
- uid: 17185
components:
- type: Transform
pos: -103.5,-26.5
parent: 2
- - uid: 17201
- components:
- - type: Transform
- pos: -76.5,-45.5
- parent: 2
- - uid: 17207
- components:
- - type: Transform
- pos: -78.5,-52.5
- parent: 2
- uid: 17341
components:
- type: Transform
@@ -45120,11 +45105,6 @@ entities:
- type: Transform
pos: -133.5,8.5
parent: 2
- - uid: 17473
- components:
- - type: Transform
- pos: -95.5,-25.5
- parent: 2
- uid: 17476
components:
- type: Transform
@@ -45195,11 +45175,6 @@ entities:
- type: Transform
pos: -145.5,-23.5
parent: 2
- - uid: 17518
- components:
- - type: Transform
- pos: -95.5,-23.5
- parent: 2
- uid: 17522
components:
- type: Transform
@@ -45760,95 +45735,40 @@ entities:
- type: Transform
pos: -151.5,18.5
parent: 2
- - uid: 17877
- components:
- - type: Transform
- pos: -100.5,-23.5
- parent: 2
- - uid: 18042
- components:
- - type: Transform
- pos: -143.5,13.5
- parent: 2
- - uid: 18128
- components:
- - type: Transform
- pos: -76.5,-46.5
- parent: 2
- - uid: 18209
- components:
- - type: Transform
- pos: -74.5,-41.5
- parent: 2
- - uid: 18210
- components:
- - type: Transform
- pos: -74.5,-35.5
- parent: 2
- - uid: 18358
- components:
- - type: Transform
- pos: -74.5,-44.5
- parent: 2
- - uid: 18429
- components:
- - type: Transform
- pos: -70.5,-65.5
- parent: 2
- - uid: 18431
- components:
- - type: Transform
- pos: -74.5,-57.5
- parent: 2
- - uid: 18599
- components:
- - type: Transform
- pos: -74.5,-36.5
- parent: 2
- - uid: 18603
- components:
- - type: Transform
- pos: -74.5,-47.5
- parent: 2
- - uid: 18604
- components:
- - type: Transform
- pos: -74.5,-54.5
- parent: 2
- - uid: 18606
+ - uid: 17837
components:
- type: Transform
- pos: -74.5,-61.5
+ pos: -84.5,-43.5
parent: 2
- - uid: 18608
+ - uid: 17838
components:
- type: Transform
- pos: -74.5,-46.5
+ pos: -81.5,-43.5
parent: 2
- - uid: 18617
+ - uid: 17843
components:
- type: Transform
- pos: -74.5,-55.5
+ pos: -85.5,-38.5
parent: 2
- - uid: 18634
+ - uid: 17844
components:
- type: Transform
- pos: -74.5,-53.5
+ pos: -85.5,-37.5
parent: 2
- - uid: 18635
+ - uid: 17845
components:
- type: Transform
- pos: -74.5,-64.5
+ pos: -85.5,-39.5
parent: 2
- - uid: 18636
+ - uid: 18042
components:
- type: Transform
- pos: -74.5,-59.5
+ pos: -143.5,13.5
parent: 2
- - uid: 18691
+ - uid: 18103
components:
- type: Transform
- pos: -76.5,-37.5
+ pos: -79.5,-38.5
parent: 2
- uid: 18752
components:
@@ -46100,6 +46020,11 @@ entities:
- type: Transform
pos: -153.5,16.5
parent: 2
+ - uid: 19885
+ components:
+ - type: Transform
+ pos: -91.5,-44.5
+ parent: 2
- uid: 20095
components:
- type: Transform
@@ -46110,6 +46035,11 @@ entities:
- type: Transform
pos: -147.5,-24.5
parent: 2
+ - uid: 20330
+ components:
+ - type: Transform
+ pos: -82.5,-38.5
+ parent: 2
- uid: 20352
components:
- type: Transform
@@ -46120,21 +46050,6 @@ entities:
- type: Transform
pos: -125.5,-88.5
parent: 2
- - uid: 20524
- components:
- - type: Transform
- pos: -95.5,-29.5
- parent: 2
- - uid: 20527
- components:
- - type: Transform
- pos: -100.5,-24.5
- parent: 2
- - uid: 20532
- components:
- - type: Transform
- pos: -76.5,-43.5
- parent: 2
- uid: 20669
components:
- type: Transform
@@ -46355,11 +46270,6 @@ entities:
- type: Transform
pos: -42.5,-60.5
parent: 2
- - uid: 20734
- components:
- - type: Transform
- pos: -100.5,-22.5
- parent: 2
- uid: 20735
components:
- type: Transform
@@ -46495,6 +46405,11 @@ entities:
- type: Transform
pos: -59.5,-65.5
parent: 2
+ - uid: 20763
+ components:
+ - type: Transform
+ pos: -75.5,-65.5
+ parent: 2
- uid: 20764
components:
- type: Transform
@@ -46520,6 +46435,86 @@ entities:
- type: Transform
pos: -69.5,-65.5
parent: 2
+ - uid: 20769
+ components:
+ - type: Transform
+ pos: -70.5,-65.5
+ parent: 2
+ - uid: 20770
+ components:
+ - type: Transform
+ pos: -71.5,-65.5
+ parent: 2
+ - uid: 20771
+ components:
+ - type: Transform
+ pos: -72.5,-65.5
+ parent: 2
+ - uid: 20772
+ components:
+ - type: Transform
+ pos: -73.5,-65.5
+ parent: 2
+ - uid: 20773
+ components:
+ - type: Transform
+ pos: -74.5,-65.5
+ parent: 2
+ - uid: 20774
+ components:
+ - type: Transform
+ pos: -76.5,-65.5
+ parent: 2
+ - uid: 20775
+ components:
+ - type: Transform
+ pos: -76.5,-60.5
+ parent: 2
+ - uid: 20776
+ components:
+ - type: Transform
+ pos: -76.5,-64.5
+ parent: 2
+ - uid: 20777
+ components:
+ - type: Transform
+ pos: -76.5,-63.5
+ parent: 2
+ - uid: 20778
+ components:
+ - type: Transform
+ pos: -76.5,-62.5
+ parent: 2
+ - uid: 20779
+ components:
+ - type: Transform
+ pos: -76.5,-61.5
+ parent: 2
+ - uid: 20780
+ components:
+ - type: Transform
+ pos: -76.5,-59.5
+ parent: 2
+ - uid: 20781
+ components:
+ - type: Transform
+ pos: -76.5,-58.5
+ parent: 2
+ - uid: 20782
+ components:
+ - type: Transform
+ pos: -76.5,-57.5
+ parent: 2
+ - uid: 20783
+ components:
+ - type: Transform
+ pos: -76.5,-56.5
+ parent: 2
+ - uid: 20784
+ components:
+ - type: Transform
+ pos: -76.5,-55.5
+ parent: 2
- uid: 20850
components:
- type: Transform
@@ -46555,6 +46550,11 @@ entities:
- type: Transform
pos: -10.5,-82.5
parent: 2
+ - uid: 21087
+ components:
+ - type: Transform
+ pos: -81.5,-38.5
+ parent: 2
- uid: 21095
components:
- type: Transform
@@ -47025,11 +47025,6 @@ entities:
- type: Transform
pos: -27.5,-56.5
parent: 2
- - uid: 21554
- components:
- - type: Transform
- pos: -74.5,-43.5
- parent: 2
- uid: 21596
components:
- type: Transform
@@ -47215,6 +47210,11 @@ entities:
- type: Transform
pos: -91.5,-56.5
parent: 2
+ - uid: 21712
+ components:
+ - type: Transform
+ pos: -77.5,-56.5
+ parent: 2
- uid: 21713
components:
- type: Transform
@@ -47230,51 +47230,16 @@ entities:
- type: Transform
pos: -55.5,-80.5
parent: 2
- - uid: 22286
- components:
- - type: Transform
- pos: -74.5,-49.5
- parent: 2
- - uid: 22342
- components:
- - type: Transform
- pos: -74.5,-51.5
- parent: 2
- - uid: 22344
- components:
- - type: Transform
- pos: -74.5,-52.5
- parent: 2
- - uid: 22363
- components:
- - type: Transform
- pos: -74.5,-60.5
- parent: 2
- uid: 22405
components:
- type: Transform
pos: -120.5,-59.5
parent: 2
- - uid: 22479
- components:
- - type: Transform
- pos: -77.5,-35.5
- parent: 2
- uid: 22481
components:
- type: Transform
pos: -143.5,8.5
parent: 2
- - uid: 22493
- components:
- - type: Transform
- pos: -78.5,-34.5
- parent: 2
- - uid: 22494
- components:
- - type: Transform
- pos: -78.5,-35.5
- parent: 2
- uid: 22632
components:
- type: Transform
@@ -47285,100 +47250,75 @@ entities:
- type: Transform
pos: -149.5,19.5
parent: 2
- - uid: 22703
- components:
- - type: Transform
- pos: -89.5,2.5
- parent: 2
- - uid: 22704
- components:
- - type: Transform
- pos: -89.5,4.5
- parent: 2
- uid: 22813
components:
- type: Transform
pos: -29.5,-57.5
parent: 2
- - uid: 22896
- components:
- - type: Transform
- pos: -74.5,-48.5
- parent: 2
- - uid: 22898
- components:
- - type: Transform
- pos: -74.5,-42.5
- parent: 2
- - uid: 22899
- components:
- - type: Transform
- pos: -73.5,-65.5
- parent: 2
- uid: 22901
components:
- type: Transform
pos: -149.5,17.5
parent: 2
- - uid: 22909
+ - uid: 23129
components:
- type: Transform
- pos: -57.5,-69.5
+ pos: -48.5,-66.5
parent: 2
- - uid: 22968
+ - uid: 23131
components:
- type: Transform
- pos: -74.5,-39.5
+ pos: -48.5,-67.5
parent: 2
- - uid: 22993
+ - uid: 23132
components:
- type: Transform
- pos: -74.5,-62.5
+ pos: -48.5,-68.5
parent: 2
- - uid: 23050
+ - uid: 23133
components:
- type: Transform
- pos: -74.5,-45.5
+ pos: -48.5,-70.5
parent: 2
- - uid: 23064
+ - uid: 23134
components:
- type: Transform
- pos: -74.5,-63.5
+ pos: -48.5,-71.5
parent: 2
- - uid: 23077
+ - uid: 23135
components:
- type: Transform
- pos: -74.5,-56.5
+ pos: -48.5,-69.5
parent: 2
- - uid: 23078
+ - uid: 23136
components:
- type: Transform
- pos: -74.5,-50.5
+ pos: -49.5,-71.5
parent: 2
- - uid: 23083
+ - uid: 23137
components:
- type: Transform
- pos: -74.5,-40.5
+ pos: -50.5,-71.5
parent: 2
- - uid: 23087
+ - uid: 23138
components:
- type: Transform
- pos: -74.5,-37.5
+ pos: -51.5,-71.5
parent: 2
- - uid: 23089
+ - uid: 23139
components:
- type: Transform
- pos: -74.5,-38.5
+ pos: -52.5,-71.5
parent: 2
- - uid: 23090
+ - uid: 23140
components:
- type: Transform
- pos: -74.5,-58.5
+ pos: -52.5,-70.5
parent: 2
- - uid: 23110
+ - uid: 23141
components:
- type: Transform
- pos: -71.5,-65.5
+ pos: -52.5,-69.5
parent: 2
- uid: 23147
components:
@@ -47415,46 +47355,21 @@ entities:
- type: Transform
pos: -137.5,-14.5
parent: 2
- - uid: 23165
- components:
- - type: Transform
- pos: -89.5,1.5
- parent: 2
- uid: 23186
components:
- type: Transform
pos: -151.5,19.5
parent: 2
- - uid: 23227
- components:
- - type: Transform
- pos: -72.5,-65.5
- parent: 2
- - uid: 23230
- components:
- - type: Transform
- pos: -75.5,-56.5
- parent: 2
- - uid: 23268
- components:
- - type: Transform
- pos: -77.5,-56.5
- parent: 2
- - uid: 23272
+ - uid: 23363
components:
- type: Transform
- pos: -76.5,-56.5
+ pos: -76.5,-37.5
parent: 2
- uid: 23412
components:
- type: Transform
pos: -108.5,-45.5
parent: 2
- - uid: 23737
- components:
- - type: Transform
- pos: -89.5,0.5
- parent: 2
- uid: 23842
components:
- type: Transform
@@ -47475,6 +47390,11 @@ entities:
- type: Transform
pos: -78.5,-24.5
parent: 2
+ - uid: 24019
+ components:
+ - type: Transform
+ pos: -76.5,-35.5
+ parent: 2
- uid: 24194
components:
- type: Transform
@@ -47505,10 +47425,10 @@ entities:
- type: Transform
pos: -147.5,18.5
parent: 2
- - uid: 24454
+ - uid: 24457
components:
- type: Transform
- pos: -89.5,3.5
+ pos: -75.5,-35.5
parent: 2
- uid: 24531
components:
@@ -47530,21 +47450,6 @@ entities:
- type: Transform
pos: -19.5,-8.5
parent: 2
- - uid: 24833
- components:
- - type: Transform
- pos: -15.5,-58.5
- parent: 2
- - uid: 24834
- components:
- - type: Transform
- pos: -15.5,-57.5
- parent: 2
- - uid: 24835
- components:
- - type: Transform
- pos: -15.5,-56.5
- parent: 2
- uid: 24844
components:
- type: Transform
@@ -48244,16 +48149,6 @@ entities:
- type: Transform
pos: -120.5,-40.5
parent: 2
- - uid: 369
- components:
- - type: Transform
- pos: -74.5,-45.5
- parent: 2
- - uid: 372
- components:
- - type: Transform
- pos: -74.5,-35.5
- parent: 2
- uid: 755
components:
- type: Transform
@@ -48339,15 +48234,20 @@ entities:
- type: Transform
pos: -68.5,-25.5
parent: 2
- - uid: 1707
+ - uid: 1840
components:
- type: Transform
- pos: -97.5,5.5
+ pos: -28.5,2.5
parent: 2
- - uid: 1840
+ - uid: 1867
components:
- type: Transform
- pos: -28.5,2.5
+ pos: -100.5,-2.5
+ parent: 2
+ - uid: 1877
+ components:
+ - type: Transform
+ pos: -99.5,-2.5
parent: 2
- uid: 2071
components:
@@ -48364,6 +48264,11 @@ entities:
- type: Transform
pos: -87.5,5.5
parent: 2
+ - uid: 2379
+ components:
+ - type: Transform
+ pos: -88.5,3.5
+ parent: 2
- uid: 2408
components:
- type: Transform
@@ -48439,6 +48344,11 @@ entities:
- type: Transform
pos: -60.5,-56.5
parent: 2
+ - uid: 2645
+ components:
+ - type: Transform
+ pos: -76.5,-58.5
+ parent: 2
- uid: 2661
components:
- type: Transform
@@ -48464,11 +48374,6 @@ entities:
- type: Transform
pos: -28.5,12.5
parent: 2
- - uid: 2989
- components:
- - type: Transform
- pos: -57.5,-68.5
- parent: 2
- uid: 3033
components:
- type: Transform
@@ -48859,6 +48764,11 @@ entities:
- type: Transform
pos: -65.5,-32.5
parent: 2
+ - uid: 3741
+ components:
+ - type: Transform
+ pos: -76.5,-45.5
+ parent: 2
- uid: 3799
components:
- type: Transform
@@ -48869,41 +48779,16 @@ entities:
- type: Transform
pos: -23.5,-30.5
parent: 2
- - uid: 3816
- components:
- - type: Transform
- pos: -62.5,-57.5
- parent: 2
- - uid: 3835
- components:
- - type: Transform
- pos: -62.5,-58.5
- parent: 2
- uid: 3883
components:
- type: Transform
pos: -22.5,-30.5
parent: 2
- - uid: 4038
- components:
- - type: Transform
- pos: -76.5,-56.5
- parent: 2
- - uid: 4041
- components:
- - type: Transform
- pos: -74.5,-56.5
- parent: 2
- uid: 4088
components:
- type: Transform
pos: -133.5,-0.5
parent: 2
- - uid: 4092
- components:
- - type: Transform
- pos: -77.5,-56.5
- parent: 2
- uid: 4093
components:
- type: Transform
@@ -48999,6 +48884,11 @@ entities:
- type: Transform
pos: -84.5,-10.5
parent: 2
+ - uid: 4581
+ components:
+ - type: Transform
+ pos: -74.5,-35.5
+ parent: 2
- uid: 4589
components:
- type: Transform
@@ -49114,16 +49004,36 @@ entities:
- type: Transform
pos: -44.5,1.5
parent: 2
+ - uid: 5391
+ components:
+ - type: Transform
+ pos: -99.5,-1.5
+ parent: 2
+ - uid: 5396
+ components:
+ - type: Transform
+ pos: -114.5,-10.5
+ parent: 2
- uid: 5421
components:
- type: Transform
pos: -110.5,-47.5
parent: 2
+ - uid: 5558
+ components:
+ - type: Transform
+ pos: -112.5,-10.5
+ parent: 2
- uid: 5600
components:
- type: Transform
pos: -119.5,6.5
parent: 2
+ - uid: 5609
+ components:
+ - type: Transform
+ pos: -113.5,-10.5
+ parent: 2
- uid: 5615
components:
- type: Transform
@@ -49149,100 +49059,90 @@ entities:
- type: Transform
pos: -125.5,-19.5
parent: 2
- - uid: 6654
- components:
- - type: Transform
- pos: -72.5,-65.5
- parent: 2
- - uid: 6655
- components:
- - type: Transform
- pos: -70.5,-65.5
- parent: 2
- - uid: 6656
+ - uid: 6958
components:
- type: Transform
- pos: -71.5,-65.5
+ pos: -17.5,2.5
parent: 2
- - uid: 6657
+ - uid: 6979
components:
- type: Transform
- pos: -74.5,-59.5
+ pos: -119.5,14.5
parent: 2
- - uid: 6659
+ - uid: 7082
components:
- type: Transform
- pos: -74.5,-65.5
+ pos: -119.5,16.5
parent: 2
- - uid: 6660
+ - uid: 7311
components:
- type: Transform
- pos: -74.5,-64.5
+ pos: -134.5,-36.5
parent: 2
- - uid: 6661
+ - uid: 7312
components:
- type: Transform
- pos: -73.5,-65.5
+ pos: -134.5,-37.5
parent: 2
- - uid: 6712
+ - uid: 7452
components:
- type: Transform
- pos: -74.5,-55.5
+ pos: -72.5,-26.5
parent: 2
- - uid: 6716
+ - uid: 7464
components:
- type: Transform
- pos: -73.5,-54.5
+ pos: -88.5,0.5
parent: 2
- - uid: 6726
+ - uid: 7467
components:
- type: Transform
- pos: -72.5,-54.5
+ pos: -88.5,1.5
parent: 2
- - uid: 6843
+ - uid: 7481
components:
- type: Transform
- pos: -74.5,-52.5
+ pos: -61.5,-73.5
parent: 2
- - uid: 6852
+ - uid: 7483
components:
- type: Transform
- pos: -74.5,-47.5
+ pos: -61.5,-71.5
parent: 2
- - uid: 6958
+ - uid: 7487
components:
- type: Transform
- pos: -17.5,2.5
+ pos: -61.5,-70.5
parent: 2
- - uid: 6979
+ - uid: 7488
components:
- type: Transform
- pos: -119.5,14.5
+ pos: -61.5,-69.5
parent: 2
- - uid: 7082
+ - uid: 7489
components:
- type: Transform
- pos: -119.5,16.5
+ pos: -61.5,-68.5
parent: 2
- - uid: 7311
+ - uid: 7490
components:
- type: Transform
- pos: -134.5,-36.5
+ pos: -60.5,-68.5
parent: 2
- - uid: 7312
+ - uid: 7491
components:
- type: Transform
- pos: -134.5,-37.5
+ pos: -59.5,-68.5
parent: 2
- - uid: 7452
+ - uid: 7505
components:
- type: Transform
- pos: -72.5,-26.5
+ pos: -45.5,-45.5
parent: 2
- - uid: 7505
+ - uid: 7507
components:
- type: Transform
- pos: -45.5,-45.5
+ pos: -61.5,-72.5
parent: 2
- uid: 7513
components:
@@ -49274,6 +49174,16 @@ entities:
- type: Transform
pos: -17.5,-28.5
parent: 2
+ - uid: 7750
+ components:
+ - type: Transform
+ pos: -57.5,-68.5
+ parent: 2
+ - uid: 7753
+ components:
+ - type: Transform
+ pos: -56.5,-68.5
+ parent: 2
- uid: 7817
components:
- type: Transform
@@ -49299,6 +49209,11 @@ entities:
- type: Transform
pos: -127.5,-41.5
parent: 2
+ - uid: 7830
+ components:
+ - type: Transform
+ pos: -56.5,-69.5
+ parent: 2
- uid: 7831
components:
- type: Transform
@@ -49319,6 +49234,11 @@ entities:
- type: Transform
pos: -123.5,-38.5
parent: 2
+ - uid: 7845
+ components:
+ - type: Transform
+ pos: -58.5,-68.5
+ parent: 2
- uid: 7849
components:
- type: Transform
@@ -49369,11 +49289,56 @@ entities:
- type: Transform
pos: -120.5,-44.5
parent: 2
+ - uid: 7889
+ components:
+ - type: Transform
+ pos: -56.5,-70.5
+ parent: 2
+ - uid: 7890
+ components:
+ - type: Transform
+ pos: -55.5,-71.5
+ parent: 2
- uid: 7891
components:
- type: Transform
pos: -69.5,-9.5
parent: 2
+ - uid: 7893
+ components:
+ - type: Transform
+ pos: -54.5,-71.5
+ parent: 2
+ - uid: 7899
+ components:
+ - type: Transform
+ pos: -53.5,-71.5
+ parent: 2
+ - uid: 7900
+ components:
+ - type: Transform
+ pos: -56.5,-71.5
+ parent: 2
+ - uid: 7909
+ components:
+ - type: Transform
+ pos: -52.5,-70.5
+ parent: 2
+ - uid: 7912
+ components:
+ - type: Transform
+ pos: -52.5,-69.5
+ parent: 2
+ - uid: 7920
+ components:
+ - type: Transform
+ pos: -52.5,-68.5
+ parent: 2
+ - uid: 7922
+ components:
+ - type: Transform
+ pos: -52.5,-71.5
+ parent: 2
- uid: 7935
components:
- type: Transform
@@ -49674,11 +49639,6 @@ entities:
- type: Transform
pos: -29.5,-44.5
parent: 2
- - uid: 8983
- components:
- - type: Transform
- pos: -57.5,-69.5
- parent: 2
- uid: 8998
components:
- type: Transform
@@ -49804,40 +49764,35 @@ entities:
- type: Transform
pos: -28.5,-30.5
parent: 2
- - uid: 9308
+ - uid: 9256
components:
- type: Transform
- pos: -74.5,-40.5
+ pos: -76.5,-57.5
parent: 2
- - uid: 9435
+ - uid: 9259
components:
- type: Transform
- pos: -57.5,-71.5
+ pos: -74.5,-56.5
parent: 2
- uid: 9499
components:
- type: Transform
pos: -26.5,-30.5
parent: 2
- - uid: 9516
- components:
- - type: Transform
- pos: -110.5,-29.5
- parent: 2
- uid: 9547
components:
- type: Transform
pos: -25.5,-30.5
parent: 2
- - uid: 9569
+ - uid: 9593
components:
- type: Transform
- pos: -110.5,-30.5
+ pos: -133.5,-8.5
parent: 2
- - uid: 9593
+ - uid: 9597
components:
- type: Transform
- pos: -133.5,-8.5
+ pos: -60.5,-73.5
parent: 2
- uid: 9598
components:
@@ -49924,11 +49879,6 @@ entities:
- type: Transform
pos: -23.5,0.5
parent: 2
- - uid: 10120
- components:
- - type: Transform
- pos: -57.5,-70.5
- parent: 2
- uid: 10274
components:
- type: Transform
@@ -49939,26 +49889,6 @@ entities:
- type: Transform
pos: -70.5,-9.5
parent: 2
- - uid: 10499
- components:
- - type: Transform
- pos: -89.5,1.5
- parent: 2
- - uid: 10630
- components:
- - type: Transform
- pos: -89.5,2.5
- parent: 2
- - uid: 10640
- components:
- - type: Transform
- pos: -98.5,5.5
- parent: 2
- - uid: 10848
- components:
- - type: Transform
- pos: -109.5,-30.5
- parent: 2
- uid: 11022
components:
- type: Transform
@@ -49974,20 +49904,15 @@ entities:
- type: Transform
pos: -48.5,-48.5
parent: 2
- - uid: 11050
- components:
- - type: Transform
- pos: -108.5,-30.5
- parent: 2
- uid: 11125
components:
- type: Transform
pos: -123.5,-52.5
parent: 2
- - uid: 11171
+ - uid: 11228
components:
- type: Transform
- pos: -74.5,-39.5
+ pos: -39.5,-4.5
parent: 2
- uid: 11284
components:
@@ -50329,11 +50254,6 @@ entities:
- type: Transform
pos: -7.5,-6.5
parent: 2
- - uid: 11791
- components:
- - type: Transform
- pos: -110.5,-28.5
- parent: 2
- uid: 11796
components:
- type: Transform
@@ -51019,21 +50939,6 @@ entities:
- type: Transform
pos: -45.5,-43.5
parent: 2
- - uid: 13592
- components:
- - type: Transform
- pos: -89.5,-57.5
- parent: 2
- - uid: 13595
- components:
- - type: Transform
- pos: -89.5,-58.5
- parent: 2
- - uid: 13605
- components:
- - type: Transform
- pos: -89.5,-59.5
- parent: 2
- uid: 13622
components:
- type: Transform
@@ -51049,6 +50954,11 @@ entities:
- type: Transform
pos: -136.5,-36.5
parent: 2
+ - uid: 13692
+ components:
+ - type: Transform
+ pos: -56.5,-72.5
+ parent: 2
- uid: 13697
components:
- type: Transform
@@ -51059,6 +50969,11 @@ entities:
- type: Transform
pos: -135.5,-36.5
parent: 2
+ - uid: 13707
+ components:
+ - type: Transform
+ pos: -58.5,-73.5
+ parent: 2
- uid: 13727
components:
- type: Transform
@@ -51094,25 +51009,15 @@ entities:
- type: Transform
pos: -55.5,-28.5
parent: 2
- - uid: 14172
- components:
- - type: Transform
- pos: -40.5,-41.5
- parent: 2
- - uid: 14182
- components:
- - type: Transform
- pos: -88.5,-59.5
- parent: 2
- - uid: 14183
+ - uid: 14111
components:
- type: Transform
- pos: -74.5,-48.5
+ pos: -59.5,-73.5
parent: 2
- - uid: 14186
+ - uid: 14172
components:
- type: Transform
- pos: -74.5,-46.5
+ pos: -40.5,-41.5
parent: 2
- uid: 14216
components:
@@ -51139,20 +51044,20 @@ entities:
- type: Transform
pos: -10.5,-14.5
parent: 2
- - uid: 14667
+ - uid: 14653
components:
- type: Transform
- pos: -65.5,-28.5
+ pos: -57.5,-73.5
parent: 2
- - uid: 14765
+ - uid: 14667
components:
- type: Transform
- pos: -74.5,-62.5
+ pos: -65.5,-28.5
parent: 2
- - uid: 14982
+ - uid: 15008
components:
- type: Transform
- pos: -53.5,-73.5
+ pos: -76.5,-35.5
parent: 2
- uid: 15009
components:
@@ -51169,40 +51074,50 @@ entities:
- type: Transform
pos: -133.5,-6.5
parent: 2
- - uid: 15194
+ - uid: 15052
components:
- type: Transform
- pos: -119.5,-21.5
+ pos: -76.5,-37.5
parent: 2
- - uid: 15246
+ - uid: 15054
components:
- type: Transform
- pos: -56.5,-71.5
+ pos: -76.5,-41.5
parent: 2
- - uid: 15247
+ - uid: 15055
components:
- type: Transform
- pos: -53.5,-70.5
+ pos: -76.5,-38.5
parent: 2
- - uid: 15248
+ - uid: 15058
components:
- type: Transform
- pos: -52.5,-74.5
+ pos: -76.5,-42.5
parent: 2
- - uid: 15313
+ - uid: 15059
components:
- type: Transform
- pos: -34.5,-5.5
+ pos: -76.5,-39.5
parent: 2
- - uid: 15344
+ - uid: 15063
components:
- type: Transform
- pos: -38.5,-5.5
+ pos: -76.5,-40.5
parent: 2
- - uid: 15363
+ - uid: 15064
components:
- type: Transform
- pos: -50.5,-74.5
+ pos: -76.5,-55.5
+ parent: 2
+ - uid: 15065
+ components:
+ - type: Transform
+ pos: -76.5,-43.5
+ parent: 2
+ - uid: 15194
+ components:
+ - type: Transform
+ pos: -119.5,-21.5
parent: 2
- uid: 15426
components:
@@ -51522,7 +51437,7 @@ entities:
- uid: 15624
components:
- type: Transform
- pos: -49.5,-73.5
+ pos: -76.5,-54.5
parent: 2
- uid: 15700
components:
@@ -51539,31 +51454,11 @@ entities:
- type: Transform
pos: -45.5,-46.5
parent: 2
- - uid: 15859
- components:
- - type: Transform
- pos: -74.5,-60.5
- parent: 2
- uid: 15923
components:
- type: Transform
pos: -68.5,-21.5
parent: 2
- - uid: 15929
- components:
- - type: Transform
- pos: -39.5,-5.5
- parent: 2
- - uid: 15937
- components:
- - type: Transform
- pos: -51.5,-69.5
- parent: 2
- - uid: 15960
- components:
- - type: Transform
- pos: -48.5,-71.5
- parent: 2
- uid: 15978
components:
- type: Transform
@@ -51579,26 +51474,6 @@ entities:
- type: Transform
pos: -95.5,22.5
parent: 2
- - uid: 15987
- components:
- - type: Transform
- pos: -53.5,-69.5
- parent: 2
- - uid: 16000
- components:
- - type: Transform
- pos: -36.5,-5.5
- parent: 2
- - uid: 16028
- components:
- - type: Transform
- pos: -94.5,5.5
- parent: 2
- - uid: 16041
- components:
- - type: Transform
- pos: -92.5,5.5
- parent: 2
- uid: 16088
components:
- type: Transform
@@ -51629,31 +51504,6 @@ entities:
- type: Transform
pos: -50.5,-63.5
parent: 2
- - uid: 16145
- components:
- - type: Transform
- pos: -40.5,-5.5
- parent: 2
- - uid: 16147
- components:
- - type: Transform
- pos: -35.5,-5.5
- parent: 2
- - uid: 16151
- components:
- - type: Transform
- pos: -33.5,-5.5
- parent: 2
- - uid: 16158
- components:
- - type: Transform
- pos: -32.5,-5.5
- parent: 2
- - uid: 16170
- components:
- - type: Transform
- pos: -37.5,-5.5
- parent: 2
- uid: 16205
components:
- type: Transform
@@ -51669,70 +51519,40 @@ entities:
- type: Transform
pos: -72.5,-35.5
parent: 2
- - uid: 16382
- components:
- - type: Transform
- pos: -48.5,-70.5
- parent: 2
- - uid: 16410
- components:
- - type: Transform
- pos: -52.5,-69.5
- parent: 2
- - uid: 16411
- components:
- - type: Transform
- pos: -49.5,-70.5
- parent: 2
- - uid: 16438
- components:
- - type: Transform
- pos: -50.5,-69.5
- parent: 2
- uid: 16490
components:
- type: Transform
pos: -73.5,-35.5
parent: 2
- - uid: 16699
- components:
- - type: Transform
- pos: -48.5,-73.5
- parent: 2
- - uid: 16750
- components:
- - type: Transform
- pos: -53.5,-74.5
- parent: 2
- - uid: 16765
+ - uid: 16778
components:
- type: Transform
- pos: -49.5,-74.5
+ pos: -72.5,-34.5
parent: 2
- - uid: 16768
+ - uid: 16820
components:
- type: Transform
- pos: -51.5,-74.5
+ pos: -72.5,-32.5
parent: 2
- - uid: 16778
+ - uid: 16841
components:
- type: Transform
- pos: -72.5,-34.5
+ pos: -45.5,-44.5
parent: 2
- - uid: 16817
+ - uid: 16860
components:
- type: Transform
- pos: -48.5,-72.5
+ pos: -76.5,-56.5
parent: 2
- - uid: 16820
+ - uid: 16914
components:
- type: Transform
- pos: -72.5,-32.5
+ pos: -75.5,-35.5
parent: 2
- - uid: 16841
+ - uid: 16915
components:
- type: Transform
- pos: -45.5,-44.5
+ pos: -76.5,-36.5
parent: 2
- uid: 16960
components:
@@ -51754,6 +51574,11 @@ entities:
- type: Transform
pos: -123.5,-2.5
parent: 2
+ - uid: 17137
+ components:
+ - type: Transform
+ pos: -73.5,-58.5
+ parent: 2
- uid: 17159
components:
- type: Transform
@@ -51779,11 +51604,6 @@ entities:
- type: Transform
pos: -72.5,-28.5
parent: 2
- - uid: 17400
- components:
- - type: Transform
- pos: -74.5,-51.5
- parent: 2
- uid: 17404
components:
- type: Transform
@@ -51794,10 +51614,15 @@ entities:
- type: Transform
pos: -29.5,-51.5
parent: 2
- - uid: 17416
+ - uid: 17488
components:
- type: Transform
- pos: -49.5,-69.5
+ pos: -88.5,4.5
+ parent: 2
+ - uid: 17492
+ components:
+ - type: Transform
+ pos: -88.5,2.5
parent: 2
- uid: 17493
components:
@@ -51849,35 +51674,15 @@ entities:
- type: Transform
pos: -15.5,-63.5
parent: 2
- - uid: 17835
- components:
- - type: Transform
- pos: -74.5,-50.5
- parent: 2
- - uid: 17844
- components:
- - type: Transform
- pos: -74.5,-41.5
- parent: 2
- - uid: 17845
- components:
- - type: Transform
- pos: -74.5,-38.5
- parent: 2
- - uid: 17853
- components:
- - type: Transform
- pos: -74.5,-44.5
- parent: 2
- uid: 18106
components:
- type: Transform
pos: -27.5,-56.5
parent: 2
- - uid: 18213
+ - uid: 18359
components:
- type: Transform
- pos: -53.5,-72.5
+ pos: -111.5,-10.5
parent: 2
- uid: 18409
components:
@@ -51979,6 +51784,26 @@ entities:
- type: Transform
pos: -91.5,-36.5
parent: 2
+ - uid: 18429
+ components:
+ - type: Transform
+ pos: -91.5,-37.5
+ parent: 2
+ - uid: 18430
+ components:
+ - type: Transform
+ pos: -90.5,-37.5
+ parent: 2
+ - uid: 18431
+ components:
+ - type: Transform
+ pos: -89.5,-37.5
+ parent: 2
+ - uid: 18432
+ components:
+ - type: Transform
+ pos: -88.5,-37.5
+ parent: 2
- uid: 18433
components:
- type: Transform
@@ -52179,46 +52004,11 @@ entities:
- type: Transform
pos: -86.5,-18.5
parent: 2
- - uid: 18610
- components:
- - type: Transform
- pos: -90.5,-38.5
- parent: 2
- - uid: 18630
- components:
- - type: Transform
- pos: -74.5,-49.5
- parent: 2
- uid: 18693
components:
- type: Transform
pos: -45.5,-41.5
parent: 2
- - uid: 18701
- components:
- - type: Transform
- pos: -74.5,-42.5
- parent: 2
- - uid: 18712
- components:
- - type: Transform
- pos: -74.5,-43.5
- parent: 2
- - uid: 18714
- components:
- - type: Transform
- pos: -74.5,-61.5
- parent: 2
- - uid: 18744
- components:
- - type: Transform
- pos: -74.5,-53.5
- parent: 2
- - uid: 18953
- components:
- - type: Transform
- pos: -74.5,-36.5
- parent: 2
- uid: 18991
components:
- type: Transform
@@ -52569,6 +52359,21 @@ entities:
- type: Transform
pos: -119.5,-3.5
parent: 2
+ - uid: 19097
+ components:
+ - type: Transform
+ pos: -109.5,-10.5
+ parent: 2
+ - uid: 19098
+ components:
+ - type: Transform
+ pos: -107.5,-10.5
+ parent: 2
+ - uid: 19099
+ components:
+ - type: Transform
+ pos: -110.5,-10.5
+ parent: 2
- uid: 19100
components:
- type: Transform
@@ -52694,11 +52499,6 @@ entities:
- type: Transform
pos: -19.5,-9.5
parent: 2
- - uid: 19719
- components:
- - type: Transform
- pos: -90.5,5.5
- parent: 2
- uid: 19821
components:
- type: Transform
@@ -52974,11 +52774,6 @@ entities:
- type: Transform
pos: -92.5,14.5
parent: 2
- - uid: 20034
- components:
- - type: Transform
- pos: -91.5,5.5
- parent: 2
- uid: 20351
components:
- type: Transform
@@ -52989,21 +52784,6 @@ entities:
- type: Transform
pos: -133.5,22.5
parent: 2
- - uid: 20496
- components:
- - type: Transform
- pos: -86.5,-37.5
- parent: 2
- - uid: 20506
- components:
- - type: Transform
- pos: -86.5,-38.5
- parent: 2
- - uid: 20511
- components:
- - type: Transform
- pos: -74.5,-63.5
- parent: 2
- uid: 20712
components:
- type: Transform
@@ -53099,6 +52879,11 @@ entities:
- type: Transform
pos: -72.5,-56.5
parent: 2
+ - uid: 20791
+ components:
+ - type: Transform
+ pos: -73.5,-56.5
+ parent: 2
- uid: 20792
components:
- type: Transform
@@ -53149,15 +52934,50 @@ entities:
- type: Transform
pos: -65.5,-56.5
parent: 2
+ - uid: 20802
+ components:
+ - type: Transform
+ pos: -73.5,-57.5
+ parent: 2
- uid: 20805
components:
- type: Transform
pos: -29.5,-52.5
parent: 2
+ - uid: 20807
+ components:
+ - type: Transform
+ pos: -76.5,-59.5
+ parent: 2
+ - uid: 20808
+ components:
+ - type: Transform
+ pos: -76.5,-60.5
+ parent: 2
+ - uid: 20809
+ components:
+ - type: Transform
+ pos: -76.5,-61.5
+ parent: 2
+ - uid: 20810
+ components:
+ - type: Transform
+ pos: -76.5,-62.5
+ parent: 2
+ - uid: 20811
+ components:
+ - type: Transform
+ pos: -76.5,-64.5
+ parent: 2
+ - uid: 20812
+ components:
+ - type: Transform
+ pos: -76.5,-65.5
+ parent: 2
- uid: 20813
components:
- type: Transform
- pos: -87.5,-38.5
+ pos: -76.5,-63.5
parent: 2
- uid: 20814
components:
@@ -53219,6 +53039,36 @@ entities:
- type: Transform
pos: -57.5,-65.5
parent: 2
+ - uid: 20826
+ components:
+ - type: Transform
+ pos: -75.5,-65.5
+ parent: 2
+ - uid: 20827
+ components:
+ - type: Transform
+ pos: -73.5,-65.5
+ parent: 2
+ - uid: 20828
+ components:
+ - type: Transform
+ pos: -72.5,-65.5
+ parent: 2
+ - uid: 20829
+ components:
+ - type: Transform
+ pos: -71.5,-65.5
+ parent: 2
+ - uid: 20830
+ components:
+ - type: Transform
+ pos: -70.5,-65.5
+ parent: 2
+ - uid: 20831
+ components:
+ - type: Transform
+ pos: -74.5,-65.5
+ parent: 2
- uid: 20832
components:
- type: Transform
@@ -53334,21 +53184,11 @@ entities:
- type: Transform
pos: -133.5,19.5
parent: 2
- - uid: 21003
- components:
- - type: Transform
- pos: -88.5,-38.5
- parent: 2
- uid: 21010
components:
- type: Transform
pos: -133.5,21.5
parent: 2
- - uid: 21043
- components:
- - type: Transform
- pos: -89.5,-38.5
- parent: 2
- uid: 21091
components:
- type: Transform
@@ -53364,11 +53204,6 @@ entities:
- type: Transform
pos: -21.5,-1.5
parent: 2
- - uid: 21510
- components:
- - type: Transform
- pos: -74.5,-54.5
- parent: 2
- uid: 21551
components:
- type: Transform
@@ -53404,30 +53239,15 @@ entities:
- type: Transform
pos: -14.5,-63.5
parent: 2
- - uid: 22010
- components:
- - type: Transform
- pos: -89.5,0.5
- parent: 2
- uid: 22141
components:
- type: Transform
pos: -72.5,-21.5
parent: 2
- - uid: 22283
- components:
- - type: Transform
- pos: -32.5,-3.5
- parent: 2
- - uid: 22291
- components:
- - type: Transform
- pos: -31.5,-3.5
- parent: 2
- - uid: 22299
+ - uid: 22163
components:
- type: Transform
- pos: -53.5,-71.5
+ pos: -76.5,-53.5
parent: 2
- uid: 22349
components:
@@ -53439,15 +53259,10 @@ entities:
- type: Transform
pos: -18.5,-9.5
parent: 2
- - uid: 22388
- components:
- - type: Transform
- pos: -93.5,5.5
- parent: 2
- - uid: 22497
+ - uid: 22476
components:
- type: Transform
- pos: -86.5,-36.5
+ pos: -56.5,-73.5
parent: 2
- uid: 22524
components:
@@ -53654,11 +53469,31 @@ entities:
- type: Transform
pos: -110.5,-27.5
parent: 2
+ - uid: 22568
+ components:
+ - type: Transform
+ pos: -109.5,-27.5
+ parent: 2
- uid: 22569
components:
- type: Transform
pos: -114.5,-27.5
parent: 2
+ - uid: 22570
+ components:
+ - type: Transform
+ pos: -109.5,-28.5
+ parent: 2
+ - uid: 22629
+ components:
+ - type: Transform
+ pos: -76.5,-46.5
+ parent: 2
+ - uid: 22630
+ components:
+ - type: Transform
+ pos: -76.5,-44.5
+ parent: 2
- uid: 22661
components:
- type: Transform
@@ -53689,11 +53524,26 @@ entities:
- type: Transform
pos: -119.5,5.5
parent: 2
+ - uid: 22667
+ components:
+ - type: Transform
+ pos: -102.5,-2.5
+ parent: 2
+ - uid: 22671
+ components:
+ - type: Transform
+ pos: -103.5,-8.5
+ parent: 2
- uid: 22674
components:
- type: Transform
pos: -119.5,2.5
parent: 2
+ - uid: 22677
+ components:
+ - type: Transform
+ pos: -103.5,-6.5
+ parent: 2
- uid: 22678
components:
- type: Transform
@@ -53734,10 +53584,25 @@ entities:
- type: Transform
pos: -119.5,23.5
parent: 2
+ - uid: 22688
+ components:
+ - type: Transform
+ pos: -116.5,25.5
+ parent: 2
+ - uid: 22689
+ components:
+ - type: Transform
+ pos: -107.5,25.5
+ parent: 2
+ - uid: 22690
+ components:
+ - type: Transform
+ pos: -106.5,25.5
+ parent: 2
- uid: 22693
components:
- type: Transform
- pos: -32.5,-4.5
+ pos: -108.5,25.5
parent: 2
- uid: 22694
components:
@@ -53749,30 +53614,90 @@ entities:
- type: Transform
pos: -117.5,25.5
parent: 2
+ - uid: 22696
+ components:
+ - type: Transform
+ pos: -115.5,25.5
+ parent: 2
+ - uid: 22697
+ components:
+ - type: Transform
+ pos: -114.5,25.5
+ parent: 2
- uid: 22698
components:
- type: Transform
- pos: -101.5,5.5
+ pos: -113.5,25.5
+ parent: 2
+ - uid: 22699
+ components:
+ - type: Transform
+ pos: -112.5,25.5
parent: 2
- uid: 22700
components:
- type: Transform
- pos: -99.5,5.5
+ pos: -111.5,25.5
+ parent: 2
+ - uid: 22701
+ components:
+ - type: Transform
+ pos: -110.5,25.5
+ parent: 2
+ - uid: 22702
+ components:
+ - type: Transform
+ pos: -109.5,25.5
+ parent: 2
+ - uid: 22704
+ components:
+ - type: Transform
+ pos: -106.5,26.5
parent: 2
- uid: 22808
components:
- type: Transform
pos: -133.5,20.5
parent: 2
- - uid: 22902
+ - uid: 22878
components:
- type: Transform
- pos: -55.5,-71.5
+ pos: -75.5,-56.5
+ parent: 2
+ - uid: 22892
+ components:
+ - type: Transform
+ pos: -103.5,-10.5
+ parent: 2
+ - uid: 22894
+ components:
+ - type: Transform
+ pos: -101.5,-2.5
+ parent: 2
+ - uid: 22895
+ components:
+ - type: Transform
+ pos: -106.5,-10.5
+ parent: 2
+ - uid: 22898
+ components:
+ - type: Transform
+ pos: -103.5,-2.5
+ parent: 2
+ - uid: 22899
+ components:
+ - type: Transform
+ pos: -104.5,-10.5
+ parent: 2
+ - uid: 22903
+ components:
+ - type: Transform
+ pos: -103.5,-9.5
parent: 2
- uid: 22905
components:
- type: Transform
- pos: -54.5,-71.5
+ pos: -103.5,-4.5
parent: 2
- uid: 22910
components:
@@ -53834,40 +53759,10 @@ entities:
- type: Transform
pos: -26.5,-60.5
parent: 2
- - uid: 23177
- components:
- - type: Transform
- pos: -95.5,5.5
- parent: 2
- - uid: 23180
- components:
- - type: Transform
- pos: -96.5,5.5
- parent: 2
- - uid: 23181
- components:
- - type: Transform
- pos: -98.5,3.5
- parent: 2
- - uid: 23182
- components:
- - type: Transform
- pos: -97.5,4.5
- parent: 2
- - uid: 23184
- components:
- - type: Transform
- pos: -97.5,3.5
- parent: 2
- - uid: 23189
- components:
- - type: Transform
- pos: -89.5,5.5
- parent: 2
- - uid: 23235
+ - uid: 23168
components:
- type: Transform
- pos: -74.5,-57.5
+ pos: -108.5,-10.5
parent: 2
- uid: 23248
components:
@@ -53889,26 +53784,6 @@ entities:
- type: Transform
pos: -126.5,25.5
parent: 2
- - uid: 23266
- components:
- - type: Transform
- pos: -74.5,-58.5
- parent: 2
- - uid: 23273
- components:
- - type: Transform
- pos: -89.5,4.5
- parent: 2
- - uid: 23281
- components:
- - type: Transform
- pos: -73.5,-56.5
- parent: 2
- - uid: 23315
- components:
- - type: Transform
- pos: -91.5,-38.5
- parent: 2
- uid: 23332
components:
- type: Transform
@@ -53919,10 +53794,15 @@ entities:
- type: Transform
pos: -70.5,-25.5
parent: 2
- - uid: 23408
+ - uid: 23426
components:
- type: Transform
- pos: -91.5,-37.5
+ pos: -105.5,-10.5
+ parent: 2
+ - uid: 23441
+ components:
+ - type: Transform
+ pos: -103.5,-3.5
parent: 2
- uid: 23626
components:
@@ -53944,16 +53824,6 @@ entities:
- type: Transform
pos: -67.5,-12.5
parent: 2
- - uid: 23663
- components:
- - type: Transform
- pos: -74.5,-37.5
- parent: 2
- - uid: 23667
- components:
- - type: Transform
- pos: -75.5,-56.5
- parent: 2
- uid: 23673
components:
- type: Transform
@@ -54074,6 +53944,11 @@ entities:
- type: Transform
pos: -75.5,-10.5
parent: 2
+ - uid: 23716
+ components:
+ - type: Transform
+ pos: -103.5,-5.5
+ parent: 2
- uid: 23721
components:
- type: Transform
@@ -54084,10 +53959,10 @@ entities:
- type: Transform
pos: -50.5,-33.5
parent: 2
- - uid: 23786
+ - uid: 23795
components:
- type: Transform
- pos: -89.5,3.5
+ pos: -103.5,-7.5
parent: 2
- uid: 23836
components:
@@ -54259,90 +54134,35 @@ entities:
- type: Transform
pos: -17.5,-33.5
parent: 2
- - uid: 24449
- components:
- - type: Transform
- pos: -102.5,5.5
- parent: 2
- - uid: 24457
- components:
- - type: Transform
- pos: -103.5,5.5
- parent: 2
- - uid: 24461
- components:
- - type: Transform
- pos: -86.5,5.5
- parent: 2
- - uid: 24464
- components:
- - type: Transform
- pos: -100.5,5.5
- parent: 2
- - uid: 24473
- components:
- - type: Transform
- pos: -103.5,-4.5
- parent: 2
- - uid: 24474
- components:
- - type: Transform
- pos: -103.5,-5.5
- parent: 2
- - uid: 24475
- components:
- - type: Transform
- pos: -103.5,-6.5
- parent: 2
- - uid: 24477
- components:
- - type: Transform
- pos: -103.5,-9.5
- parent: 2
- - uid: 24480
- components:
- - type: Transform
- pos: -103.5,-7.5
- parent: 2
- - uid: 24481
- components:
- - type: Transform
- pos: -103.5,-10.5
- parent: 2
- - uid: 24491
- components:
- - type: Transform
- pos: -103.5,-11.5
- parent: 2
- - uid: 24492
+ - uid: 24430
components:
- type: Transform
- pos: -103.5,-12.5
+ pos: -115.5,-10.5
parent: 2
- - uid: 24529
+ - uid: 24431
components:
- type: Transform
- pos: -103.5,-8.5
+ pos: -116.5,-10.5
parent: 2
- - uid: 24532
+ - uid: 24432
components:
- type: Transform
- pos: -103.5,-13.5
+ pos: -117.5,-10.5
parent: 2
- - uid: 24533
+ - uid: 24433
components:
- type: Transform
- pos: -103.5,4.5
+ pos: -118.5,-10.5
parent: 2
- - uid: 24542
+ - uid: 24461
components:
- type: Transform
- pos: -103.5,3.5
+ pos: -86.5,5.5
parent: 2
- uid: 24586
components:
- type: Transform
- pos: -103.5,1.5
+ pos: -77.5,-56.5
parent: 2
- uid: 24587
components:
@@ -54407,67 +54227,42 @@ entities:
- uid: 24599
components:
- type: Transform
- pos: -103.5,0.5
+ pos: -90.5,-56.5
parent: 2
- uid: 24600
components:
- type: Transform
- pos: -103.5,-0.5
+ pos: -91.5,-56.5
parent: 2
- uid: 24601
components:
- type: Transform
- pos: -103.5,2.5
+ pos: -92.5,-56.5
parent: 2
- uid: 24602
components:
- type: Transform
- pos: -103.5,-1.5
+ pos: -92.5,-57.5
parent: 2
- uid: 24603
components:
- type: Transform
- pos: -103.5,-2.5
+ pos: -92.5,-58.5
parent: 2
- uid: 24604
components:
- type: Transform
- pos: -103.5,-3.5
+ pos: -92.5,-59.5
parent: 2
- uid: 24605
components:
- type: Transform
- pos: -93.5,-13.5
+ pos: -92.5,-60.5
parent: 2
- uid: 24606
components:
- type: Transform
- pos: -102.5,-13.5
- parent: 2
- - uid: 24607
- components:
- - type: Transform
- pos: -101.5,-13.5
- parent: 2
- - uid: 24608
- components:
- - type: Transform
- pos: -99.5,-13.5
- parent: 2
- - uid: 24609
- components:
- - type: Transform
- pos: -98.5,-13.5
- parent: 2
- - uid: 24616
- components:
- - type: Transform
- pos: -97.5,-13.5
- parent: 2
- - uid: 24624
- components:
- - type: Transform
- pos: -96.5,-13.5
+ pos: -91.5,-60.5
parent: 2
- uid: 24628
components:
@@ -54499,76 +54294,11 @@ entities:
- type: Transform
pos: -13.5,5.5
parent: 2
- - uid: 24663
- components:
- - type: Transform
- pos: -95.5,-13.5
- parent: 2
- uid: 24665
components:
- type: Transform
pos: -17.5,11.5
parent: 2
- - uid: 24672
- components:
- - type: Transform
- pos: -100.5,-13.5
- parent: 2
- - uid: 24676
- components:
- - type: Transform
- pos: -94.5,-13.5
- parent: 2
- - uid: 24699
- components:
- - type: Transform
- pos: -93.5,-12.5
- parent: 2
- - uid: 24700
- components:
- - type: Transform
- pos: -93.5,-11.5
- parent: 2
- - uid: 24718
- components:
- - type: Transform
- pos: -93.5,-10.5
- parent: 2
- - uid: 24719
- components:
- - type: Transform
- pos: -94.5,-10.5
- parent: 2
- - uid: 24721
- components:
- - type: Transform
- pos: -75.5,-12.5
- parent: 2
- - uid: 24801
- components:
- - type: Transform
- pos: -75.5,-13.5
- parent: 2
- - uid: 24907
- components:
- - type: Transform
- pos: -85.5,-13.5
- parent: 2
- - uid: 24910
- components:
- - type: Transform
- pos: -87.5,-13.5
- parent: 2
- - uid: 24913
- components:
- - type: Transform
- pos: -86.5,-13.5
- parent: 2
- - uid: 24914
- components:
- - type: Transform
- pos: -88.5,-13.5
- parent: 2
- uid: 25111
components:
- type: Transform
@@ -54637,47 +54367,32 @@ entities:
- uid: 25437
components:
- type: Transform
- pos: -89.5,-13.5
+ pos: -76.5,-51.5
parent: 2
- uid: 25438
components:
- type: Transform
- pos: -90.5,-13.5
+ pos: -76.5,-50.5
parent: 2
- uid: 25439
components:
- type: Transform
- pos: -91.5,-13.5
+ pos: -76.5,-49.5
parent: 2
- uid: 25440
components:
- type: Transform
- pos: -92.5,-13.5
+ pos: -76.5,-48.5
parent: 2
- uid: 25441
components:
- type: Transform
- pos: -76.5,-13.5
+ pos: -76.5,-52.5
parent: 2
- uid: 25442
components:
- type: Transform
- pos: -77.5,-13.5
- parent: 2
- - uid: 25450
- components:
- - type: Transform
- pos: -78.5,-13.5
- parent: 2
- - uid: 25451
- components:
- - type: Transform
- pos: -80.5,-13.5
- parent: 2
- - uid: 25452
- components:
- - type: Transform
- pos: -81.5,-13.5
+ pos: -76.5,-47.5
parent: 2
- uid: 25458
components:
@@ -54689,46 +54404,6 @@ entities:
- type: Transform
pos: -71.5,-25.5
parent: 2
- - uid: 25675
- components:
- - type: Transform
- pos: -82.5,-13.5
- parent: 2
- - uid: 25676
- components:
- - type: Transform
- pos: -83.5,-13.5
- parent: 2
- - uid: 25683
- components:
- - type: Transform
- pos: -84.5,-13.5
- parent: 2
- - uid: 25695
- components:
- - type: Transform
- pos: -79.5,-13.5
- parent: 2
- - uid: 25699
- components:
- - type: Transform
- pos: -31.5,-2.5
- parent: 2
- - uid: 25709
- components:
- - type: Transform
- pos: -31.5,-1.5
- parent: 2
- - uid: 25710
- components:
- - type: Transform
- pos: -32.5,-6.5
- parent: 2
- - uid: 25711
- components:
- - type: Transform
- pos: -32.5,-7.5
- parent: 2
- uid: 25851
components:
- type: Transform
@@ -54754,11 +54429,6 @@ entities:
- type: Transform
pos: -117.5,-67.5
parent: 2
- - uid: 25863
- components:
- - type: Transform
- pos: -31.5,-7.5
- parent: 2
- uid: 25865
components:
- type: Transform
@@ -54779,16 +54449,6 @@ entities:
- type: Transform
pos: -135.5,-27.5
parent: 2
- - uid: 25869
- components:
- - type: Transform
- pos: -31.5,-8.5
- parent: 2
- - uid: 25871
- components:
- - type: Transform
- pos: -31.5,-9.5
- parent: 2
- uid: 25950
components:
- type: Transform
@@ -54804,10 +54464,15 @@ entities:
- type: Transform
pos: -73.5,-11.5
parent: 2
+ - uid: 25968
+ components:
+ - type: Transform
+ pos: -75.5,-54.5
+ parent: 2
- uid: 25969
components:
- type: Transform
- pos: -117.5,26.5
+ pos: -74.5,-54.5
parent: 2
- uid: 26111
components:
@@ -54954,27 +54619,10 @@ entities:
parent: 2
- proto: CandyBowl
entities:
- - uid: 24157
- components:
- - type: Transform
- pos: -38.552986,-16.48195
- parent: 2
-- proto: CapacitorStockPart
- entities:
- - uid: 4751
- components:
- - type: Transform
- pos: -111.480156,-33.17495
- parent: 2
- - uid: 4818
- components:
- - type: Transform
- pos: -111.74578,-33.346825
- parent: 2
- - uid: 7024
+ - uid: 3927
components:
- type: Transform
- pos: -30.511707,-65.506226
+ pos: -39.443195,-16.486511
parent: 2
- proto: CaptainIDCard
entities:
@@ -55082,6 +54730,11 @@ entities:
rot: 3.141592653589793 rad
pos: -99.5,-46.5
parent: 2
+ - uid: 6719
+ components:
+ - type: Transform
+ pos: -62.5,-31.5
+ parent: 2
- uid: 6749
components:
- type: Transform
@@ -55130,6 +54783,11 @@ entities:
rot: 1.5707963267948966 rad
pos: -77.5,-29.5
parent: 2
+ - uid: 7085
+ components:
+ - type: Transform
+ pos: -62.5,-32.5
+ parent: 2
- uid: 7090
components:
- type: Transform
@@ -55184,6 +54842,11 @@ entities:
rot: 1.5707963267948966 rad
pos: -76.5,-29.5
parent: 2
+ - uid: 7537
+ components:
+ - type: Transform
+ pos: -62.5,-30.5
+ parent: 2
- uid: 8388
components:
- type: Transform
@@ -55385,6 +55048,36 @@ entities:
rot: 1.5707963267948966 rad
pos: -50.5,-43.5
parent: 2
+ - uid: 14529
+ components:
+ - type: Transform
+ pos: -61.5,-30.5
+ parent: 2
+ - uid: 14530
+ components:
+ - type: Transform
+ pos: -61.5,-31.5
+ parent: 2
+ - uid: 14531
+ components:
+ - type: Transform
+ pos: -60.5,-30.5
+ parent: 2
+ - uid: 14532
+ components:
+ - type: Transform
+ pos: -60.5,-31.5
+ parent: 2
+ - uid: 14533
+ components:
+ - type: Transform
+ pos: -60.5,-32.5
+ parent: 2
+ - uid: 14534
+ components:
+ - type: Transform
+ pos: -61.5,-32.5
+ parent: 2
- uid: 14535
components:
- type: Transform
@@ -56131,47 +55824,41 @@ entities:
parent: 2
- proto: CarpetGreen
entities:
- - uid: 1328
+ - uid: 5719
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -98.5,-1.5
+ rot: 3.141592653589793 rad
+ pos: -51.5,-56.5
parent: 2
- - uid: 1977
+ - uid: 16017
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -98.5,-0.5
+ pos: -111.5,-30.5
parent: 2
- - uid: 5719
+ - uid: 16018
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -51.5,-56.5
+ pos: -111.5,-31.5
parent: 2
- - uid: 16020
+ - uid: 16019
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -96.5,-0.5
+ pos: -110.5,-30.5
parent: 2
- - uid: 16023
+ - uid: 16020
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -97.5,-1.5
+ pos: -110.5,-31.5
parent: 2
- - uid: 16201
+ - uid: 16021
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -96.5,-1.5
+ pos: -110.5,-32.5
parent: 2
- - uid: 16256
+ - uid: 16022
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -97.5,-0.5
+ pos: -111.5,-32.5
parent: 2
- uid: 17846
components:
@@ -56456,15 +56143,20 @@ entities:
rot: 3.141592653589793 rad
pos: -83.5,5.5
parent: 2
- - uid: 764
+ - uid: 338
components:
- type: Transform
- pos: -74.5,-52.5
+ pos: -107.5,-27.5
parent: 2
- - uid: 769
+ - uid: 361
components:
- type: Transform
- pos: -74.5,-42.5
+ pos: -92.5,-60.5
+ parent: 2
+ - uid: 366
+ components:
+ - type: Transform
+ pos: -92.5,-59.5
parent: 2
- uid: 826
components:
@@ -56498,10 +56190,11 @@ entities:
rot: -1.5707963267948966 rad
pos: -111.5,-10.5
parent: 2
- - uid: 938
+ - uid: 974
components:
- type: Transform
- pos: -74.5,-44.5
+ rot: -1.5707963267948966 rad
+ pos: -105.5,7.5
parent: 2
- uid: 989
components:
@@ -56520,22 +56213,12 @@ entities:
- type: Transform
pos: -85.5,-11.5
parent: 2
- - uid: 1102
- components:
- - type: Transform
- pos: -93.5,-11.5
- parent: 2
- uid: 1106
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -108.5,-10.5
parent: 2
- - uid: 1119
- components:
- - type: Transform
- pos: -93.5,-9.5
- parent: 2
- uid: 1154
components:
- type: Transform
@@ -56547,16 +56230,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -92.5,15.5
parent: 2
- - uid: 1745
- components:
- - type: Transform
- pos: -93.5,-10.5
- parent: 2
- - uid: 1804
- components:
- - type: Transform
- pos: -74.5,-57.5
- parent: 2
- uid: 1902
components:
- type: Transform
@@ -56598,11 +56271,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -126.5,-10.5
parent: 2
- - uid: 2291
- components:
- - type: Transform
- pos: -89.5,-60.5
- parent: 2
- uid: 2324
components:
- type: Transform
@@ -56614,16 +56282,6 @@ entities:
- type: Transform
pos: -141.5,-54.5
parent: 2
- - uid: 2564
- components:
- - type: Transform
- pos: -74.5,-59.5
- parent: 2
- - uid: 2615
- components:
- - type: Transform
- pos: -74.5,-47.5
- parent: 2
- uid: 2619
components:
- type: Transform
@@ -56636,6 +56294,12 @@ entities:
rot: 1.5707963267948966 rad
pos: -103.5,-3.5
parent: 2
+ - uid: 2628
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -103.5,-1.5
+ parent: 2
- uid: 2714
components:
- type: Transform
@@ -56648,6 +56312,12 @@ entities:
rot: 1.5707963267948966 rad
pos: -103.5,-6.5
parent: 2
+ - uid: 2739
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -103.5,-2.5
+ parent: 2
- uid: 3165
components:
- type: Transform
@@ -56684,16 +56354,29 @@ entities:
- type: Transform
pos: -21.5,2.5
parent: 2
- - uid: 4114
+ - uid: 3735
components:
- type: Transform
- pos: -74.5,-58.5
+ rot: 3.141592653589793 rad
+ pos: -102.5,-45.5
parent: 2
- - uid: 4286
+ - uid: 3762
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -105.5,-31.5
+ rot: 3.141592653589793 rad
+ pos: -103.5,-45.5
+ parent: 2
+ - uid: 3805
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -102.5,-40.5
+ parent: 2
+ - uid: 3807
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -103.5,-40.5
parent: 2
- uid: 4569
components:
@@ -56736,6 +56419,18 @@ entities:
- type: Transform
pos: -141.5,-56.5
parent: 2
+ - uid: 4816
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -103.5,1.5
+ parent: 2
+ - uid: 4827
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -103.5,2.5
+ parent: 2
- uid: 4832
components:
- type: Transform
@@ -56748,6 +56443,12 @@ entities:
rot: 3.141592653589793 rad
pos: -30.5,2.5
parent: 2
+ - uid: 4851
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -103.5,3.5
+ parent: 2
- uid: 4853
components:
- type: Transform
@@ -56760,11 +56461,6 @@ entities:
rot: 3.141592653589793 rad
pos: -28.5,2.5
parent: 2
- - uid: 5107
- components:
- - type: Transform
- pos: -74.5,-49.5
- parent: 2
- uid: 5348
components:
- type: Transform
@@ -57347,17 +57043,16 @@ entities:
rot: 1.5707963267948966 rad
pos: -140.5,-27.5
parent: 2
- - uid: 7619
+ - uid: 7511
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -129.5,-4.5
+ pos: -52.5,-69.5
parent: 2
- - uid: 7746
+ - uid: 7619
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -74.5,-65.5
+ pos: -129.5,-4.5
parent: 2
- uid: 7913
components:
@@ -57461,21 +57156,17 @@ entities:
rot: -1.5707963267948966 rad
pos: -123.5,-27.5
parent: 2
- - uid: 9030
- components:
- - type: Transform
- pos: -74.5,-45.5
- parent: 2
- - uid: 9050
+ - uid: 9160
components:
- type: Transform
- pos: -70.5,-65.5
+ rot: -1.5707963267948966 rad
+ pos: -94.5,45.5
parent: 2
- - uid: 9160
+ - uid: 9236
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -94.5,45.5
+ pos: -105.5,6.5
parent: 2
- uid: 9241
components:
@@ -57483,6 +57174,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -94.5,43.5
parent: 2
+ - uid: 9252
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -103.5,0.5
+ parent: 2
- uid: 9254
components:
- type: Transform
@@ -57495,10 +57192,11 @@ entities:
rot: -1.5707963267948966 rad
pos: -94.5,44.5
parent: 2
- - uid: 9301
+ - uid: 9446
components:
- type: Transform
- pos: -74.5,-62.5
+ rot: 3.141592653589793 rad
+ pos: -103.5,5.5
parent: 2
- uid: 9486
components:
@@ -57515,6 +57213,12 @@ entities:
- type: Transform
pos: -143.5,13.5
parent: 2
+ - uid: 9606
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -75.5,-35.5
+ parent: 2
- uid: 9732
components:
- type: Transform
@@ -57617,6 +57321,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -103.5,-10.5
parent: 2
+ - uid: 10711
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -104.5,-10.5
+ parent: 2
- uid: 10712
components:
- type: Transform
@@ -57659,17 +57369,35 @@ entities:
rot: -1.5707963267948966 rad
pos: -99.5,-13.5
parent: 2
+ - uid: 10719
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -97.5,-13.5
+ parent: 2
- uid: 10720
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -104.5,10.5
+ rot: -1.5707963267948966 rad
+ pos: -96.5,-13.5
parent: 2
- uid: 10721
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -104.5,11.5
+ rot: -1.5707963267948966 rad
+ pos: -95.5,-13.5
+ parent: 2
+ - uid: 10722
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -94.5,-13.5
+ parent: 2
+ - uid: 10723
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -93.5,-13.5
parent: 2
- uid: 10725
components:
@@ -57734,18 +57462,20 @@ entities:
- uid: 10736
components:
- type: Transform
- pos: -101.5,1.5
+ rot: -1.5707963267948966 rad
+ pos: -95.5,-14.5
parent: 2
- - uid: 10795
+ - uid: 10737
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -140.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: -95.5,-15.5
parent: 2
- - uid: 10859
+ - uid: 10795
components:
- type: Transform
- pos: -73.5,-65.5
+ rot: 3.141592653589793 rad
+ pos: -140.5,4.5
parent: 2
- uid: 11122
components:
@@ -57753,6 +57483,12 @@ entities:
rot: 3.141592653589793 rad
pos: -134.5,13.5
parent: 2
+ - uid: 11133
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -103.5,-9.5
+ parent: 2
- uid: 11315
components:
- type: Transform
@@ -57783,52 +57519,12 @@ entities:
rot: 3.141592653589793 rad
pos: -140.5,5.5
parent: 2
- - uid: 11771
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -105.5,11.5
- parent: 2
- - uid: 11897
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -94.5,-13.5
- parent: 2
- - uid: 12607
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -97.5,-13.5
- parent: 2
- - uid: 12614
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -96.5,-13.5
- parent: 2
- - uid: 12615
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -95.5,-13.5
- parent: 2
- uid: 12727
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -43.5,-12.5
parent: 2
- - uid: 12895
- components:
- - type: Transform
- pos: -93.5,-7.5
- parent: 2
- - uid: 12924
- components:
- - type: Transform
- pos: -93.5,-6.5
- parent: 2
- uid: 12951
components:
- type: Transform
@@ -57837,7 +57533,8 @@ entities:
- uid: 13041
components:
- type: Transform
- pos: -40.5,-13.5
+ rot: 3.141592653589793 rad
+ pos: -103.5,-23.5
parent: 2
- uid: 13042
components:
@@ -57857,67 +57554,52 @@ entities:
rot: 3.141592653589793 rad
pos: -140.5,1.5
parent: 2
- - uid: 13120
- components:
- - type: Transform
- pos: -39.5,-13.5
- parent: 2
- uid: 13481
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -140.5,2.5
parent: 2
- - uid: 13554
- components:
- - type: Transform
- pos: -93.5,-8.5
- parent: 2
- - uid: 13560
+ - uid: 13623
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -56.5,-11.5
+ rot: -1.5707963267948966 rad
+ pos: -121.5,-27.5
parent: 2
- - uid: 13564
+ - uid: 13715
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -123.5,-12.5
+ pos: -141.5,-55.5
parent: 2
- - uid: 13565
+ - uid: 13723
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -55.5,-11.5
+ pos: -141.5,-57.5
parent: 2
- - uid: 13568
+ - uid: 13739
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -123.5,-11.5
+ pos: -105.5,-45.5
parent: 2
- - uid: 13623
+ - uid: 13743
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -121.5,-27.5
+ pos: -104.5,-35.5
parent: 2
- - uid: 13715
+ - uid: 13745
components:
- type: Transform
- pos: -141.5,-55.5
+ pos: -104.5,-37.5
parent: 2
- - uid: 13723
+ - uid: 13746
components:
- type: Transform
- pos: -141.5,-57.5
+ pos: -104.5,-33.5
parent: 2
- - uid: 13739
+ - uid: 13747
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -93.5,-13.5
+ pos: -104.5,-34.5
parent: 2
- uid: 13748
components:
@@ -57954,16 +57636,91 @@ entities:
- type: Transform
pos: -104.5,-26.5
parent: 2
+ - uid: 13755
+ components:
+ - type: Transform
+ pos: -104.5,-45.5
+ parent: 2
+ - uid: 13756
+ components:
+ - type: Transform
+ pos: -104.5,-43.5
+ parent: 2
+ - uid: 13757
+ components:
+ - type: Transform
+ pos: -104.5,-42.5
+ parent: 2
+ - uid: 13758
+ components:
+ - type: Transform
+ pos: -104.5,-41.5
+ parent: 2
+ - uid: 13759
+ components:
+ - type: Transform
+ pos: -104.5,-40.5
+ parent: 2
+ - uid: 13760
+ components:
+ - type: Transform
+ pos: -104.5,-39.5
+ parent: 2
+ - uid: 13761
+ components:
+ - type: Transform
+ pos: -104.5,-38.5
+ parent: 2
+ - uid: 13762
+ components:
+ - type: Transform
+ pos: -104.5,-44.5
+ parent: 2
+ - uid: 13764
+ components:
+ - type: Transform
+ pos: -103.5,-22.5
+ parent: 2
+ - uid: 13766
+ components:
+ - type: Transform
+ pos: -103.5,-19.5
+ parent: 2
+ - uid: 13767
+ components:
+ - type: Transform
+ pos: -103.5,-18.5
+ parent: 2
+ - uid: 13768
+ components:
+ - type: Transform
+ pos: -103.5,-17.5
+ parent: 2
- uid: 13769
components:
- type: Transform
pos: -103.5,-16.5
parent: 2
+ - uid: 13770
+ components:
+ - type: Transform
+ pos: -103.5,-15.5
+ parent: 2
- uid: 13771
components:
- type: Transform
pos: -103.5,-14.5
parent: 2
+ - uid: 13772
+ components:
+ - type: Transform
+ pos: -103.5,-20.5
+ parent: 2
+ - uid: 13773
+ components:
+ - type: Transform
+ pos: -104.5,-46.5
+ parent: 2
- uid: 13774
components:
- type: Transform
@@ -58072,12 +57829,6 @@ entities:
- type: Transform
pos: -153.5,-16.5
parent: 2
- - uid: 13966
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -99.5,5.5
- parent: 2
- uid: 14019
components:
- type: Transform
@@ -58119,23 +57870,17 @@ entities:
rot: -1.5707963267948966 rad
pos: -102.5,-56.5
parent: 2
- - uid: 14506
+ - uid: 14642
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -113.5,-68.5
+ rot: 3.141592653589793 rad
+ pos: -32.5,-44.5
parent: 2
- - uid: 14532
+ - uid: 14644
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -94.5,5.5
- parent: 2
- - uid: 14642
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,-44.5
+ pos: -76.5,-35.5
parent: 2
- uid: 14649
components:
@@ -58232,12 +57977,54 @@ entities:
rot: -1.5707963267948966 rad
pos: -17.5,-13.5
parent: 2
+ - uid: 14687
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -24.5,-13.5
+ parent: 2
- uid: 14688
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -18.5,-13.5
parent: 2
+ - uid: 14689
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -29.5,-13.5
+ parent: 2
+ - uid: 14690
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -28.5,-13.5
+ parent: 2
+ - uid: 14691
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -27.5,-13.5
+ parent: 2
+ - uid: 14692
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -26.5,-13.5
+ parent: 2
+ - uid: 14693
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -33.5,-13.5
+ parent: 2
+ - uid: 14694
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -25.5,-13.5
+ parent: 2
- uid: 14695
components:
- type: Transform
@@ -58250,12 +58037,48 @@ entities:
rot: -1.5707963267948966 rad
pos: -22.5,-13.5
parent: 2
+ - uid: 14697
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -32.5,-13.5
+ parent: 2
- uid: 14698
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -21.5,-13.5
parent: 2
+ - uid: 14699
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -30.5,-13.5
+ parent: 2
+ - uid: 14700
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -31.5,-13.5
+ parent: 2
+ - uid: 14701
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -39.5,-13.5
+ parent: 2
+ - uid: 14702
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -34.5,-13.5
+ parent: 2
+ - uid: 14703
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -35.5,-13.5
+ parent: 2
- uid: 14704
components:
- type: Transform
@@ -58274,6 +58097,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -38.5,-13.5
parent: 2
+ - uid: 14707
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -40.5,-13.5
+ parent: 2
- uid: 14708
components:
- type: Transform
@@ -58310,6 +58139,24 @@ entities:
rot: -1.5707963267948966 rad
pos: -15.5,-11.5
parent: 2
+ - uid: 14714
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -29.5,-14.5
+ parent: 2
+ - uid: 14715
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -29.5,-15.5
+ parent: 2
+ - uid: 14716
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -29.5,-12.5
+ parent: 2
- uid: 14718
components:
- type: Transform
@@ -58340,6 +58187,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -29.5,-5.5
parent: 2
+ - uid: 14723
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -29.5,-11.5
+ parent: 2
- uid: 14724
components:
- type: Transform
@@ -58412,40 +58265,17 @@ entities:
rot: 3.141592653589793 rad
pos: -43.5,-11.5
parent: 2
- - uid: 14770
- components:
- - type: Transform
- pos: -74.5,-40.5
- parent: 2
- uid: 15002
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -140.5,-10.5
parent: 2
- - uid: 15059
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -103.5,-15.5
- parent: 2
- - uid: 15060
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -104.5,-10.5
- parent: 2
- - uid: 15061
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -103.5,-9.5
- parent: 2
- - uid: 15243
+ - uid: 15326
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -66.5,-11.5
+ pos: -103.5,4.5
parent: 2
- uid: 15583
components:
@@ -58467,6 +58297,18 @@ entities:
- type: Transform
pos: -94.5,24.5
parent: 2
+ - uid: 15934
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -105.5,11.5
+ parent: 2
+ - uid: 15960
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -76.5,-37.5
+ parent: 2
- uid: 16064
components:
- type: Transform
@@ -58593,6 +58435,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -82.5,-56.5
parent: 2
+ - uid: 16092
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -76.5,-36.5
+ parent: 2
- uid: 16142
components:
- type: Transform
@@ -58603,66 +58451,71 @@ entities:
- type: Transform
pos: -94.5,19.5
parent: 2
- - uid: 16206
+ - uid: 16284
components:
- type: Transform
- pos: -89.5,-59.5
+ rot: -1.5707963267948966 rad
+ pos: -72.5,-28.5
parent: 2
- - uid: 16244
+ - uid: 16285
components:
- type: Transform
- pos: -89.5,-63.5
+ rot: -1.5707963267948966 rad
+ pos: -154.5,-34.5
parent: 2
- - uid: 16265
+ - uid: 16292
components:
- type: Transform
- pos: -89.5,-58.5
+ rot: -1.5707963267948966 rad
+ pos: -72.5,-32.5
parent: 2
- - uid: 16284
+ - uid: 16403
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -72.5,-28.5
+ pos: -72.5,-25.5
parent: 2
- - uid: 16285
+ - uid: 16416
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -154.5,-34.5
+ pos: -78.5,-56.5
parent: 2
- - uid: 16291
+ - uid: 16417
components:
- type: Transform
- pos: -89.5,-61.5
+ rot: -1.5707963267948966 rad
+ pos: -76.5,-56.5
parent: 2
- - uid: 16292
+ - uid: 16418
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -72.5,-32.5
+ pos: -75.5,-56.5
parent: 2
- - uid: 16298
+ - uid: 16419
components:
- type: Transform
- pos: -89.5,-57.5
+ rot: -1.5707963267948966 rad
+ pos: -76.5,-58.5
parent: 2
- - uid: 16403
+ - uid: 16420
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -72.5,-25.5
+ pos: -76.5,-57.5
parent: 2
- - uid: 16416
+ - uid: 16421
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -78.5,-56.5
+ pos: -76.5,-55.5
parent: 2
- - uid: 16445
+ - uid: 16422
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -65.5,-65.5
+ pos: -76.5,-54.5
parent: 2
- uid: 16463
components:
@@ -58711,11 +58564,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -72.5,-27.5
parent: 2
- - uid: 16815
- components:
- - type: Transform
- pos: -74.5,-56.5
- parent: 2
- uid: 16847
components:
- type: Transform
@@ -58839,11 +58687,36 @@ entities:
rot: -1.5707963267948966 rad
pos: -72.5,-29.5
parent: 2
+ - uid: 17073
+ components:
+ - type: Transform
+ pos: -76.5,-48.5
+ parent: 2
+ - uid: 17079
+ components:
+ - type: Transform
+ pos: -76.5,-50.5
+ parent: 2
+ - uid: 17081
+ components:
+ - type: Transform
+ pos: -76.5,-51.5
+ parent: 2
+ - uid: 17098
+ components:
+ - type: Transform
+ pos: -76.5,-52.5
+ parent: 2
- uid: 17130
components:
- type: Transform
pos: -62.5,-65.5
parent: 2
+ - uid: 17133
+ components:
+ - type: Transform
+ pos: -76.5,-46.5
+ parent: 2
- uid: 17327
components:
- type: Transform
@@ -58973,87 +58846,42 @@ entities:
rot: -1.5707963267948966 rad
pos: -154.5,-20.5
parent: 2
- - uid: 17825
- components:
- - type: Transform
- pos: -71.5,-65.5
- parent: 2
- uid: 17841
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -143.5,5.5
parent: 2
- - uid: 17865
- components:
- - type: Transform
- pos: -74.5,-55.5
- parent: 2
- uid: 17872
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -103.5,-26.5
parent: 2
- - uid: 17993
- components:
- - type: Transform
- pos: -74.5,-50.5
- parent: 2
- - uid: 18205
- components:
- - type: Transform
- pos: -15.5,-16.5
- parent: 2
- - uid: 18220
- components:
- - type: Transform
- pos: -15.5,3.5
- parent: 2
- - uid: 18278
- components:
- - type: Transform
- pos: -15.5,-10.5
- parent: 2
- - uid: 18430
- components:
- - type: Transform
- pos: -56.5,-71.5
- parent: 2
- - uid: 18432
- components:
- - type: Transform
- pos: -57.5,-71.5
- parent: 2
- - uid: 18602
- components:
- - type: Transform
- pos: -54.5,-71.5
- parent: 2
- - uid: 18607
+ - uid: 17990
components:
- type: Transform
- pos: -55.5,-71.5
+ pos: -76.5,-45.5
parent: 2
- - uid: 18619
+ - uid: 17993
components:
- type: Transform
- pos: -57.5,-70.5
+ pos: -76.5,-47.5
parent: 2
- - uid: 18622
+ - uid: 18043
components:
- type: Transform
- pos: -74.5,-35.5
+ pos: -48.5,-65.5
parent: 2
- - uid: 18684
+ - uid: 18221
components:
- type: Transform
- pos: -74.5,-63.5
+ pos: -48.5,-64.5
parent: 2
- - uid: 18747
+ - uid: 18357
components:
- type: Transform
- pos: -77.5,-56.5
+ pos: -76.5,-49.5
parent: 2
- uid: 18751
components:
@@ -59080,10 +58908,15 @@ entities:
- type: Transform
pos: -133.5,-8.5
parent: 2
- - uid: 18773
+ - uid: 18780
components:
- type: Transform
- pos: -74.5,-60.5
+ pos: -92.5,-61.5
+ parent: 2
+ - uid: 18781
+ components:
+ - type: Transform
+ pos: -92.5,-63.5
parent: 2
- uid: 18796
components:
@@ -59115,20 +58948,15 @@ entities:
rot: 3.141592653589793 rad
pos: -132.5,22.5
parent: 2
- - uid: 18863
- components:
- - type: Transform
- pos: -148.5,13.5
- parent: 2
- - uid: 18940
+ - uid: 18833
components:
- type: Transform
- pos: -74.5,-61.5
+ pos: -92.5,-62.5
parent: 2
- - uid: 18943
+ - uid: 18863
components:
- type: Transform
- pos: -74.5,-48.5
+ pos: -148.5,13.5
parent: 2
- uid: 19091
components:
@@ -59157,6 +58985,12 @@ entities:
- type: Transform
pos: -125.5,1.5
parent: 2
+ - uid: 19474
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -105.5,9.5
+ parent: 2
- uid: 19476
components:
- type: Transform
@@ -59187,15 +59021,11 @@ entities:
- type: Transform
pos: -15.5,2.5
parent: 2
- - uid: 19621
- components:
- - type: Transform
- pos: -89.5,-62.5
- parent: 2
- - uid: 19637
+ - uid: 19763
components:
- type: Transform
- pos: -89.5,-64.5
+ rot: 3.141592653589793 rad
+ pos: -102.5,5.5
parent: 2
- uid: 19820
components:
@@ -59207,6 +59037,12 @@ entities:
- type: Transform
pos: -28.5,-2.5
parent: 2
+ - uid: 19973
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -105.5,5.5
+ parent: 2
- uid: 20102
components:
- type: Transform
@@ -59245,6 +59081,11 @@ entities:
- type: Transform
pos: -109.5,-45.5
parent: 2
+ - uid: 20454
+ components:
+ - type: Transform
+ pos: -110.5,-45.5
+ parent: 2
- uid: 20486
components:
- type: Transform
@@ -59281,15 +59122,10 @@ entities:
rot: 3.141592653589793 rad
pos: -130.5,-36.5
parent: 2
- - uid: 20811
- components:
- - type: Transform
- pos: -74.5,-46.5
- parent: 2
- - uid: 20812
+ - uid: 20944
components:
- type: Transform
- pos: -74.5,-54.5
+ pos: -92.5,-58.5
parent: 2
- uid: 20960
components:
@@ -60073,11 +59909,6 @@ entities:
- type: Transform
pos: -133.5,0.5
parent: 2
- - uid: 21418
- components:
- - type: Transform
- pos: -74.5,-51.5
- parent: 2
- uid: 21428
components:
- type: Transform
@@ -60489,6 +60320,11 @@ entities:
- type: Transform
pos: -42.5,-60.5
parent: 2
+ - uid: 21625
+ components:
+ - type: Transform
+ pos: -92.5,-57.5
+ parent: 2
- uid: 21626
components:
- type: Transform
@@ -60669,10 +60505,70 @@ entities:
- type: Transform
pos: -69.5,-65.5
parent: 2
+ - uid: 21663
+ components:
+ - type: Transform
+ pos: -70.5,-65.5
+ parent: 2
+ - uid: 21664
+ components:
+ - type: Transform
+ pos: -71.5,-65.5
+ parent: 2
+ - uid: 21665
+ components:
+ - type: Transform
+ pos: -72.5,-65.5
+ parent: 2
+ - uid: 21666
+ components:
+ - type: Transform
+ pos: -73.5,-65.5
+ parent: 2
+ - uid: 21667
+ components:
+ - type: Transform
+ pos: -74.5,-65.5
+ parent: 2
+ - uid: 21668
+ components:
+ - type: Transform
+ pos: -65.5,-65.5
+ parent: 2
+ - uid: 21669
+ components:
+ - type: Transform
+ pos: -75.5,-65.5
+ parent: 2
+ - uid: 21670
+ components:
+ - type: Transform
+ pos: -76.5,-65.5
+ parent: 2
- uid: 21671
components:
- type: Transform
- pos: -74.5,-41.5
+ pos: -76.5,-64.5
+ parent: 2
+ - uid: 21672
+ components:
+ - type: Transform
+ pos: -76.5,-63.5
+ parent: 2
+ - uid: 21673
+ components:
+ - type: Transform
+ pos: -76.5,-61.5
+ parent: 2
+ - uid: 21674
+ components:
+ - type: Transform
+ pos: -76.5,-60.5
+ parent: 2
+ - uid: 21675
+ components:
+ - type: Transform
+ pos: -76.5,-62.5
parent: 2
- uid: 21715
components:
@@ -60685,6 +60581,18 @@ entities:
- type: Transform
pos: -18.5,-59.5
parent: 2
+ - uid: 22009
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -105.5,-27.5
+ parent: 2
+ - uid: 22010
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -106.5,-27.5
+ parent: 2
- uid: 22013
components:
- type: Transform
@@ -60853,6 +60761,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -133.5,-17.5
parent: 2
+ - uid: 22122
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -105.5,10.5
+ parent: 2
- uid: 22191
components:
- type: Transform
@@ -60888,6 +60802,18 @@ entities:
rot: -1.5707963267948966 rad
pos: -72.5,-30.5
parent: 2
+ - uid: 22323
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -96.5,-2.5
+ parent: 2
+ - uid: 22344
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -97.5,-2.5
+ parent: 2
- uid: 22367
components:
- type: Transform
@@ -60920,12 +60846,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -104.5,-53.5
parent: 2
- - uid: 22907
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -59.5,-66.5
- parent: 2
- uid: 22908
components:
- type: Transform
@@ -60938,21 +60858,6 @@ entities:
rot: 3.141592653589793 rad
pos: -152.5,1.5
parent: 2
- - uid: 23098
- components:
- - type: Transform
- pos: -74.5,-53.5
- parent: 2
- - uid: 23121
- components:
- - type: Transform
- pos: -76.5,-56.5
- parent: 2
- - uid: 23141
- components:
- - type: Transform
- pos: -89.5,-65.5
- parent: 2
- uid: 23146
components:
- type: Transform
@@ -60977,51 +60882,101 @@ entities:
rot: -1.5707963267948966 rad
pos: -73.5,-35.5
parent: 2
- - uid: 23208
+ - uid: 23163
components:
- type: Transform
- pos: -93.5,-12.5
+ rot: -1.5707963267948966 rad
+ pos: -74.5,-35.5
parent: 2
- - uid: 23222
+ - uid: 23173
components:
- type: Transform
- pos: -74.5,-37.5
+ rot: 3.141592653589793 rad
+ pos: -48.5,-66.5
parent: 2
- - uid: 23229
+ - uid: 23175
components:
- type: Transform
- pos: -74.5,-43.5
+ rot: 3.141592653589793 rad
+ pos: -48.5,-67.5
parent: 2
- - uid: 23231
+ - uid: 23176
components:
- type: Transform
- pos: -74.5,-64.5
+ rot: 3.141592653589793 rad
+ pos: -48.5,-68.5
parent: 2
- - uid: 23246
+ - uid: 23177
components:
- type: Transform
- pos: -72.5,-65.5
+ rot: 3.141592653589793 rad
+ pos: -48.5,-69.5
parent: 2
- - uid: 23267
+ - uid: 23178
components:
- type: Transform
- pos: -74.5,-38.5
+ rot: 3.141592653589793 rad
+ pos: -48.5,-71.5
parent: 2
- - uid: 23279
+ - uid: 23179
components:
- type: Transform
- pos: -74.5,-39.5
+ rot: 3.141592653589793 rad
+ pos: -48.5,-70.5
parent: 2
- - uid: 23284
+ - uid: 23180
components:
- type: Transform
- pos: -74.5,-36.5
+ rot: 3.141592653589793 rad
+ pos: -49.5,-71.5
parent: 2
- - uid: 23303
+ - uid: 23181
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -106.5,-31.5
+ rot: 3.141592653589793 rad
+ pos: -51.5,-71.5
+ parent: 2
+ - uid: 23182
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -52.5,-71.5
+ parent: 2
+ - uid: 23183
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -50.5,-71.5
+ parent: 2
+ - uid: 23184
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -52.5,-70.5
+ parent: 2
+ - uid: 23187
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -53.5,-71.5
+ parent: 2
+ - uid: 23188
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -54.5,-71.5
+ parent: 2
+ - uid: 23189
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -55.5,-71.5
+ parent: 2
+ - uid: 23408
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -104.5,5.5
parent: 2
- uid: 23430
components:
@@ -61059,6 +61014,12 @@ entities:
- type: Transform
pos: -14.5,6.5
parent: 2
+ - uid: 23893
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -105.5,8.5
+ parent: 2
- uid: 23896
components:
- type: Transform
@@ -61323,6 +61284,41 @@ entities:
- type: Transform
pos: -110.5,5.5
parent: 2
+ - uid: 24354
+ components:
+ - type: Transform
+ pos: -76.5,-44.5
+ parent: 2
+ - uid: 24355
+ components:
+ - type: Transform
+ pos: -76.5,-43.5
+ parent: 2
+ - uid: 24356
+ components:
+ - type: Transform
+ pos: -76.5,-42.5
+ parent: 2
+ - uid: 24357
+ components:
+ - type: Transform
+ pos: -76.5,-41.5
+ parent: 2
+ - uid: 24358
+ components:
+ - type: Transform
+ pos: -76.5,-40.5
+ parent: 2
+ - uid: 24359
+ components:
+ - type: Transform
+ pos: -76.5,-39.5
+ parent: 2
+ - uid: 24360
+ components:
+ - type: Transform
+ pos: -76.5,-38.5
+ parent: 2
- uid: 24380
components:
- type: Transform
@@ -61612,6 +61608,12 @@ entities:
rot: 1.5707963267948966 rad
pos: -108.5,-68.5
parent: 2
+ - uid: 24914
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -113.5,-68.5
+ parent: 2
- uid: 25055
components:
- type: Transform
@@ -62165,16 +62167,6 @@ entities:
- type: Transform
pos: -15.5,-62.5
parent: 2
- - uid: 25908
- components:
- - type: Transform
- pos: -117.5,-4.5
- parent: 2
- - uid: 25909
- components:
- - type: Transform
- pos: -118.5,-4.5
- parent: 2
- uid: 25933
components:
- type: Transform
@@ -62193,6 +62185,36 @@ entities:
rot: 1.5707963267948966 rad
pos: -137.5,-4.5
parent: 2
+ - uid: 26038
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -98.5,-2.5
+ parent: 2
+ - uid: 26039
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -100.5,-2.5
+ parent: 2
+ - uid: 26041
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -99.5,-2.5
+ parent: 2
+ - uid: 26051
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -101.5,-2.5
+ parent: 2
+ - uid: 26052
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -102.5,-2.5
+ parent: 2
- uid: 26123
components:
- type: Transform
@@ -62315,12 +62337,6 @@ entities:
- type: Transform
pos: -26.5,-17.5
parent: 2
- - uid: 1160
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -55.5,-69.5
- parent: 2
- uid: 1237
components:
- type: Transform
@@ -62357,48 +62373,6 @@ entities:
rot: 3.141592653589793 rad
pos: -87.5,-34.5
parent: 2
- - uid: 1657
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -55.5,-73.5
- parent: 2
- - uid: 1674
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -56.5,-69.5
- parent: 2
- - uid: 1687
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -55.5,-70.5
- parent: 2
- - uid: 1905
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -56.5,-70.5
- parent: 2
- - uid: 1919
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -56.5,-73.5
- parent: 2
- - uid: 1945
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -56.5,-74.5
- parent: 2
- - uid: 1959
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -55.5,-74.5
- parent: 2
- uid: 2670
components:
- type: Transform
@@ -62420,24 +62394,6 @@ entities:
- type: Transform
pos: -50.5,-11.5
parent: 2
- - uid: 3316
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -69.5,-77.5
- parent: 2
- - uid: 3327
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -70.5,-77.5
- parent: 2
- - uid: 3328
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -67.5,-77.5
- parent: 2
- uid: 3550
components:
- type: Transform
@@ -62551,6 +62507,36 @@ entities:
rot: 1.5707963267948966 rad
pos: -35.5,-50.5
parent: 2
+ - uid: 4250
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -53.5,-70.5
+ parent: 2
+ - uid: 4251
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -54.5,-73.5
+ parent: 2
+ - uid: 4252
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -54.5,-72.5
+ parent: 2
+ - uid: 4263
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -54.5,-70.5
+ parent: 2
+ - uid: 4279
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -53.5,-73.5
+ parent: 2
- uid: 4448
components:
- type: Transform
@@ -62584,6 +62570,18 @@ entities:
rot: 3.141592653589793 rad
pos: -95.5,9.5
parent: 2
+ - uid: 5108
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -53.5,-72.5
+ parent: 2
+ - uid: 5113
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -53.5,-69.5
+ parent: 2
- uid: 5116
components:
- type: Transform
@@ -62631,6 +62629,24 @@ entities:
rot: 3.141592653589793 rad
pos: -147.5,-44.5
parent: 2
+ - uid: 6545
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -62.5,-32.5
+ parent: 2
+ - uid: 6606
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -61.5,-32.5
+ parent: 2
+ - uid: 6607
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -60.5,-32.5
+ parent: 2
- uid: 6723
components:
- type: Transform
@@ -62666,6 +62682,21 @@ entities:
- type: Transform
pos: -147.5,-46.5
parent: 2
+ - uid: 7562
+ components:
+ - type: Transform
+ pos: -62.5,-30.5
+ parent: 2
+ - uid: 7572
+ components:
+ - type: Transform
+ pos: -60.5,-30.5
+ parent: 2
+ - uid: 7573
+ components:
+ - type: Transform
+ pos: -61.5,-30.5
+ parent: 2
- uid: 8264
components:
- type: Transform
@@ -62837,12 +62868,6 @@ entities:
- type: Transform
pos: -10.5,-2.5
parent: 2
- - uid: 8686
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -76.5,-74.5
- parent: 2
- uid: 9120
components:
- type: Transform
@@ -62872,11 +62897,6 @@ entities:
- type: Transform
pos: -31.5,17.5
parent: 2
- - uid: 9306
- components:
- - type: Transform
- pos: -90.5,-39.5
- parent: 2
- uid: 9331
components:
- type: Transform
@@ -62906,6 +62926,11 @@ entities:
rot: 3.141592653589793 rad
pos: -30.5,14.5
parent: 2
+ - uid: 9455
+ components:
+ - type: Transform
+ pos: -81.5,-38.5
+ parent: 2
- uid: 9722
components:
- type: Transform
@@ -62923,6 +62948,11 @@ entities:
rot: 3.141592653589793 rad
pos: -93.5,27.5
parent: 2
+ - uid: 10863
+ components:
+ - type: Transform
+ pos: -84.5,-38.5
+ parent: 2
- uid: 11010
components:
- type: Transform
@@ -62944,15 +62974,10 @@ entities:
rot: 3.141592653589793 rad
pos: -27.5,14.5
parent: 2
- - uid: 11085
- components:
- - type: Transform
- pos: -92.5,-39.5
- parent: 2
- - uid: 11133
+ - uid: 11052
components:
- type: Transform
- pos: -91.5,-39.5
+ pos: -83.5,-38.5
parent: 2
- uid: 11632
components:
@@ -62977,28 +63002,22 @@ entities:
rot: 1.5707963267948966 rad
pos: -53.5,-43.5
parent: 2
- - uid: 14732
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -66.5,-77.5
- parent: 2
- - uid: 14758
+ - uid: 14791
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -69.5,-76.5
+ pos: -44.5,-46.5
parent: 2
- - uid: 14759
+ - uid: 15013
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -66.5,-76.5
+ rot: 1.5707963267948966 rad
+ pos: -71.5,-43.5
parent: 2
- - uid: 14791
+ - uid: 15016
components:
- type: Transform
- pos: -44.5,-46.5
+ rot: 1.5707963267948966 rad
+ pos: -71.5,-44.5
parent: 2
- uid: 15333
components:
@@ -63018,34 +63037,41 @@ entities:
rot: -1.5707963267948966 rad
pos: -129.5,-58.5
parent: 2
- - uid: 15785
- components:
- - type: Transform
- pos: -100.5,8.5
- parent: 2
- uid: 15847
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -60.5,-34.5
parent: 2
- - uid: 16309
+ - uid: 16042
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -70.5,-43.5
+ rot: 3.141592653589793 rad
+ pos: -83.5,-41.5
parent: 2
- - uid: 16317
+ - uid: 16044
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -70.5,-45.5
+ rot: 3.141592653589793 rad
+ pos: -81.5,-41.5
parent: 2
- - uid: 16318
+ - uid: 16711
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -70.5,-44.5
+ rot: 3.141592653589793 rad
+ pos: -65.5,-75.5
+ parent: 2
+ - uid: 16712
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -68.5,-75.5
+ parent: 2
+ - uid: 16823
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -66.5,-75.5
parent: 2
- uid: 16893
components:
@@ -63058,6 +63084,12 @@ entities:
rot: 3.141592653589793 rad
pos: -92.5,27.5
parent: 2
+ - uid: 16948
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -69.5,-75.5
+ parent: 2
- uid: 17057
components:
- type: Transform
@@ -63129,22 +63161,10 @@ entities:
rot: -1.5707963267948966 rad
pos: -92.5,-32.5
parent: 2
- - uid: 19167
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -67.5,-76.5
- parent: 2
- - uid: 19283
- components:
- - type: Transform
- pos: -4.5,-6.5
- parent: 2
- - uid: 19724
+ - uid: 17827
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -70.5,-76.5
+ pos: -80.5,-38.5
parent: 2
- uid: 19776
components:
@@ -63205,16 +63225,23 @@ entities:
- type: Transform
pos: -48.5,-36.5
parent: 2
- - uid: 21484
+ - uid: 21048
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -120.5,36.5
+ rot: 3.141592653589793 rad
+ pos: -73.5,-73.5
parent: 2
- - uid: 21515
+ - uid: 21049
components:
- type: Transform
- pos: -5.5,-6.5
+ rot: 3.141592653589793 rad
+ pos: -72.5,-73.5
+ parent: 2
+ - uid: 21484
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -120.5,36.5
parent: 2
- uid: 22387
components:
@@ -63233,11 +63260,17 @@ entities:
rot: 3.141592653589793 rad
pos: -14.5,-25.5
parent: 2
- - uid: 22442
+ - uid: 22965
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -77.5,-74.5
+ pos: -5.5,-8.5
+ parent: 2
+ - uid: 22970
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -6.5,-8.5
parent: 2
- uid: 22997
components:
@@ -63254,6 +63287,18 @@ entities:
- type: Transform
pos: -8.5,-35.5
parent: 2
+ - uid: 23121
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -54.5,-69.5
+ parent: 2
+ - uid: 23373
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -71.5,-45.5
+ parent: 2
- uid: 23432
components:
- type: Transform
@@ -63265,15 +63310,29 @@ entities:
- type: Transform
pos: -134.5,-0.5
parent: 2
- - uid: 23719
+ - uid: 23458
components:
- type: Transform
- pos: -99.5,8.5
+ rot: 3.141592653589793 rad
+ pos: -69.5,-76.5
parent: 2
- - uid: 23728
+ - uid: 23459
components:
- type: Transform
- pos: -98.5,8.5
+ rot: 3.141592653589793 rad
+ pos: -68.5,-76.5
+ parent: 2
+ - uid: 23460
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -66.5,-76.5
+ parent: 2
+ - uid: 23461
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -65.5,-76.5
parent: 2
- uid: 24452
components:
@@ -63374,40 +63433,10 @@ entities:
parent: 2
- proto: ChairFolding
entities:
- - uid: 3504
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -92.5,-61.5
- parent: 2
- - uid: 16117
- components:
- - type: Transform
- pos: -91.40397,-60.489017
- parent: 2
- - uid: 24357
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -128.49933,-28.332848
- parent: 2
- - uid: 24358
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -128.49933,-29.270348
- parent: 2
- - uid: 24359
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -130.53058,-29.317223
- parent: 2
- - uid: 24360
+ - uid: 26054
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -130.5462,-28.364098
+ pos: -94.532234,-61.424862
parent: 2
- proto: ChairOfficeDark
entities:
@@ -63417,17 +63446,6 @@ entities:
rot: 3.141592653589793 rad
pos: -110.43836,-14.410664
parent: 2
- - uid: 1229
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -97.5,1.5
- parent: 2
- - uid: 1972
- components:
- - type: Transform
- pos: -97.5,-0.5
- parent: 2
- uid: 2597
components:
- type: Transform
@@ -63496,6 +63514,12 @@ entities:
- type: Transform
pos: -52.49605,-6.624262
parent: 2
+ - uid: 3316
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -74.5,-43.5
+ parent: 2
- uid: 3983
components:
- type: Transform
@@ -63606,12 +63630,24 @@ entities:
rot: 3.141592653589793 rad
pos: -43.5,-67.5
parent: 2
+ - uid: 9213
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -77.5,-30.5
+ parent: 2
- uid: 9513
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -96.5,-40.5
parent: 2
+ - uid: 9706
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -115.5,28.5
+ parent: 2
- uid: 9707
components:
- type: Transform
@@ -63660,6 +63696,12 @@ entities:
rot: 3.141592653589793 rad
pos: -62.5,-5.5
parent: 2
+ - uid: 16009
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -110.5,-31.5
+ parent: 2
- uid: 16525
components:
- type: Transform
@@ -63678,11 +63720,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -34.5,-41.5
parent: 2
- - uid: 17122
- components:
- - type: Transform
- pos: -77.5,-32.5
- parent: 2
- uid: 17131
components:
- type: Transform
@@ -63778,15 +63815,15 @@ entities:
parent: 2
- proto: ChairOfficeLight
entities:
- - uid: 6088
+ - uid: 1560
components:
- type: Transform
- pos: -94.5,1.5
+ pos: -113.5,-30.5
parent: 2
- - uid: 6119
+ - uid: 6865
components:
- type: Transform
- pos: -95.5,1.5
+ pos: -114.5,-30.5
parent: 2
- proto: ChairPilotSeat
entities:
@@ -63872,51 +63909,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -12.5,-28.5
parent: 2
- - uid: 13710
- components:
- - type: Transform
- pos: -62.5,-30.5
- parent: 2
- - uid: 13711
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -60.5,-32.5
- parent: 2
- - uid: 14534
- components:
- - type: Transform
- pos: -61.5,-30.5
- parent: 2
- - uid: 14540
- components:
- - type: Transform
- pos: -60.5,-30.5
- parent: 2
- - uid: 14608
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -61.5,-32.5
- parent: 2
- - uid: 19099
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,-40.5
- parent: 2
- - uid: 19257
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -62.5,-32.5
- parent: 2
- - uid: 19348
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -69.5,-40.5
- parent: 2
- uid: 20949
components:
- type: Transform
@@ -64071,13 +64063,6 @@ entities:
- type: Transform
pos: -120.5,-37.5
parent: 2
-- proto: CircuitImprinterMachineCircuitboard
- entities:
- - uid: 16653
- components:
- - type: Transform
- pos: -116.54148,-30.643776
- parent: 2
- proto: CleanerDispenser
entities:
- uid: 25668
@@ -64122,10 +64107,10 @@ entities:
- type: Transform
pos: -80.5,-29.5
parent: 2
- - uid: 20513
+ - uid: 7843
components:
- type: Transform
- pos: -142.5,-48.5
+ pos: -142.5,-38.5
parent: 2
- proto: ClosetChefFilled
entities:
@@ -64148,6 +64133,11 @@ entities:
- type: Transform
pos: -104.5,24.5
parent: 2
+ - uid: 4318
+ components:
+ - type: Transform
+ pos: -127.5,-29.5
+ parent: 2
- uid: 4319
components:
- type: Transform
@@ -64208,21 +64198,11 @@ entities:
- type: Transform
pos: -58.5,2.5
parent: 2
- - uid: 14771
- components:
- - type: Transform
- pos: -142.5,-40.5
- parent: 2
- uid: 17069
components:
- type: Transform
pos: -36.5,-69.5
parent: 2
- - uid: 17200
- components:
- - type: Transform
- pos: -75.5,-60.5
- parent: 2
- uid: 20398
components:
- type: Transform
@@ -64248,6 +64228,11 @@ entities:
- type: Transform
pos: -76.5,-9.5
parent: 2
+ - uid: 23395
+ components:
+ - type: Transform
+ pos: -97.5,4.5
+ parent: 2
- uid: 23919
components:
- type: Transform
@@ -64280,15 +64265,15 @@ entities:
- type: Transform
pos: -134.5,-18.5
parent: 2
- - uid: 11128
+ - uid: 4661
components:
- type: Transform
- pos: -139.5,-51.5
+ pos: -128.5,-29.5
parent: 2
- - uid: 11164
+ - uid: 11128
components:
- type: Transform
- pos: -75.5,-61.5
+ pos: -139.5,-51.5
parent: 2
- proto: ClosetFire
entities:
@@ -64314,6 +64299,11 @@ entities:
- type: Transform
pos: -134.5,-19.5
parent: 2
+ - uid: 4662
+ components:
+ - type: Transform
+ pos: -129.5,-29.5
+ parent: 2
- uid: 5537
components:
- type: Transform
@@ -64324,11 +64314,6 @@ entities:
- type: Transform
pos: -115.5,-8.5
parent: 2
- - uid: 6796
- components:
- - type: Transform
- pos: -142.5,-38.5
- parent: 2
- uid: 9325
components:
- type: Transform
@@ -64372,15 +64357,15 @@ entities:
- type: Transform
pos: -14.5,7.5
parent: 2
- - uid: 16794
+ - uid: 17093
components:
- type: Transform
- pos: -112.5,-26.5
+ pos: -68.5,-64.5
parent: 2
- - uid: 18628
+ - uid: 17101
components:
- type: Transform
- pos: -75.5,-62.5
+ pos: -74.5,-61.5
parent: 2
- uid: 18828
components:
@@ -64433,10 +64418,10 @@ entities:
parent: 2
- proto: ClosetL3ScienceFilled
entities:
- - uid: 14783
+ - uid: 5998
components:
- type: Transform
- pos: -142.5,-47.5
+ pos: -142.5,-39.5
parent: 2
- proto: ClosetL3SecurityFilled
entities:
@@ -64459,11 +64444,6 @@ entities:
parent: 2
- proto: ClosetMaintenanceFilledRandom
entities:
- - uid: 991
- components:
- - type: Transform
- pos: -68.5,-79.5
- parent: 2
- uid: 1512
components:
- type: Transform
@@ -64489,11 +64469,21 @@ entities:
- type: Transform
pos: -139.5,-54.5
parent: 2
+ - uid: 4820
+ components:
+ - type: Transform
+ pos: -67.5,-78.5
+ parent: 2
- uid: 8817
components:
- type: Transform
pos: -10.5,-40.5
parent: 2
+ - uid: 8842
+ components:
+ - type: Transform
+ pos: -73.5,-34.5
+ parent: 2
- uid: 9083
components:
- type: Transform
@@ -64504,11 +64494,6 @@ entities:
- type: Transform
pos: -16.5,4.5
parent: 2
- - uid: 9240
- components:
- - type: Transform
- pos: -61.5,-64.5
- parent: 2
- uid: 10082
components:
- type: Transform
@@ -64529,11 +64514,6 @@ entities:
- type: Transform
pos: -14.5,-64.5
parent: 2
- - uid: 18687
- components:
- - type: Transform
- pos: -73.5,-37.5
- parent: 2
- uid: 19034
components:
- type: Transform
@@ -64574,25 +64554,25 @@ entities:
- type: Transform
pos: -14.5,2.5
parent: 2
- - uid: 26198
+- proto: ClosetRadiationSuitFilled
+ entities:
+ - uid: 7844
components:
- type: Transform
- pos: -73.5,-34.5
+ pos: -142.5,-40.5
parent: 2
-- proto: ClosetRadiationSuitFilled
+- proto: ClosetSteelBase
entities:
- - uid: 14774
+ - uid: 4151
components:
- type: Transform
- pos: -142.5,-46.5
+ pos: -19.5,-48.5
parent: 2
- - uid: 19097
+ - uid: 4153
components:
- type: Transform
- pos: -125.5,-24.5
+ pos: -19.5,-52.5
parent: 2
-- proto: ClosetSteelBase
- entities:
- uid: 9728
components:
- type: Transform
@@ -64628,16 +64608,6 @@ entities:
showEnts: False
occludes: True
ent: null
- - uid: 10719
- components:
- - type: Transform
- pos: -18.5,-54.5
- parent: 2
- - uid: 13745
- components:
- - type: Transform
- pos: -18.5,-50.5
- parent: 2
- uid: 26157
components:
- type: Transform
@@ -64708,6 +64678,16 @@ entities:
- type: Transform
pos: -124.5,-58.5
parent: 2
+ - uid: 20734
+ components:
+ - type: Transform
+ pos: -70.5,-64.5
+ parent: 2
+ - uid: 22342
+ components:
+ - type: Transform
+ pos: -118.5,-28.5
+ parent: 2
- uid: 23254
components:
- type: Transform
@@ -64728,23 +64708,6 @@ entities:
- type: Transform
pos: -119.5,36.5
parent: 2
-- proto: ClosetWallOrange
- entities:
- - uid: 8987
- components:
- - type: Transform
- pos: -99.5,-25.5
- parent: 2
- - uid: 16405
- components:
- - type: Transform
- pos: -99.5,-21.5
- parent: 2
- - uid: 16459
- components:
- - type: Transform
- pos: -99.5,-29.5
- parent: 2
- proto: ClothingBackpackDuffelSurgeryFilled
entities:
- uid: 3894
@@ -64811,17 +64774,17 @@ entities:
parent: 2
- proto: ClothingHandsGlovesBoxingBlue
entities:
- - uid: 18615
+ - uid: 1706
components:
- type: Transform
- pos: -49.440575,-73.53511
+ pos: -57.5,-72.5
parent: 2
- proto: ClothingHandsGlovesBoxingRed
entities:
- - uid: 18616
+ - uid: 3965
components:
- type: Transform
- pos: -52.471825,-70.581985
+ pos: -60.5,-69.5
parent: 2
- proto: ClothingHandsGlovesColorYellow
entities:
@@ -64830,49 +64793,17 @@ entities:
- type: Transform
pos: -26.49561,-5.6866364
parent: 2
- - uid: 4687
- components:
- - type: Transform
- rot: 6.283185307179586 rad
- pos: -112.52703,-33.284325
- parent: 2
- - uid: 9643
- components:
- - type: Transform
- pos: -131.63904,-5.5664
- parent: 2
- - uid: 18219
- components:
- - type: Transform
- pos: -131.46716,-5.28515
- parent: 2
-- proto: ClothingHandsGlovesCombat
- entities:
- - uid: 24004
- components:
- - type: Transform
- pos: -131.53043,-18.302956
- parent: 2
-- proto: ClothingHandsGlovesConducting
- entities:
- - uid: 22989
- components:
- - type: Transform
- pos: -68.491066,-70.45232
- parent: 2
-- proto: ClothingHandsTacticalMaidGloves
- entities:
- - uid: 18949
+ - uid: 23452
components:
- type: Transform
- pos: -77.53495,-38.737625
+ pos: -67.5,-69.5
parent: 2
- proto: ClothingHeadFishCap
entities:
- - uid: 22287
+ - uid: 3305
components:
- type: Transform
- pos: -70.57546,-42.33612
+ pos: -71.51768,-42.386246
parent: 2
- proto: ClothingHeadHatCone
entities:
@@ -64894,17 +64825,17 @@ entities:
- uid: 22979
components:
- type: Transform
- pos: -120.7869,-28.483788
+ pos: -120.50319,-28.503174
parent: 2
- uid: 22980
components:
- type: Transform
- pos: -119.982414,-28.344303
+ pos: -119.643814,-28.300049
parent: 2
- uid: 22981
components:
- type: Transform
- pos: -119.21679,-28.188053
+ pos: -118.95027,-28.066614
parent: 2
- proto: ClothingHeadHatPirate
entities:
@@ -64913,13 +64844,6 @@ entities:
- type: Transform
pos: -24.954203,-70.19411
parent: 2
-- proto: ClothingHeadHatTacticalMaidHeadband
- entities:
- - uid: 18941
- components:
- - type: Transform
- pos: -77.5037,-38.19075
- parent: 2
- proto: ClothingHeadHatUshanka
entities:
- uid: 11625
@@ -64927,39 +64851,15 @@ entities:
- type: Transform
pos: -23.908735,4.571392
parent: 2
-- proto: ClothingHeadHelmetRiot
- entities:
- - uid: 14777
- components:
- - type: Transform
- pos: -82.23979,-22.63572
- parent: 2
- - uid: 22120
- components:
- - type: Transform
- pos: -82.27104,-22.26072
- parent: 2
- proto: ClothingMaskGasAtmos
entities:
- uid: 18813
components:
- type: Transform
- pos: -116.47996,12.489793
- parent: 2
-- proto: ClothingNeckCloakLesbian
- entities:
- - uid: 22951
- components:
- - type: Transform
- pos: -24.48211,-68.415665
+ pos: -116.44845,12.663849
parent: 2
- proto: ClothingNeckGoldAutismPin
entities:
- - uid: 2395
- components:
- - type: Transform
- pos: -21.527897,-69.71385
- parent: 2
- uid: 9590
components:
- type: Transform
@@ -64981,48 +64881,6 @@ entities:
- type: Transform
pos: -97.616005,-43.298306
parent: 2
-- proto: ClothingNeckScarfStripedSyndieGreen
- entities:
- - uid: 2415
- components:
- - type: Transform
- parent: 2411
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingNeckScarfStripedSyndieRed
- entities:
- - uid: 2493
- components:
- - type: Transform
- parent: 2411
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingOuterArmorBulletproof
- entities:
- - uid: 25881
- components:
- - type: Transform
- pos: -82.45854,-21.33808
- parent: 2
- - uid: 25882
- components:
- - type: Transform
- pos: -82.47417,-21.697454
- parent: 2
-- proto: ClothingOuterArmorRiot
- entities:
- - uid: 14730
- components:
- - type: Transform
- pos: -82.25542,-22.745094
- parent: 2
- - uid: 14987
- components:
- - type: Transform
- pos: -82.23979,-22.432594
- parent: 2
- proto: ClothingOuterCoatPirate
entities:
- uid: 24562
@@ -65030,18 +64888,6 @@ entities:
- type: Transform
pos: -24.922953,-70.55348
parent: 2
-- proto: ClothingOuterVestHazard
- entities:
- - uid: 25848
- components:
- - type: Transform
- pos: -107.49455,-15.437063
- parent: 2
- - uid: 25991
- components:
- - type: Transform
- pos: -107.47893,-15.437063
- parent: 2
- proto: ClothingOuterWinterEngi
entities:
- uid: 12180
@@ -65049,13 +64895,6 @@ entities:
- type: Transform
pos: -86.49207,-7.485811
parent: 2
-- proto: ClothingShoesBootsCombatFilled
- entities:
- - uid: 23784
- components:
- - type: Transform
- pos: -127.52387,-21.458458
- parent: 2
- proto: ClothingShoesBootsMag
entities:
- uid: 24375
@@ -65091,77 +64930,32 @@ entities:
parent: 2
- proto: ClothingUniformJumpskirtJanimaidmini
entities:
- - uid: 9655
- components:
- - type: Transform
- parent: 9728
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 10121
+ - uid: 1859
components:
- type: Transform
- pos: -81.46719,-67.41165
+ pos: -15.489,17.553165
parent: 2
-- proto: ClothingUniformJumpskirtOperative
- entities:
- - uid: 2423
- components:
- - type: Transform
- parent: 2411
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingUniformJumpskirtSyndieFormalDress
- entities:
- - uid: 2480
+ - uid: 9655
components:
- type: Transform
- parent: 2411
+ parent: 9728
- type: Physics
canCollide: False
- type: InsideEntityStorage
-- proto: ClothingUniformJumpskirtTacticalMaid
- entities:
- - uid: 23270
- components:
- - type: Transform
- pos: -77.47245,-38.472
- parent: 2
- proto: ClothingUniformJumpsuitJournalist
entities:
- - uid: 20528
+ - uid: 16015
components:
- type: Transform
- rot: 6.283185307179586 rad
- pos: -99.355385,0.6056731
+ pos: -109.5954,-33.615555
parent: 2
-- proto: ClothingUniformJumpsuitOperative
- entities:
- - uid: 2501
- components:
- - type: Transform
- parent: 2411
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- proto: ClothingUniformJumpsuitReporter
entities:
- - uid: 874
+ - uid: 16014
components:
- type: Transform
- rot: 6.283185307179586 rad
- pos: -99.605385,0.49629807
+ pos: -109.43915,-33.53743
parent: 2
-- proto: ClothingUniformJumpsuitSyndieFormal
- entities:
- - uid: 2432
- components:
- - type: Transform
- parent: 2411
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- proto: ComfyChair
entities:
- uid: 1641
@@ -65245,13 +65039,6 @@ entities:
- type: Transform
pos: -118.489746,-74.612564
parent: 2
-- proto: CommsComputerCircuitboard
- entities:
- - uid: 4263
- components:
- - type: Transform
- pos: -116.39651,-31.471237
- parent: 2
- proto: ComputerAlert
entities:
- uid: 2505
@@ -65570,11 +65357,11 @@ entities:
parent: 2
- proto: ComputerMassMedia
entities:
- - uid: 1165
+ - uid: 15990
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -98.5,-0.5
+ pos: -111.5,-31.5
parent: 2
- proto: ComputerMedicalRecords
entities:
@@ -65731,13 +65518,6 @@ entities:
rot: 3.141592653589793 rad
pos: -133.5,-48.5
parent: 2
-- proto: ComputerSalvageExpedition
- entities:
- - uid: 22987
- components:
- - type: Transform
- pos: -95.5,35.5
- parent: 2
- proto: ComputerShuttleCargo
entities:
- uid: 2711
@@ -65830,11 +65610,11 @@ entities:
parent: 2
- proto: ComputerSurveillanceWirelessCameraMonitor
entities:
- - uid: 2621
+ - uid: 15991
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -96.5,1.5
+ rot: 1.5707963267948966 rad
+ pos: -111.5,-32.5
parent: 2
- proto: ComputerTelevision
entities:
@@ -65844,6 +65624,12 @@ entities:
rot: 3.141592653589793 rad
pos: -60.5,-53.5
parent: 2
+ - uid: 6799
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -86.5,-47.5
+ parent: 2
- uid: 8171
components:
- type: Transform
@@ -65867,17 +65653,6 @@ entities:
rot: 3.141592653589793 rad
pos: -50.5,-4.5
parent: 2
- - uid: 15797
- components:
- - type: Transform
- pos: -126.5,-42.5
- parent: 2
- - uid: 16690
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -86.5,-48.5
- parent: 2
- uid: 22267
components:
- type: Transform
@@ -66310,12 +66085,6 @@ entities:
rot: 3.141592653589793 rad
pos: -98.5,35.5
parent: 2
- - uid: 14781
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -100.5,23.5
- parent: 2
- uid: 14873
components:
- type: Transform
@@ -66400,6 +66169,11 @@ entities:
rot: -1.5707963267948966 rad
pos: -109.5,24.5
parent: 2
+ - uid: 22205
+ components:
+ - type: Transform
+ pos: -100.5,23.5
+ parent: 2
- uid: 23417
components:
- type: Transform
@@ -66618,11 +66392,6 @@ entities:
ent: null
- proto: CrateEngineeringCableBulk
entities:
- - uid: 4802
- components:
- - type: Transform
- pos: -110.5,-33.5
- parent: 2
- uid: 15433
components:
- type: Transform
@@ -66657,13 +66426,6 @@ entities:
- type: Transform
pos: -32.5,-69.5
parent: 2
-- proto: CrateEngineeringSingularityCollector
- entities:
- - uid: 22278
- components:
- - type: Transform
- pos: -114.5,36.5
- parent: 2
- proto: CrateFilledSpawner
entities:
- uid: 609
@@ -66671,6 +66433,16 @@ entities:
- type: Transform
pos: -90.5,12.5
parent: 2
+ - uid: 1856
+ components:
+ - type: Transform
+ pos: -21.5,-0.5
+ parent: 2
+ - uid: 4357
+ components:
+ - type: Transform
+ pos: -22.5,-0.5
+ parent: 2
- uid: 4648
components:
- type: Transform
@@ -66804,44 +66576,10 @@ entities:
- type: Transform
pos: -126.5,-58.5
parent: 2
- - uid: 21499
- components:
- - type: Transform
- pos: -70.5,-46.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1465
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 23495
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 24431
+ - uid: 23466
components:
- type: Transform
- pos: -132.5,-26.5
+ pos: -71.5,-46.5
parent: 2
- type: EntityStorage
air:
@@ -66867,10 +66605,7 @@ entities:
showEnts: False
occludes: True
ents:
- - 24438
- - 24434
- - 24433
- - 24432
+ - 23495
paper_label: !type:ContainerSlot
showEnts: False
occludes: True
@@ -66922,6 +66657,11 @@ entities:
showEnts: False
occludes: True
ent: null
+ - uid: 6250
+ components:
+ - type: Transform
+ pos: -124.5,-24.5
+ parent: 2
- uid: 8271
components:
- type: Transform
@@ -66947,40 +66687,11 @@ entities:
- type: Transform
pos: -63.5,-63.5
parent: 2
- - uid: 20514
+ - uid: 17089
components:
- type: Transform
- pos: -123.5,-24.5
+ pos: -95.5,32.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:
- - 6249
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- uid: 21255
components:
- type: Transform
@@ -67019,11 +66730,6 @@ entities:
parent: 2
- proto: CrateMaterialRandom
entities:
- - uid: 23718
- components:
- - type: Transform
- pos: -22.5,-0.5
- parent: 2
- uid: 26144
components:
- type: Transform
@@ -67177,19 +66883,12 @@ entities:
- type: Transform
pos: -46.5,-49.5
parent: 2
-- proto: CrewMonitoringComputerCircuitboard
- entities:
- - uid: 22690
- components:
- - type: Transform
- pos: -116.64046,-31.738293
- parent: 2
- proto: CrewMonitoringServer
entities:
- - uid: 21868
+ - uid: 10499
components:
- type: Transform
- pos: -84.5,2.5
+ pos: -86.5,1.5
parent: 2
- proto: Crowbar
entities:
@@ -67215,10 +66914,10 @@ entities:
parent: 2
- proto: CrowbarRed
entities:
- - uid: 22135
+ - uid: 23122
components:
- type: Transform
- pos: -54.47556,-70.52867
+ pos: -55.319935,-68.58057
parent: 2
- proto: CrowbarYellow
entities:
@@ -67389,13 +67088,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -67.5,-26.5
parent: 2
-- proto: DawInstrumentMachineCircuitboard
- entities:
- - uid: 25902
- components:
- - type: Transform
- pos: -55.52777,-37.595306
- parent: 2
- proto: DefaultStationBeacon
entities:
- uid: 18947
@@ -67576,7 +67268,7 @@ entities:
parent: 2
- proto: DefaultStationBeaconCryosleep
entities:
- - uid: 6690
+ - uid: 24676
components:
- type: Transform
pos: -70.5,-20.5
@@ -67588,13 +67280,6 @@ entities:
- type: Transform
pos: -97.5,-39.5
parent: 2
-- proto: DefaultStationBeaconDisposals
- entities:
- - uid: 9625
- components:
- - type: Transform
- pos: -100.5,22.5
- parent: 2
- proto: DefaultStationBeaconDorms
entities:
- uid: 22166
@@ -67604,38 +67289,20 @@ entities:
parent: 2
- proto: DefaultStationBeaconEngineering
entities:
- - uid: 6798
+ - uid: 3522
components:
- type: Transform
- pos: -93.5,-5.5
+ pos: -95.5,-2.5
parent: 2
- type: NavMapBeacon
text: 'Plasma Pit #045'
- type: WarpPoint
location: 'Plasma Pit #045'
- - uid: 9528
- components:
- - type: Transform
- pos: -111.5,-31.5
- parent: 2
- - type: NavMapBeacon
- text: Tech Storage
- - type: WarpPoint
- location: Tech Storage
- uid: 12927
components:
- type: Transform
pos: -112.5,-16.5
parent: 2
- - uid: 16105
- components:
- - type: Transform
- pos: -89.5,-65.5
- parent: 2
- - type: NavMapBeacon
- text: 'Plasma Pit #046'
- - type: WarpPoint
- location: 'Plasma Pit #046'
- proto: DefaultStationBeaconEscapePod
entities:
- uid: 4563
@@ -67755,6 +67422,13 @@ entities:
- type: Transform
pos: -43.5,-36.5
parent: 2
+- proto: DefaultStationBeaconPermaBrig
+ entities:
+ - uid: 22181
+ components:
+ - type: Transform
+ pos: -87.5,-38.5
+ parent: 2
- proto: DefaultStationBeaconPowerBank
entities:
- uid: 18948
@@ -67776,13 +67450,6 @@ entities:
- type: Transform
pos: -133.5,-46.5
parent: 2
-- proto: DefaultStationBeaconReporter
- entities:
- - uid: 16223
- components:
- - type: Transform
- pos: -97.5,1.5
- parent: 2
- proto: DefaultStationBeaconRND
entities:
- uid: 22185
@@ -67825,6 +67492,17 @@ entities:
- type: Transform
pos: -24.5,6.5
parent: 2
+- proto: DefaultStationBeaconService
+ entities:
+ - uid: 8596
+ components:
+ - type: Transform
+ pos: -110.5,-31.5
+ parent: 2
+ - type: NavMapBeacon
+ text: Newsroom
+ - type: WarpPoint
+ location: Newsroom
- proto: DefaultStationBeaconSolars
entities:
- uid: 1843
@@ -67926,11 +67604,11 @@ entities:
rot: 3.141592653589793 rad
pos: -21.5,-41.5
parent: 2
- - uid: 13768
+ - uid: 9176
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -25.5,-33.5
+ rot: -1.5707963267948966 rad
+ pos: -21.5,-32.5
parent: 2
- proto: DeployableBarrier
entities:
@@ -67939,82 +67617,42 @@ entities:
- type: Transform
pos: -77.5,-27.5
parent: 2
- - uid: 20191
+ - uid: 17791
components:
- type: Transform
- pos: -25.5,1.5
+ pos: -92.5,-35.5
parent: 2
- - uid: 20262
+ - uid: 17792
components:
- type: Transform
- pos: -24.5,1.5
+ pos: -93.5,-35.5
parent: 2
- - uid: 20526
+ - uid: 17793
components:
- type: Transform
pos: -94.5,-35.5
parent: 2
-- proto: DeskBell
- entities:
- - uid: 2942
- components:
- - type: Transform
- pos: -48.519993,-9.44313
- parent: 2
- - uid: 6518
- components:
- - type: Transform
- pos: -92.52145,-24.442335
- parent: 2
- - uid: 22985
- components:
- - type: Transform
- pos: -99.95677,12.58157
- parent: 2
- - uid: 22986
- components:
- - type: Transform
- pos: -93.50802,-18.397871
- parent: 2
- - uid: 26229
- components:
- - type: Transform
- pos: -109.466736,-13.371529
- parent: 2
- - uid: 26230
- components:
- - type: Transform
- pos: -119.46937,-42.42088
- parent: 2
- - uid: 26231
- components:
- - type: Transform
- pos: -121.45374,-48.454586
- parent: 2
- - uid: 26232
- components:
- - type: Transform
- pos: -56.468803,-29.385876
- parent: 2
- - uid: 26233
+ - uid: 20191
components:
- type: Transform
- pos: -56.531303,-21.472557
+ pos: -25.5,1.5
parent: 2
- - uid: 26234
+ - uid: 20262
components:
- type: Transform
- pos: -37.491085,-16.41949
+ pos: -24.5,1.5
parent: 2
- - uid: 26235
+- proto: DeskBell
+ entities:
+ - uid: 2942
components:
- type: Transform
- pos: -37.53796,-26.494999
+ pos: -48.519993,-9.44313
parent: 2
- - uid: 26236
+ - uid: 6518
components:
- type: Transform
- pos: -20.523346,-4.445061
+ pos: -92.52145,-24.442335
parent: 2
- proto: DiseaseDiagnoser
entities:
@@ -68134,7 +67772,7 @@ entities:
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -111.5,-16.5
+ pos: -112.5,-16.5
parent: 2
- uid: 6363
components:
@@ -68197,6 +67835,11 @@ entities:
- type: Transform
pos: -121.5,-40.5
parent: 2
+ - uid: 7674
+ components:
+ - type: Transform
+ pos: -101.5,13.5
+ parent: 2
- uid: 7873
components:
- type: Transform
@@ -68493,6 +68136,23 @@ entities:
- type: Transform
pos: -21.5,-19.5
parent: 2
+ - uid: 14203
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -104.5,-9.5
+ parent: 2
+ - uid: 14245
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -104.5,-15.5
+ parent: 2
+ - uid: 14274
+ components:
+ - type: Transform
+ pos: -98.5,-9.5
+ parent: 2
- uid: 14305
components:
- type: Transform
@@ -68590,6 +68250,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -53.5,-5.5
parent: 2
+ - uid: 14753
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -98.5,-11.5
+ parent: 2
- uid: 14760
components:
- type: Transform
@@ -68613,68 +68279,12 @@ entities:
rot: 1.5707963267948966 rad
pos: -76.5,-14.5
parent: 2
- - uid: 14852
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -102.5,-9.5
- parent: 2
- - uid: 14853
- components:
- - type: Transform
- pos: -97.5,-9.5
- parent: 2
- uid: 14874
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -104.5,26.5
parent: 2
- - uid: 15008
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -105.5,11.5
- parent: 2
- - uid: 15013
- components:
- - type: Transform
- pos: -102.5,13.5
- parent: 2
- - uid: 15016
- components:
- - type: Transform
- pos: -103.5,11.5
- parent: 2
- - uid: 15054
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -102.5,-15.5
- parent: 2
- - uid: 15057
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -102.5,-8.5
- parent: 2
- - uid: 15062
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -102.5,-16.5
- parent: 2
- - uid: 15064
- components:
- - type: Transform
- pos: -101.5,-8.5
- parent: 2
- - uid: 15100
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -97.5,-11.5
- parent: 2
- uid: 15281
components:
- type: Transform
@@ -68799,11 +68409,11 @@ entities:
rot: -1.5707963267948966 rad
pos: -42.5,-63.5
parent: 2
- - uid: 22568
+ - uid: 22803
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -101.5,-16.5
+ rot: 1.5707963267948966 rad
+ pos: -76.5,-39.5
parent: 2
- uid: 23170
components:
@@ -68822,14 +68432,26 @@ entities:
- type: Transform
pos: -102.5,26.5
parent: 2
- - uid: 24832
+ - uid: 25905
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -76.5,-52.5
+ parent: 2
+ - uid: 25906
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -15.5,-59.5
+ pos: -75.5,-52.5
parent: 2
- proto: DisposalJunction
entities:
+ - uid: 3748
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -94.5,-13.5
+ parent: 2
- uid: 4549
components:
- type: Transform
@@ -68935,18 +68557,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -87.5,-27.5
parent: 2
- - uid: 14974
+ - uid: 15937
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -105.5,25.5
parent: 2
- - uid: 22503
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -103.5,5.5
- parent: 2
- proto: DisposalJunctionFlipped
entities:
- uid: 3746
@@ -69119,8 +68735,24 @@ entities:
rot: -1.5707963267948966 rad
pos: -55.5,-56.5
parent: 2
+ - uid: 22388
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -75.5,-39.5
+ parent: 2
- proto: DisposalPipe
entities:
+ - uid: 444
+ components:
+ - type: Transform
+ pos: -105.5,7.5
+ parent: 2
+ - uid: 460
+ components:
+ - type: Transform
+ pos: -105.5,6.5
+ parent: 2
- uid: 499
components:
- type: Transform
@@ -69175,6 +68807,18 @@ entities:
rot: 3.141592653589793 rad
pos: -107.5,27.5
parent: 2
+ - uid: 2145
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -94.5,-12.5
+ parent: 2
+ - uid: 2159
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -94.5,-11.5
+ parent: 2
- uid: 2455
components:
- type: Transform
@@ -69230,6 +68874,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -90.5,-15.5
parent: 2
+ - uid: 2663
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -101.5,-15.5
+ parent: 2
- uid: 2664
components:
- type: Transform
@@ -69242,30 +68892,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -98.5,-15.5
parent: 2
- - uid: 2990
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -74.5,-56.5
- parent: 2
- - uid: 3010
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -75.5,-56.5
- parent: 2
- - uid: 3305
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -77.5,-56.5
- parent: 2
- - uid: 3307
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -76.5,-56.5
- parent: 2
- uid: 3706
components:
- type: Transform
@@ -69282,12 +68908,6 @@ entities:
- type: Transform
pos: -94.5,11.5
parent: 2
- - uid: 4560
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -100.5,-9.5
- parent: 2
- uid: 4578
components:
- type: Transform
@@ -69708,13 +69328,7 @@ entities:
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -111.5,-15.5
- parent: 2
- - uid: 6357
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -112.5,-16.5
+ pos: -112.5,-15.5
parent: 2
- uid: 6358
components:
@@ -70549,6 +70163,12 @@ entities:
- type: Transform
pos: -103.5,-0.5
parent: 2
+ - uid: 7755
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -102.5,13.5
+ parent: 2
- uid: 7782
components:
- type: Transform
@@ -70657,18 +70277,6 @@ entities:
rot: 3.141592653589793 rad
pos: -119.5,-48.5
parent: 2
- - uid: 7899
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -103.5,6.5
- parent: 2
- - uid: 7900
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -103.5,7.5
- parent: 2
- uid: 7982
components:
- type: Transform
@@ -70900,23 +70508,16 @@ entities:
rot: 3.141592653589793 rad
pos: -105.5,23.5
parent: 2
- - uid: 8982
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -103.5,8.5
- parent: 2
- uid: 9152
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -38.5,-49.5
parent: 2
- - uid: 9203
+ - uid: 9158
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -103.5,9.5
+ pos: -105.5,11.5
parent: 2
- uid: 9581
components:
@@ -72023,6 +71624,18 @@ entities:
rot: -1.5707963267948966 rad
pos: -70.5,-56.5
parent: 2
+ - uid: 10860
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -73.5,-56.5
+ parent: 2
+ - uid: 10861
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -74.5,-56.5
+ parent: 2
- uid: 10865
components:
- type: Transform
@@ -72573,6 +72186,12 @@ entities:
- type: Transform
pos: -61.5,-7.5
parent: 2
+ - uid: 11054
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -77.5,-56.5
+ parent: 2
- uid: 11126
components:
- type: Transform
@@ -72620,6 +72239,11 @@ entities:
- type: Transform
pos: -129.5,-50.5
parent: 2
+ - uid: 11281
+ components:
+ - type: Transform
+ pos: -105.5,9.5
+ parent: 2
- uid: 11293
components:
- type: Transform
@@ -73160,23 +72784,46 @@ entities:
- type: Transform
pos: -125.5,23.5
parent: 2
- - uid: 13838
+ - uid: 14202
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -102.5,-13.5
+ pos: -104.5,-10.5
parent: 2
- - uid: 13882
+ - uid: 14204
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -103.5,-11.5
+ pos: -103.5,-9.5
parent: 2
- - uid: 13885
+ - uid: 14205
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -102.5,-9.5
+ parent: 2
+ - uid: 14207
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -103.5,-15.5
+ parent: 2
+ - uid: 14208
+ components:
+ - type: Transform
+ pos: -104.5,-14.5
+ parent: 2
+ - uid: 14209
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -104.5,-13.5
+ parent: 2
+ - uid: 14210
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -102.5,-12.5
+ pos: -104.5,-12.5
parent: 2
- uid: 14212
components:
@@ -73312,6 +72959,12 @@ entities:
rot: 3.141592653589793 rad
pos: -102.5,-21.5
parent: 2
+ - uid: 14243
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -102.5,-16.5
+ parent: 2
- uid: 14244
components:
- type: Transform
@@ -73324,6 +72977,12 @@ entities:
rot: 1.5707963267948966 rad
pos: -90.5,-11.5
parent: 2
+ - uid: 14247
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -101.5,9.5
+ parent: 2
- uid: 14248
components:
- type: Transform
@@ -73336,6 +72995,18 @@ entities:
rot: -1.5707963267948966 rad
pos: -92.5,-15.5
parent: 2
+ - uid: 14251
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -100.5,-9.5
+ parent: 2
+ - uid: 14252
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -101.5,11.5
+ parent: 2
- uid: 14253
components:
- type: Transform
@@ -73354,6 +73025,11 @@ entities:
rot: 1.5707963267948966 rad
pos: -86.5,-11.5
parent: 2
+ - uid: 14256
+ components:
+ - type: Transform
+ pos: -98.5,-10.5
+ parent: 2
- uid: 14257
components:
- type: Transform
@@ -73378,6 +73054,24 @@ entities:
rot: 1.5707963267948966 rad
pos: -96.5,-11.5
parent: 2
+ - uid: 14261
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -95.5,-11.5
+ parent: 2
+ - uid: 14262
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -97.5,-11.5
+ parent: 2
+ - uid: 14263
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -99.5,-9.5
+ parent: 2
- uid: 14270
components:
- type: Transform
@@ -73390,12 +73084,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -99.5,-15.5
parent: 2
- - uid: 14274
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -103.5,10.5
- parent: 2
- uid: 14302
components:
- type: Transform
@@ -74360,150 +74048,149 @@ entities:
rot: 1.5707963267948966 rad
pos: -66.5,-29.5
parent: 2
- - uid: 14832
- components:
- - type: Transform
- pos: -102.5,11.5
- parent: 2
- - uid: 14839
- components:
- - type: Transform
- pos: -102.5,10.5
- parent: 2
- - uid: 14845
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -104.5,-11.5
- parent: 2
- - uid: 14882
+ - uid: 14764
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -115.5,-22.5
+ rot: 3.141592653589793 rad
+ pos: -101.5,10.5
parent: 2
- - uid: 14969
+ - uid: 14765
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -94.5,-13.5
+ rot: 3.141592653589793 rad
+ pos: -101.5,3.5
parent: 2
- - uid: 15004
+ - uid: 14766
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -104.5,11.5
+ rot: 3.141592653589793 rad
+ pos: -101.5,-5.5
parent: 2
- - uid: 15007
+ - uid: 14767
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -95.5,-41.5
+ rot: 3.141592653589793 rad
+ pos: -101.5,1.5
parent: 2
- - uid: 15058
+ - uid: 14768
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -102.5,-14.5
+ pos: -101.5,2.5
parent: 2
- - uid: 15063
+ - uid: 14769
components:
- type: Transform
- pos: -102.5,-0.5
+ rot: 3.141592653589793 rad
+ pos: -101.5,4.5
parent: 2
- - uid: 15065
+ - uid: 14770
components:
- type: Transform
- pos: -102.5,1.5
+ rot: 3.141592653589793 rad
+ pos: -101.5,5.5
parent: 2
- - uid: 15067
+ - uid: 14771
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -99.5,-9.5
+ rot: 3.141592653589793 rad
+ pos: -101.5,6.5
parent: 2
- - uid: 15070
+ - uid: 14772
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -99.5,5.5
+ rot: 3.141592653589793 rad
+ pos: -101.5,0.5
parent: 2
- - uid: 15086
+ - uid: 14773
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -110.5,23.5
+ pos: -101.5,7.5
parent: 2
- - uid: 15102
+ - uid: 14774
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -98.5,-9.5
+ rot: 3.141592653589793 rad
+ pos: -101.5,8.5
parent: 2
- - uid: 15109
+ - uid: 14775
components:
- type: Transform
- pos: -102.5,0.5
+ rot: 3.141592653589793 rad
+ pos: -101.5,-8.5
parent: 2
- - uid: 15160
+ - uid: 14776
components:
- type: Transform
- pos: -102.5,-5.5
+ rot: 3.141592653589793 rad
+ pos: -101.5,-7.5
parent: 2
- - uid: 15201
+ - uid: 14777
components:
- type: Transform
- pos: -102.5,4.5
+ rot: 3.141592653589793 rad
+ pos: -101.5,-6.5
parent: 2
- - uid: 15227
+ - uid: 14778
components:
- type: Transform
- pos: -102.5,-7.5
+ rot: 3.141592653589793 rad
+ pos: -101.5,-4.5
parent: 2
- - uid: 15228
+ - uid: 14779
components:
- type: Transform
- pos: -102.5,-6.5
+ rot: 3.141592653589793 rad
+ pos: -101.5,-3.5
parent: 2
- - uid: 15229
+ - uid: 14780
components:
- type: Transform
- pos: -102.5,-4.5
+ rot: 3.141592653589793 rad
+ pos: -101.5,-2.5
parent: 2
- - uid: 15230
+ - uid: 14781
components:
- type: Transform
- pos: -102.5,-3.5
+ rot: 3.141592653589793 rad
+ pos: -101.5,-1.5
parent: 2
- - uid: 15231
+ - uid: 14782
components:
- type: Transform
- pos: -102.5,2.5
+ rot: 3.141592653589793 rad
+ pos: -101.5,-0.5
parent: 2
- - uid: 15232
+ - uid: 14783
components:
- type: Transform
- pos: -102.5,-2.5
+ rot: 3.141592653589793 rad
+ pos: -101.5,12.5
parent: 2
- - uid: 15233
+ - uid: 14882
components:
- type: Transform
- pos: -102.5,-1.5
+ rot: 1.5707963267948966 rad
+ pos: -115.5,-22.5
parent: 2
- - uid: 15238
+ - uid: 15007
components:
- type: Transform
- pos: -102.5,5.5
+ rot: -1.5707963267948966 rad
+ pos: -95.5,-41.5
parent: 2
- - uid: 15241
+ - uid: 15070
components:
- type: Transform
- pos: -102.5,12.5
+ rot: -1.5707963267948966 rad
+ pos: -99.5,5.5
parent: 2
- - uid: 15242
+ - uid: 15086
components:
- type: Transform
- pos: -102.5,3.5
+ rot: 3.141592653589793 rad
+ pos: -110.5,23.5
parent: 2
- uid: 15272
components:
@@ -74636,10 +74323,15 @@ entities:
rot: 3.141592653589793 rad
pos: -110.5,22.5
parent: 2
+ - uid: 15622
+ components:
+ - type: Transform
+ pos: -105.5,8.5
+ parent: 2
- uid: 15626
components:
- type: Transform
- pos: -102.5,-10.5
+ pos: -105.5,10.5
parent: 2
- uid: 15889
components:
@@ -74755,11 +74447,43 @@ entities:
rot: -1.5707963267948966 rad
pos: -131.5,22.5
parent: 2
+ - uid: 16151
+ components:
+ - type: Transform
+ pos: -75.5,-40.5
+ parent: 2
+ - uid: 16166
+ components:
+ - type: Transform
+ pos: -75.5,-43.5
+ parent: 2
+ - uid: 16187
+ components:
+ - type: Transform
+ pos: -75.5,-41.5
+ parent: 2
+ - uid: 16188
+ components:
+ - type: Transform
+ pos: -75.5,-42.5
+ parent: 2
- uid: 16263
components:
- type: Transform
pos: -64.5,-27.5
parent: 2
+ - uid: 16401
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -76.5,-56.5
+ parent: 2
+ - uid: 16402
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -75.5,-56.5
+ parent: 2
- uid: 16406
components:
- type: Transform
@@ -74772,12 +74496,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -72.5,-56.5
parent: 2
- - uid: 17125
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -73.5,-56.5
- parent: 2
- uid: 17244
components:
- type: Transform
@@ -74869,6 +74587,12 @@ entities:
rot: 3.141592653589793 rad
pos: -109.5,25.5
parent: 2
+ - uid: 19622
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -104.5,5.5
+ parent: 2
- uid: 19625
components:
- type: Transform
@@ -74892,21 +74616,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -33.5,-49.5
parent: 2
- - uid: 20535
- components:
- - type: Transform
- pos: -102.5,6.5
- parent: 2
- - uid: 20541
- components:
- - type: Transform
- pos: -102.5,7.5
- parent: 2
- - uid: 20552
- components:
- - type: Transform
- pos: -102.5,8.5
- parent: 2
- uid: 20999
components:
- type: Transform
@@ -75858,12 +75567,6 @@ entities:
- type: Transform
pos: -42.5,-60.5
parent: 2
- - uid: 22132
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -97.5,-10.5
- parent: 2
- uid: 22238
components:
- type: Transform
@@ -75874,10 +75577,15 @@ entities:
- type: Transform
pos: -102.5,-25.5
parent: 2
- - uid: 23221
+ - uid: 22802
components:
- type: Transform
- pos: -102.5,9.5
+ pos: -75.5,-50.5
+ parent: 2
+ - uid: 22804
+ components:
+ - type: Transform
+ pos: -75.5,-49.5
parent: 2
- uid: 23244
components:
@@ -75891,12 +75599,6 @@ entities:
rot: 3.141592653589793 rad
pos: -109.5,24.5
parent: 2
- - uid: 23460
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -95.5,-11.5
- parent: 2
- uid: 23511
components:
- type: Transform
@@ -75932,59 +75634,107 @@ entities:
rot: 3.141592653589793 rad
pos: -103.5,-22.5
parent: 2
- - uid: 24824
+ - uid: 25461
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-59.5
+ rot: 1.5707963267948966 rad
+ pos: -71.5,-25.5
parent: 2
- - uid: 24826
+ - uid: 25462
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,-59.5
+ rot: 1.5707963267948966 rad
+ pos: -72.5,-25.5
parent: 2
- - uid: 24827
+ - uid: 25863
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,-59.5
+ pos: -75.5,-44.5
parent: 2
- - uid: 24828
+ - uid: 25869
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,-59.5
+ pos: -75.5,-51.5
parent: 2
- - uid: 24829
+ - uid: 25889
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -15.5,-58.5
+ pos: -75.5,-45.5
parent: 2
- - uid: 24830
+ - uid: 25890
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -15.5,-57.5
+ pos: -75.5,-46.5
parent: 2
- - uid: 24831
+ - uid: 25891
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -15.5,-56.5
+ pos: -75.5,-47.5
parent: 2
- - uid: 25461
+ - uid: 25892
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -71.5,-25.5
+ pos: -75.5,-48.5
parent: 2
- - uid: 25462
+ - uid: 25893
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -72.5,-25.5
+ pos: -76.5,-51.5
+ parent: 2
+ - uid: 25894
+ components:
+ - type: Transform
+ pos: -76.5,-50.5
+ parent: 2
+ - uid: 25895
+ components:
+ - type: Transform
+ pos: -76.5,-49.5
+ parent: 2
+ - uid: 25896
+ components:
+ - type: Transform
+ pos: -76.5,-47.5
+ parent: 2
+ - uid: 25897
+ components:
+ - type: Transform
+ pos: -76.5,-46.5
+ parent: 2
+ - uid: 25898
+ components:
+ - type: Transform
+ pos: -76.5,-45.5
+ parent: 2
+ - uid: 25899
+ components:
+ - type: Transform
+ pos: -76.5,-44.5
+ parent: 2
+ - uid: 25900
+ components:
+ - type: Transform
+ pos: -76.5,-48.5
+ parent: 2
+ - uid: 25901
+ components:
+ - type: Transform
+ pos: -76.5,-41.5
+ parent: 2
+ - uid: 25902
+ components:
+ - type: Transform
+ pos: -76.5,-43.5
+ parent: 2
+ - uid: 25903
+ components:
+ - type: Transform
+ pos: -76.5,-40.5
+ parent: 2
+ - uid: 25904
+ components:
+ - type: Transform
+ pos: -76.5,-42.5
parent: 2
- proto: DisposalPipeBroken
entities:
@@ -76018,6 +75768,33 @@ entities:
- Science
- proto: DisposalRouterFlipped
entities:
+ - uid: 7751
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -104.5,-11.5
+ parent: 2
+ - type: DisposalRouter
+ tags:
+ - Engineering
+ - uid: 14206
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -102.5,-15.5
+ parent: 2
+ - type: DisposalRouter
+ tags:
+ - Science
+ - uid: 14272
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -101.5,-9.5
+ parent: 2
+ - type: DisposalRouter
+ tags:
+ - Cargo
- uid: 14320
components:
- type: Transform
@@ -76079,33 +75856,6 @@ entities:
- type: DisposalRouter
tags:
- Nerd
- - uid: 15011
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -101.5,-15.5
- parent: 2
- - type: DisposalRouter
- tags:
- - Science
- - uid: 15055
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -102.5,-11.5
- parent: 2
- - type: DisposalRouter
- tags:
- - Engineering
- - uid: 15225
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -101.5,-9.5
- parent: 2
- - type: DisposalRouter
- tags:
- - Cargo
- proto: DisposalTagger
entities:
- uid: 11775
@@ -76142,6 +75892,11 @@ entities:
rot: -1.5707963267948966 rad
pos: -115.5,-0.5
parent: 2
+ - uid: 6357
+ components:
+ - type: Transform
+ pos: -112.5,-14.5
+ parent: 2
- uid: 6371
components:
- type: Transform
@@ -76457,11 +76212,6 @@ entities:
rot: 3.141592653589793 rad
pos: -32.5,-50.5
parent: 2
- - uid: 23893
- components:
- - type: Transform
- pos: -111.5,-14.5
- parent: 2
- proto: DisposalUnit
entities:
- uid: 696
@@ -76554,6 +76304,11 @@ entities:
- type: Transform
pos: -118.5,-50.5
parent: 2
+ - uid: 9057
+ components:
+ - type: Transform
+ pos: -102.5,24.5
+ parent: 2
- uid: 9224
components:
- type: Transform
@@ -76747,15 +76502,15 @@ entities:
parent: 2
- proto: DonkpocketBoxSpawner
entities:
- - uid: 9150
+ - uid: 7627
components:
- type: Transform
- pos: -34.5,-50.5
+ pos: -126.5,-42.5
parent: 2
- - uid: 18268
+ - uid: 9150
components:
- type: Transform
- pos: -125.5,-42.5
+ pos: -34.5,-50.5
parent: 2
- uid: 18986
components:
@@ -76880,27 +76635,17 @@ entities:
parent: 2
- proto: DrinkBeerCan
entities:
- - uid: 2376
- components:
- - type: Transform
- pos: -91.5,-61.5
- parent: 2
- - uid: 24439
- components:
- - type: Transform
- pos: -129.67844,-28.442205
- parent: 2
- - uid: 24448
+ - uid: 26056
components:
- type: Transform
- pos: -129.38156,-28.58283
+ pos: -93.52491,-61.357502
parent: 2
- proto: DrinkCanPack
entities:
- uid: 23495
components:
- type: Transform
- parent: 21499
+ parent: 23466
- type: Physics
canCollide: False
- type: InsideEntityStorage
@@ -77158,58 +76903,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -114.5,5.5
parent: 2
- - uid: 24306
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -31.5,-33.5
- parent: 2
- - uid: 24307
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,-34.5
- parent: 2
- - uid: 24308
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,-38.5
- parent: 2
- - uid: 24310
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -71.5,-58.5
- parent: 2
- - uid: 24311
- components:
- - type: Transform
- pos: -110.5,-43.5
- parent: 2
- - uid: 24313
- components:
- - type: Transform
- pos: -132.5,-37.5
- parent: 2
- - uid: 24315
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -123.5,-53.5
- parent: 2
- - uid: 24316
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -111.5,-50.5
- parent: 2
- - uid: 24317
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -111.5,-40.5
- parent: 2
- proto: ExtinguisherCabinetFilled
entities:
- uid: 3936
@@ -77235,29 +76928,6 @@ entities:
rot: 3.141592653589793 rad
pos: -11.5,-21.5
parent: 2
- - uid: 20952
- components:
- - type: Transform
- pos: -116.5,-13.5
- parent: 2
- - uid: 23939
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -66.5,-23.5
- parent: 2
- - uid: 24321
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -135.5,-6.5
- parent: 2
- - uid: 24354
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -135.5,-15.5
- parent: 2
- proto: FaxMachineBase
entities:
- uid: 3
@@ -77271,11 +76941,6 @@ entities:
currentLabel: Chief Medical Officer
- type: NameModifier
baseName: long range fax machine
- - uid: 1326
- components:
- - type: Transform
- pos: -96.5,-1.5
- parent: 2
- uid: 3012
components:
- type: MetaData
@@ -77291,8 +76956,6 @@ entities:
- type: Transform
pos: -40.5,-20.5
parent: 2
- - type: FaxMachine
- name: Chemistry
- uid: 5738
components:
- type: MetaData
@@ -77349,6 +77012,11 @@ entities:
- type: FaxMachine
name: Lawyer
- type: Label
+ - uid: 16028
+ components:
+ - type: Transform
+ pos: -109.5,-29.5
+ parent: 2
- uid: 17656
components:
- type: Transform
@@ -77434,11 +77102,14 @@ entities:
- uid: 22831
components:
- type: MetaData
- name: long range fax machine
+ name: long range fax machine (Arrivals Checkpoint)
- type: Transform
pos: -24.5,8.5
parent: 2
- type: Label
+ currentLabel: Arrivals Checkpoint
+ - type: NameModifier
+ baseName: long range fax machine
- uid: 23251
components:
- type: MetaData
@@ -77480,13 +77151,6 @@ entities:
parent: 2
- type: FaxMachine
name: Bar
- - uid: 25890
- components:
- - type: Transform
- pos: -115.5,29.5
- parent: 2
- - type: FaxMachine
- name: Clown
- proto: FaxMachineCaptain
entities:
- uid: 2865
@@ -77606,6 +77270,11 @@ entities:
- type: Transform
pos: -99.5,-41.5
parent: 2
+ - uid: 24718
+ components:
+ - type: Transform
+ pos: -74.5,-42.5
+ parent: 2
- proto: filingCabinetTallRandom
entities:
- uid: 6294
@@ -77792,9 +77461,11 @@ entities:
parent: 2
- type: DeviceList
devices:
+ - 8961
- 8955
- 13485
- 19610
+ - 8950
- uid: 13736
components:
- type: Transform
@@ -77882,27 +77553,6 @@ entities:
- 11809
- 23126
- 11802
- - uid: 16688
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -72.5,-39.5
- parent: 2
- - type: DeviceList
- devices:
- - 15855
- - 15709
- - 1782
- - 14356
- - 14353
- - 24035
- - 24167
- - 14606
- - 14599
- - 14598
- - 14597
- - 24130
- - 24743
- uid: 17419
components:
- type: Transform
@@ -77926,32 +77576,6 @@ entities:
- 11743
- 11936
- 17436
- - 14618
- - 20370
- - uid: 17833
- components:
- - type: Transform
- pos: -116.5,-42.5
- parent: 2
- - type: DeviceList
- devices:
- - 507
- - 431
- - 21467
- - 21468
- - 21466
- - 21471
- - 21470
- - 21469
- - 25580
- - 21463
- - 12746
- - 9109
- - 9095
- - 25594
- - 25593
- - 20380
- - 20371
- uid: 17850
components:
- type: Transform
@@ -77991,6 +77615,9 @@ entities:
rot: -1.5707963267948966 rad
pos: -142.5,-11.5
parent: 2
+ - type: DeviceList
+ devices:
+ - 13489
- uid: 19506
components:
- type: MetaData
@@ -78067,66 +77694,6 @@ entities:
- 11230
- 11231
- 14980
- - uid: 24300
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -66.5,-24.5
- parent: 2
- - type: DeviceList
- devices:
- - 1658
- - 1667
- - 9674
- - 14636
- - 14637
- - 14638
- - 14640
- - 15855
- - 15709
- - 24123
- - 14945
- - 14944
- - 14943
- - 14942
- - 14946
- - 14952
- - 14951
- - 14950
- - 19471
- - 7046
- - 16965
- - 15848
- - 16404
- - 23865
- - 15365
- - uid: 24309
- components:
- - type: Transform
- pos: -71.5,-54.5
- parent: 2
- - type: DeviceList
- devices:
- - 14606
- - 14599
- - 24149
- - 24150
- - 22802
- - 22797
- - 15417
- - uid: 24312
- components:
- - type: Transform
- pos: -128.5,-41.5
- parent: 2
- - type: DeviceList
- devices:
- - 20373
- - 25580
- - 25581
- - 14162
- - 11743
- - 25584
- uid: 24784
components:
- type: Transform
@@ -78356,11 +77923,6 @@ entities:
rot: 3.141592653589793 rad
pos: -62.5,1.5
parent: 2
- - uid: 25990
- components:
- - type: Transform
- pos: -117.5,18.5
- parent: 2
- proto: FireExtinguisher
entities:
- uid: 9441
@@ -78404,22 +77966,11 @@ entities:
- type: DeviceNetwork
deviceLists:
- 25647
- - uid: 910
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -55.5,-62.5
- parent: 2
- - uid: 914
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,-62.5
- parent: 2
- - uid: 932
+ - uid: 893
components:
- type: Transform
- pos: -16.5,-25.5
+ rot: -1.5707963267948966 rad
+ pos: -75.5,-59.5
parent: 2
- uid: 1122
components:
@@ -78566,6 +78117,18 @@ entities:
- type: DeviceNetwork
deviceLists:
- 7346
+ - uid: 3628
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -105.5,-36.5
+ parent: 2
+ - uid: 3644
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -104.5,-21.5
+ parent: 2
- uid: 4471
components:
- type: Transform
@@ -78580,17 +78143,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 25647
- - uid: 5108
- components:
- - type: Transform
- pos: -73.5,-53.5
- parent: 2
- - uid: 5114
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -91.5,-36.5
- parent: 2
- uid: 5742
components:
- type: Transform
@@ -78696,7 +78248,6 @@ entities:
deviceLists:
- 12151
- 9253
- - 24300
- uid: 7345
components:
- type: Transform
@@ -78797,11 +78348,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -94.5,6.5
parent: 2
- - uid: 9417
- components:
- - type: Transform
- pos: -73.5,-64.5
- parent: 2
- uid: 9579
components:
- type: Transform
@@ -78813,11 +78359,6 @@ entities:
- type: Transform
pos: -134.5,2.5
parent: 2
- - uid: 9626
- components:
- - type: Transform
- pos: -110.5,-28.5
- parent: 2
- uid: 10089
components:
- type: Transform
@@ -78942,11 +78483,6 @@ entities:
deviceLists:
- 24785
- 22168
- - uid: 11281
- components:
- - type: Transform
- pos: -107.5,-31.5
- parent: 2
- uid: 11727
components:
- type: Transform
@@ -79015,6 +78551,15 @@ entities:
- type: DeviceNetwork
deviceLists:
- 13492
+ - uid: 13489
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -152.5,-10.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 18819
- uid: 13629
components:
- type: Transform
@@ -79033,23 +78578,35 @@ entities:
rot: 1.5707963267948966 rad
pos: -74.5,-16.5
parent: 2
+ - uid: 13636
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -76.5,-36.5
+ parent: 2
- uid: 13642
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -76.5,-26.5
parent: 2
+ - uid: 13657
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -74.5,-37.5
+ parent: 2
- uid: 13659
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -75.5,-23.5
parent: 2
- - uid: 13757
+ - uid: 13660
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -66.5,-65.5
+ rot: 1.5707963267948966 rad
+ pos: -74.5,-38.5
parent: 2
- uid: 13856
components:
@@ -79079,9 +78636,6 @@ entities:
- type: Transform
pos: -129.5,-49.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 24312
- uid: 14354
components:
- type: Transform
@@ -79092,11 +78646,6 @@ entities:
deviceLists:
- 14953
- 14954
- - uid: 14767
- components:
- - type: Transform
- pos: -74.5,-64.5
- parent: 2
- uid: 14946
components:
- type: Transform
@@ -79107,7 +78656,6 @@ entities:
deviceLists:
- 12151
- 25649
- - 24300
- uid: 14947
components:
- type: Transform
@@ -79147,34 +78695,40 @@ entities:
rot: 1.5707963267948966 rad
pos: -103.5,-36.5
parent: 2
- - uid: 16009
+ - uid: 16411
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -96.5,-21.5
+ rot: -1.5707963267948966 rad
+ pos: -77.5,-55.5
parent: 2
- - uid: 16010
+ - uid: 16412
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -94.5,-21.5
+ rot: -1.5707963267948966 rad
+ pos: -77.5,-56.5
parent: 2
- - uid: 16792
+ - uid: 16413
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -66.5,-66.5
+ rot: -1.5707963267948966 rad
+ pos: -77.5,-57.5
parent: 2
- - uid: 16866
+ - uid: 16414
components:
- type: Transform
- pos: -134.5,-7.5
+ rot: -1.5707963267948966 rad
+ pos: -74.5,-57.5
parent: 2
- - uid: 16948
+ - uid: 16415
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -95.5,-21.5
+ rot: -1.5707963267948966 rad
+ pos: -74.5,-55.5
+ parent: 2
+ - uid: 16866
+ components:
+ - type: Transform
+ pos: -134.5,-7.5
parent: 2
- uid: 17427
components:
@@ -79201,12 +78755,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 17420
- - uid: 18609
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -90.5,-36.5
- parent: 2
- uid: 19517
components:
- type: Transform
@@ -79278,21 +78826,17 @@ entities:
rot: 3.141592653589793 rad
pos: -87.5,32.5
parent: 2
- - uid: 20498
+ - uid: 20434
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -92.5,-36.5
- parent: 2
- - uid: 20829
- components:
- - type: Transform
- pos: -74.5,-59.5
+ pos: -55.5,-62.5
parent: 2
- - uid: 21397
+ - uid: 20435
components:
- type: Transform
- pos: -73.5,-59.5
+ rot: 1.5707963267948966 rad
+ pos: -75.5,-53.5
parent: 2
- uid: 21464
components:
@@ -79309,7 +78853,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 20316
- - 17833
- uid: 21467
components:
- type: Transform
@@ -79319,7 +78862,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 20316
- - 17833
- uid: 21468
components:
- type: Transform
@@ -79329,7 +78871,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 20316
- - 17833
- uid: 21469
components:
- type: Transform
@@ -79339,7 +78880,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 20316
- - 17833
- uid: 21470
components:
- type: Transform
@@ -79349,7 +78889,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 20316
- - 17833
- uid: 21471
components:
- type: Transform
@@ -79359,7 +78898,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 20316
- - 17833
- uid: 21866
components:
- type: Transform
@@ -79371,11 +78909,6 @@ entities:
- type: Transform
pos: -29.5,-69.5
parent: 2
- - uid: 22495
- components:
- - type: Transform
- pos: -74.5,-53.5
- parent: 2
- uid: 22573
components:
- type: Transform
@@ -79403,6 +78936,12 @@ entities:
deviceLists:
- 3288
- 3287
+ - uid: 23130
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -76.5,-53.5
+ parent: 2
- uid: 23411
components:
- type: Transform
@@ -79487,7 +79026,6 @@ entities:
deviceLists:
- 12151
- 15364
- - 24300
- uid: 24124
components:
- type: Transform
@@ -79545,7 +79083,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 24742
- - 16688
- uid: 24131
components:
- type: Transform
@@ -79564,27 +79101,18 @@ entities:
rot: -1.5707963267948966 rad
pos: -56.5,-56.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 24309
- uid: 24150
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -64.5,-58.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 24309
- - uid: 24167
+ - uid: 24152
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -72.5,-38.5
+ rot: -1.5707963267948966 rad
+ pos: -76.5,-59.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 16688
- uid: 24444
components:
- type: Transform
@@ -79597,6 +79125,18 @@ entities:
rot: -1.5707963267948966 rad
pos: -108.5,-27.5
parent: 2
+ - uid: 24699
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -108.5,-31.5
+ parent: 2
+ - uid: 24700
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -110.5,-28.5
+ parent: 2
- uid: 25511
components:
- type: Transform
@@ -79659,9 +79199,6 @@ entities:
rot: 3.141592653589793 rad
pos: -131.5,-45.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 24312
- uid: 25586
components:
- type: Transform
@@ -79692,18 +79229,12 @@ entities:
rot: 3.141592653589793 rad
pos: -109.5,-47.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17833
- uid: 25594
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -109.5,-43.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17833
- uid: 25595
components:
- type: Transform
@@ -79725,6 +79256,18 @@ entities:
- type: DeviceNetwork
deviceLists:
- 25649
+ - uid: 25699
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -54.5,-62.5
+ parent: 2
+ - uid: 25871
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -48.5,-66.5
+ parent: 2
- uid: 25872
components:
- type: Transform
@@ -79926,7 +79469,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 9253
- - 16688
- uid: 2979
components:
- type: Transform
@@ -80059,7 +79601,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 20316
- - 17833
- uid: 13444
components:
- type: Transform
@@ -80113,7 +79654,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 9253
- - 16688
- uid: 14356
components:
- type: Transform
@@ -80123,7 +79663,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 9253
- - 16688
- uid: 14936
components:
- type: Transform
@@ -80164,7 +79703,6 @@ entities:
deviceLists:
- 12151
- 25649
- - 24300
- uid: 14943
components:
- type: Transform
@@ -80175,7 +79713,6 @@ entities:
deviceLists:
- 12151
- 25649
- - 24300
- uid: 14944
components:
- type: Transform
@@ -80186,7 +79723,6 @@ entities:
deviceLists:
- 12151
- 25649
- - 24300
- uid: 14945
components:
- type: Transform
@@ -80197,7 +79733,6 @@ entities:
deviceLists:
- 12151
- 25649
- - 24300
- uid: 14950
components:
- type: Transform
@@ -80211,7 +79746,6 @@ entities:
- 5898
- 9430
- 12151
- - 24300
- uid: 14951
components:
- type: Transform
@@ -80225,7 +79759,6 @@ entities:
- 5898
- 9430
- 12151
- - 24300
- uid: 14952
components:
- type: Transform
@@ -80239,7 +79772,6 @@ entities:
- 5898
- 9430
- 12151
- - 24300
- uid: 15032
components:
- type: Transform
@@ -80256,7 +79788,6 @@ entities:
deviceLists:
- 12151
- 9253
- - 24300
- uid: 16404
components:
- type: Transform
@@ -80267,7 +79798,6 @@ entities:
deviceLists:
- 12151
- 9253
- - 24300
- uid: 16965
components:
- type: Transform
@@ -80278,7 +79808,6 @@ entities:
deviceLists:
- 12151
- 9253
- - 24300
- uid: 19777
components:
- type: Transform
@@ -80291,6 +79820,12 @@ entities:
rot: 3.141592653589793 rad
pos: -102.5,12.5
parent: 2
+ - uid: 21045
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -80.5,-76.5
+ parent: 2
- uid: 21463
components:
- type: Transform
@@ -80300,7 +79835,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 20316
- - 17833
- uid: 22713
components:
- type: Transform
@@ -80312,6 +79846,12 @@ entities:
- 7346
- 11893
- 24784
+ - uid: 23246
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -76.5,-69.5
+ parent: 2
- uid: 23865
components:
- type: Transform
@@ -80322,7 +79862,6 @@ entities:
deviceLists:
- 12151
- 9253
- - 24300
- uid: 23895
components:
- type: Transform
@@ -80334,12 +79873,6 @@ entities:
- 7346
- 11893
- 24784
- - uid: 24005
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -39.5,-26.5
- parent: 2
- uid: 24031
components:
- type: Transform
@@ -80355,14 +79888,6 @@ entities:
rot: 3.141592653589793 rad
pos: -70.5,-37.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 16688
- - uid: 24152
- components:
- - type: Transform
- pos: -37.5,-16.5
- parent: 2
- uid: 24645
components:
- type: Transform
@@ -80435,16 +79960,6 @@ entities:
- 25641
- proto: FirelockGlass
entities:
- - uid: 431
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -110.5,-46.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17833
- - 20316
- uid: 442
components:
- type: Transform
@@ -80455,25 +79970,16 @@ entities:
deviceLists:
- 23681
- 12769
- - uid: 507
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -110.5,-44.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17833
- - 20316
- uid: 511
components:
- type: Transform
pos: -94.5,31.5
parent: 2
- - uid: 777
+ - uid: 640
components:
- type: Transform
- pos: -75.5,-55.5
+ rot: -1.5707963267948966 rad
+ pos: -95.5,-55.5
parent: 2
- uid: 1658
components:
@@ -80481,10 +79987,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -66.5,-19.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 24300
- - 12151
- uid: 1667
components:
- type: Transform
@@ -80496,7 +79998,6 @@ entities:
- 12151
- 23681
- 12769
- - 24300
- uid: 3308
components:
- type: Transform
@@ -80791,6 +80292,15 @@ entities:
deviceLists:
- 25598
- 25603
+ - uid: 8950
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -142.5,-10.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 13492
- uid: 8955
components:
- type: Transform
@@ -80801,6 +80311,15 @@ entities:
deviceLists:
- 13492
- 25599
+ - uid: 8961
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -139.5,-10.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 13492
- uid: 8976
components:
- type: Transform
@@ -80842,33 +80361,29 @@ entities:
rot: 3.141592653589793 rad
pos: -106.5,-44.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17833
- uid: 9109
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -106.5,-46.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17833
- - uid: 9166
+ - uid: 9117
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -94.5,13.5
+ rot: 3.141592653589793 rad
+ pos: -111.5,-44.5
parent: 2
- - uid: 9282
+ - uid: 9129
components:
- type: Transform
- pos: -83.5,-39.5
+ rot: 3.141592653589793 rad
+ pos: -111.5,-46.5
parent: 2
- - uid: 9294
+ - uid: 9166
components:
- type: Transform
- pos: -79.5,-39.5
+ rot: -1.5707963267948966 rad
+ pos: -94.5,13.5
parent: 2
- uid: 9303
components:
@@ -80904,7 +80419,6 @@ entities:
- 12151
- 23681
- 12769
- - 24300
- uid: 9723
components:
- type: Transform
@@ -80945,7 +80459,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 17420
- - 24312
- uid: 11802
components:
- type: Transform
@@ -81225,6 +80738,12 @@ entities:
- type: DeviceNetwork
deviceLists:
- 19526
+ - uid: 13605
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -96.5,-20.5
+ parent: 2
- uid: 13606
components:
- type: Transform
@@ -81274,6 +80793,12 @@ entities:
deviceLists:
- 13736
- 17419
+ - uid: 13831
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -94.5,-20.5
+ parent: 2
- uid: 13833
components:
- type: Transform
@@ -81419,38 +80944,24 @@ entities:
rot: -1.5707963267948966 rad
pos: -55.5,-45.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 16688
- uid: 14598
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -55.5,-46.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 16688
- uid: 14599
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -63.5,-50.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 16688
- - 24309
- uid: 14606
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -65.5,-50.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 16688
- - 24309
- uid: 14627
components:
- type: Transform
@@ -81496,7 +81007,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 12151
- - 24300
- uid: 14637
components:
- type: Transform
@@ -81506,7 +81016,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 12151
- - 24300
- uid: 14638
components:
- type: Transform
@@ -81516,7 +81025,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 12151
- - 24300
- uid: 14640
components:
- type: Transform
@@ -81526,7 +81034,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 12151
- - 24300
- uid: 14739
components:
- type: Transform
@@ -81535,6 +81042,11 @@ entities:
- type: DeviceNetwork
deviceLists:
- 19526
+ - uid: 14746
+ components:
+ - type: Transform
+ pos: -104.5,-0.5
+ parent: 2
- uid: 14751
components:
- type: Transform
@@ -81549,11 +81061,6 @@ entities:
deviceLists:
- 9164
- 25603
- - uid: 14833
- components:
- - type: Transform
- pos: -87.5,-39.5
- parent: 2
- uid: 14877
components:
- type: Transform
@@ -81629,8 +81136,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 12151
- - 16688
- - 24300
- uid: 15855
components:
- type: Transform
@@ -81640,8 +81145,12 @@ entities:
- type: DeviceNetwork
deviceLists:
- 12151
- - 16688
- - 24300
+ - uid: 16189
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -95.5,-56.5
+ parent: 2
- uid: 16552
components:
- type: Transform
@@ -81674,12 +81183,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 13736
- - uid: 18645
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -89.5,-37.5
- parent: 2
- uid: 19471
components:
- type: Transform
@@ -81690,8 +81193,6 @@ entities:
deviceLists:
- 14953
- 14954
- - 24300
- - 12151
- uid: 19610
components:
- type: Transform
@@ -81713,43 +81214,23 @@ entities:
- 14953
- 9430
- 25649
- - uid: 20533
- components:
- - type: Transform
- pos: -102.5,-0.5
- parent: 2
- - uid: 22205
- components:
- - type: Transform
- pos: -75.5,-57.5
- parent: 2
- - uid: 22797
- components:
- - type: Transform
- pos: -72.5,-55.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 24309
- - uid: 22798
- components:
- - type: Transform
- pos: -75.5,-56.5
- parent: 2
- - uid: 22802
+ - uid: 23399
components:
- type: Transform
- pos: -72.5,-57.5
+ rot: 1.5707963267948966 rad
+ pos: -91.5,-36.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 24309
- uid: 23428
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -82.5,-30.5
parent: 2
+ - uid: 24801
+ components:
+ - type: Transform
+ pos: -102.5,-0.5
+ parent: 2
- uid: 25557
components:
- type: Transform
@@ -81780,19 +81261,12 @@ entities:
rot: 3.141592653589793 rad
pos: -123.5,-45.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17833
- - 24312
- uid: 25581
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -125.5,-49.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 24312
- uid: 25582
components:
- type: Transform
@@ -81875,6 +81349,12 @@ entities:
deviceLists:
- 17850
- 25641
+ - uid: 25881
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -95.5,-57.5
+ parent: 2
- uid: 25938
components:
- type: Transform
@@ -81901,22 +81381,22 @@ entities:
- type: Transform
pos: -62.63784,-3.7257838
parent: 2
- - uid: 23306
+- proto: FlashlightLantern
+ entities:
+ - uid: 8686
components:
- type: Transform
- pos: -112.761406,-29.411583
+ pos: -55.423786,-68.43352
parent: 2
-- proto: FlashlightLantern
- entities:
- - uid: 22903
+ - uid: 19502
components:
- type: Transform
- pos: -54.584934,-70.46617
+ pos: -109.39066,-13.270811
parent: 2
- - uid: 23311
+ - uid: 19503
components:
- type: Transform
- pos: -112.323906,-29.567833
+ pos: -109.56254,-13.536436
parent: 2
- proto: FlashlightSeclite
entities:
@@ -81956,20 +81436,6 @@ entities:
- type: Transform
pos: -18.5,-23.5
parent: 2
-- proto: FlippoLighter
- entities:
- - uid: 13747
- components:
- - type: Transform
- pos: -21.387272,-69.4951
- parent: 2
-- proto: Floodlight
- entities:
- - uid: 24430
- components:
- - type: Transform
- pos: -130.64246,-26.546305
- parent: 2
- proto: FloorDrain
entities:
- uid: 478
@@ -82025,20 +81491,6 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
- - uid: 24337
- components:
- - type: Transform
- pos: -21.5,-34.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 24386
- components:
- - type: Transform
- pos: -21.5,-40.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- uid: 25454
components:
- type: Transform
@@ -82056,334 +81508,415 @@ entities:
fixtures: {}
- proto: FloorLiquidPlasmaEntity
entities:
- - uid: 879
+ - uid: 3604
components:
- type: Transform
- pos: -94.5,-6.5
+ pos: -95.5,-3.5
parent: 2
- - uid: 880
+ - uid: 3727
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -92.5,-65.5
+ pos: -96.5,-3.5
parent: 2
- - uid: 1120
+ - uid: 3728
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -91.5,-65.5
+ pos: -95.5,-4.5
parent: 2
- - uid: 1184
+ - uid: 3744
components:
- type: Transform
pos: -96.5,-4.5
parent: 2
- - uid: 1498
+ - uid: 3752
components:
- type: Transform
- pos: -93.5,-4.5
+ pos: -94.5,-3.5
parent: 2
- - uid: 1529
+ - uid: 3753
components:
- type: Transform
- pos: -93.5,-7.5
+ pos: -96.5,-2.5
parent: 2
- - uid: 1732
+ - uid: 3757
components:
- type: Transform
- pos: -95.5,-5.5
+ pos: -94.5,-2.5
parent: 2
- - uid: 1741
+ - uid: 3758
components:
- type: Transform
- pos: -92.5,-5.5
+ pos: -94.5,-1.5
parent: 2
- - uid: 1748
+ - uid: 3760
components:
- type: Transform
- pos: -95.5,-4.5
+ pos: -96.5,-1.5
parent: 2
- - uid: 1753
+ - uid: 3761
components:
- type: Transform
- pos: -94.5,-4.5
+ pos: -95.5,-1.5
parent: 2
- - uid: 1759
+ - uid: 3764
components:
- type: Transform
- pos: -94.5,-5.5
+ pos: -95.5,-2.5
parent: 2
- - uid: 1788
+ - uid: 4012
components:
- type: Transform
- pos: -92.5,-6.5
+ pos: -90.5,-65.5
parent: 2
- - uid: 1802
+ - uid: 4038
components:
- type: Transform
- pos: -91.5,-6.5
+ pos: -90.5,-66.5
parent: 2
- - uid: 1876
+ - uid: 4097
components:
- type: Transform
- pos: -93.5,-5.5
+ pos: -89.5,-64.5
parent: 2
- - uid: 1965
+ - uid: 4112
components:
- type: Transform
- pos: -93.5,-6.5
+ pos: -89.5,-66.5
parent: 2
- - uid: 2236
+ - uid: 4272
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -86.5,-66.5
+ pos: -90.5,-64.5
parent: 2
- - uid: 2335
+ - uid: 4273
components:
- type: Transform
- pos: -92.5,-63.5
+ pos: -92.5,-64.5
parent: 2
- - uid: 3437
+ - uid: 4274
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -93.5,-63.5
+ pos: -93.5,-66.5
+ parent: 2
+ - uid: 4326
+ components:
+ - type: Transform
+ pos: -91.5,-66.5
+ parent: 2
+ - uid: 4498
+ components:
+ - type: Transform
+ pos: -95.5,-64.5
+ parent: 2
+ - uid: 4533
+ components:
+ - type: Transform
+ pos: -92.5,-65.5
+ parent: 2
+ - uid: 4558
+ components:
+ - type: Transform
+ pos: -92.5,-66.5
+ parent: 2
+ - uid: 4561
+ components:
+ - type: Transform
+ pos: -94.5,-64.5
parent: 2
- uid: 4562
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -89.5,-67.5
+ pos: -94.5,-65.5
parent: 2
- - uid: 6485
+ - uid: 14659
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -88.5,-65.5
+ pos: -93.5,-1.5
parent: 2
- - uid: 7238
+ - uid: 14660
+ components:
+ - type: Transform
+ pos: -91.5,-64.5
+ parent: 2
+ - uid: 15035
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -86.5,-64.5
+ pos: -94.5,-2.5
parent: 2
- - uid: 7379
+ - uid: 15042
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -86.5,-65.5
+ pos: -95.5,0.5
parent: 2
- - uid: 13636
+ - uid: 15060
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -89.5,-65.5
+ pos: -93.5,0.5
parent: 2
- - uid: 13656
+ - uid: 15067
components:
- type: Transform
- pos: -87.5,-65.5
+ pos: -90.5,-67.5
parent: 2
- - uid: 14854
+ - uid: 15068
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -90.5,-65.5
+ pos: -91.5,-67.5
parent: 2
- - uid: 16016
+ - uid: 15250
components:
- type: Transform
- pos: -96.5,-5.5
+ pos: -92.5,-67.5
parent: 2
- - uid: 16018
+ - uid: 15261
components:
- type: Transform
- pos: -91.5,-5.5
+ pos: -93.5,-67.5
parent: 2
- - uid: 16044
+ - uid: 15263
+ components:
+ - type: Transform
+ pos: -95.5,-66.5
+ parent: 2
+ - uid: 15363
+ components:
+ - type: Transform
+ pos: -94.5,-0.5
+ parent: 2
+ - uid: 15627
+ components:
+ - type: Transform
+ pos: -91.5,-65.5
+ parent: 2
+ - uid: 15785
+ components:
+ - type: Transform
+ pos: -93.5,-2.5
+ parent: 2
+ - uid: 15797
+ components:
+ - type: Transform
+ pos: -95.5,-65.5
+ parent: 2
+ - uid: 16182
+ components:
+ - type: Transform
+ pos: -95.5,-0.5
+ parent: 2
+ - uid: 17466
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -93.5,-64.5
parent: 2
- - uid: 16053
+ - uid: 17472
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -87.5,-67.5
+ pos: -94.5,-1.5
parent: 2
- - uid: 16054
+ - uid: 17473
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -92.5,-66.5
+ pos: -93.5,-1.5
parent: 2
- - uid: 16118
+ - uid: 17475
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -93.5,-66.5
+ pos: -93.5,-0.5
parent: 2
- - uid: 16166
+ - uid: 17479
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -92.5,-67.5
+ pos: -92.5,-3.5
parent: 2
- - uid: 18890
+ - uid: 18114
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -90.5,-66.5
+ pos: -93.5,-63.5
parent: 2
- - uid: 19810
+ - uid: 18349
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -89.5,-66.5
+ pos: -93.5,-1.5
parent: 2
- - uid: 20728
+ - uid: 18358
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -87.5,-64.5
+ pos: -94.5,-0.5
parent: 2
- - uid: 20785
+ - uid: 18777
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -92.5,-64.5
+ pos: -93.5,-4.5
parent: 2
- - uid: 22128
+ - uid: 18778
components:
- type: Transform
- pos: -94.5,-7.5
+ rot: 1.5707963267948966 rad
+ pos: -93.5,-3.5
parent: 2
- - uid: 22476
+ - uid: 18779
components:
- type: Transform
- pos: -91.5,-64.5
+ rot: 1.5707963267948966 rad
+ pos: -94.5,-1.5
parent: 2
- - uid: 22677
+ - uid: 18782
components:
- type: Transform
- pos: -96.5,-6.5
+ pos: -94.5,-67.5
parent: 2
- - uid: 22683
+ - uid: 18785
components:
- type: Transform
- pos: -92.5,-4.5
+ pos: -94.5,-63.5
parent: 2
- - uid: 23133
+ - uid: 18786
components:
- type: Transform
- pos: -86.5,-63.5
+ pos: -91.5,-63.5
parent: 2
- - uid: 23136
+ - uid: 20785
components:
- type: Transform
- pos: -87.5,-63.5
+ rot: 1.5707963267948966 rad
+ pos: -93.5,-0.5
parent: 2
- - uid: 23138
+ - uid: 20803
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -90.5,-67.5
+ pos: -94.5,-0.5
parent: 2
- - uid: 23140
+ - uid: 20804
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -91.5,-67.5
+ pos: -94.5,-3.5
parent: 2
- - uid: 23160
+ - uid: 20945
components:
- type: Transform
- pos: -88.5,-64.5
+ pos: -92.5,-63.5
parent: 2
- - uid: 23163
+ - uid: 21006
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -93.5,-65.5
+ pos: -92.5,-1.5
parent: 2
- - uid: 23168
+ - uid: 21043
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -91.5,-66.5
+ pos: -93.5,-2.5
parent: 2
- - uid: 23175
+ - uid: 21390
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -88.5,-66.5
+ pos: -94.5,-4.5
parent: 2
- - uid: 23176
+ - uid: 21418
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -88.5,-67.5
+ pos: -92.5,-4.5
parent: 2
- - uid: 23179
+ - uid: 21420
components:
- type: Transform
- pos: -89.5,-64.5
+ rot: 1.5707963267948966 rad
+ pos: -94.5,0.5
parent: 2
- - uid: 23183
+ - uid: 21496
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -87.5,-66.5
+ pos: -95.5,-0.5
parent: 2
- - uid: 23185
+ - uid: 22410
components:
- type: Transform
- pos: -90.5,-64.5
+ pos: -89.5,-65.5
parent: 2
- - uid: 23190
+ - uid: 22442
components:
- type: Transform
- pos: -86.5,-62.5
+ pos: -93.5,-65.5
parent: 2
- - uid: 23213
+ - uid: 22463
components:
- type: Transform
- pos: -95.5,-6.5
+ pos: -94.5,-66.5
parent: 2
-- proto: FloorWaterEntity
- entities:
- - uid: 1703
+ - uid: 23429
components:
- type: Transform
- pos: -80.5,-68.5
+ rot: 1.5707963267948966 rad
+ pos: -95.5,-1.5
parent: 2
- - uid: 1728
+ - uid: 23930
components:
- type: Transform
- pos: -59.5,-46.5
+ rot: 1.5707963267948966 rad
+ pos: -94.5,-5.5
parent: 2
- - uid: 1776
+ - uid: 24003
components:
- type: Transform
- pos: -81.5,-68.5
+ rot: 1.5707963267948966 rad
+ pos: -92.5,-0.5
+ parent: 2
+ - uid: 24004
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -92.5,-2.5
+ parent: 2
+ - uid: 24005
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -93.5,-5.5
+ parent: 2
+- proto: FloorWaterEntity
+ entities:
+ - uid: 1728
+ components:
+ - type: Transform
+ pos: -59.5,-46.5
parent: 2
- uid: 1866
components:
- type: Transform
pos: -106.5,29.5
parent: 2
- - uid: 2004
+ - uid: 2516
components:
- type: Transform
- pos: -80.5,-67.5
+ rot: 1.5707963267948966 rad
+ pos: -69.5,-45.5
parent: 2
- uid: 2522
components:
- type: Transform
pos: -65.5,-41.5
parent: 2
+ - uid: 2523
+ components:
+ - type: Transform
+ pos: -69.5,-43.5
+ parent: 2
- uid: 2539
components:
- type: Transform
@@ -82701,51 +82234,59 @@ entities:
- type: Transform
pos: -61.5,-47.5
parent: 2
- - uid: 4451
+ - uid: 3756
components:
- type: Transform
- pos: -80.5,-66.5
+ rot: 3.141592653589793 rad
+ pos: -69.5,-44.5
parent: 2
- - uid: 6552
+ - uid: 4802
components:
- type: Transform
- pos: -78.5,-50.5
+ rot: -1.5707963267948966 rad
+ pos: -81.5,-48.5
parent: 2
- - uid: 6676
+ - uid: 4804
components:
- type: Transform
- pos: -78.5,-49.5
+ rot: -1.5707963267948966 rad
+ pos: -80.5,-49.5
parent: 2
- - uid: 6677
+ - uid: 6706
components:
- type: Transform
- pos: -78.5,-48.5
+ rot: -1.5707963267948966 rad
+ pos: -82.5,-50.5
parent: 2
- - uid: 6860
+ - uid: 6737
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -80.5,-50.5
+ pos: -80.5,-48.5
parent: 2
- - uid: 8168
+ - uid: 6740
components:
- type: Transform
- pos: -82.5,-66.5
+ rot: -1.5707963267948966 rad
+ pos: -80.5,-47.5
parent: 2
- - uid: 8268
+ - uid: 6840
components:
- type: Transform
- pos: -82.5,-67.5
+ rot: -1.5707963267948966 rad
+ pos: -81.5,-50.5
parent: 2
- - uid: 8551
+ - uid: 6859
components:
- type: Transform
- pos: -81.5,-66.5
+ rot: -1.5707963267948966 rad
+ pos: -81.5,-49.5
parent: 2
- - uid: 9117
+ - uid: 6860
components:
- type: Transform
- pos: -82.5,-68.5
+ rot: -1.5707963267948966 rad
+ pos: -80.5,-50.5
parent: 2
- uid: 9584
components:
@@ -82775,16 +82316,6 @@ entities:
- type: Transform
pos: -60.5,-47.5
parent: 2
- - uid: 16329
- components:
- - type: Transform
- pos: -79.5,-48.5
- parent: 2
- - uid: 16672
- components:
- - type: Transform
- pos: -79.5,-50.5
- parent: 2
- uid: 16861
components:
- type: Transform
@@ -82821,36 +82352,11 @@ entities:
useSound: !type:SoundPathSpecifier
path: /Audio/Items/drink.ogg
solution: pool
- - uid: 17621
- components:
- - type: Transform
- pos: -78.5,-47.5
- parent: 2
- - uid: 18683
- components:
- - type: Transform
- pos: -79.5,-49.5
- parent: 2
- - uid: 19163
- components:
- - type: Transform
- pos: -62.5,-28.5
- parent: 2
- - uid: 19166
- components:
- - type: Transform
- pos: -60.5,-28.5
- parent: 2
- uid: 19330
components:
- type: Transform
pos: -106.5,30.5
parent: 2
- - uid: 19352
- components:
- - type: Transform
- pos: -61.5,-28.5
- parent: 2
- uid: 21442
components:
- type: Transform
@@ -82859,6 +82365,12 @@ entities:
parent: 2
- proto: FloraTree
entities:
+ - uid: 6707
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -80.76986,-45.08961
+ parent: 2
- uid: 7544
components:
- type: Transform
@@ -82869,11 +82381,6 @@ entities:
- type: Transform
pos: -45.4908,-60.47104
parent: 2
- - uid: 16344
- components:
- - type: Transform
- pos: -79.57429,-46.70475
- parent: 2
- uid: 16856
components:
- type: Transform
@@ -82918,6 +82425,13 @@ entities:
- type: Transform
pos: -24.391703,-70.56911
parent: 2
+- proto: FolderSpawner
+ entities:
+ - uid: 16002
+ components:
+ - type: Transform
+ pos: -113.48114,-31.459679
+ parent: 2
- proto: FoodBagel
entities:
- uid: 25685
@@ -82958,6 +82472,7 @@ entities:
- type: Transform
pos: -112.51823,36.525185
parent: 2
+ - type: RadiationSource
- proto: FoodCartCold
entities:
- uid: 3449
@@ -82973,36 +82488,6 @@ entities:
- type: Transform
pos: -22.587616,16.868912
parent: 2
-- proto: FoodMeat
- entities:
- - uid: 24432
- components:
- - type: Transform
- parent: 24431
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 24433
- components:
- - type: Transform
- parent: 24431
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 24434
- components:
- - type: Transform
- parent: 24431
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 24438
- components:
- - type: Transform
- parent: 24431
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- proto: FoodPieBananaCream
entities:
- uid: 22399
@@ -83044,11 +82529,6 @@ entities:
- type: Transform
pos: -119.513954,26.718058
parent: 2
- - uid: 22950
- components:
- - type: Transform
- pos: -102.307976,-65.23773
- parent: 2
- uid: 26092
components:
- type: Transform
@@ -83098,11 +82578,6 @@ entities:
- type: Transform
pos: -143.49344,-8.391947
parent: 2
- - uid: 22280
- components:
- - type: Transform
- pos: -116.19871,12.692918
- parent: 2
- proto: GasCanisterBrokenBase
entities:
- uid: 16887
@@ -83593,6 +83068,14 @@ entities:
color: '#990000FF'
- proto: GasPipeBend
entities:
+ - uid: 1117
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -105.5,5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 1565
components:
- type: Transform
@@ -83710,14 +83193,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 4581
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -110.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 4815
components:
- type: Transform
@@ -83858,30 +83333,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 6516
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -79.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 6653
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -92.5,-47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 6819
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -74.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 6863
components:
- type: Transform
@@ -84019,6 +83470,12 @@ entities:
rot: 3.141592653589793 rad
pos: -28.5,-62.5
parent: 2
+ - uid: 10120
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -70.5,-63.5
+ parent: 2
- uid: 10198
components:
- type: Transform
@@ -84034,6 +83491,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 10254
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -103.5,9.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 10339
components:
- type: Transform
@@ -84475,6 +83940,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 13506
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -109.5,-40.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 13649
components:
- type: Transform
@@ -84491,19 +83964,22 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 13764
+ - uid: 13702
components:
- type: Transform
- pos: -102.5,10.5
+ rot: 3.141592653589793 rad
+ pos: -90.5,-39.5
parent: 2
- - uid: 13786
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13730
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -105.5,11.5
+ rot: -1.5707963267948966 rad
+ pos: -80.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
- uid: 13903
components:
- type: Transform
@@ -84536,6 +84012,22 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 14179
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -82.5,-42.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14182
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -83.5,-44.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 14185
components:
- type: Transform
@@ -84544,6 +84036,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 14193
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -82.5,-45.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 14235
components:
- type: Transform
@@ -84560,6 +84060,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 14643
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -75.5,-38.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 14794
components:
- type: Transform
@@ -84576,6 +84084,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 14987
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -108.5,-46.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 15010
components:
- type: Transform
@@ -84640,6 +84156,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 15318
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -94.5,4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 15396
components:
- type: Transform
@@ -84685,13 +84209,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -116.5,15.5
parent: 2
- - uid: 16119
- components:
- - type: Transform
- pos: -93.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 16183
components:
- type: Transform
@@ -84705,28 +84222,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -111.5,9.5
parent: 2
- - uid: 16222
- components:
- - type: Transform
- pos: -98.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 16254
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -98.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 16279
- components:
- - type: Transform
- pos: -95.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 16551
components:
- type: Transform
@@ -84761,14 +84256,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 16914
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -113.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 16936
components:
- type: Transform
@@ -84782,30 +84269,6 @@ entities:
rot: 3.141592653589793 rad
pos: -150.5,-16.5
parent: 2
- - uid: 17133
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -74.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 17182
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -73.5,-66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 17216
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -73.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 17289
components:
- type: Transform
@@ -84860,22 +84323,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 17794
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -109.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 17832
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -103.5,-26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 17948
components:
- type: Transform
@@ -84948,6 +84395,22 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 18207
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -112.5,-31.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18212
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -114.5,-30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 18255
components:
- type: Transform
@@ -84985,14 +84448,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 18597
+ - uid: 18761
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -83.5,-47.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
- uid: 18853
components:
- type: Transform
@@ -85024,6 +84487,29 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 18941
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -83.5,-45.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18942
+ components:
+ - type: Transform
+ pos: -83.5,-37.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18943
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -81.5,-42.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 18960
components:
- type: Transform
@@ -85071,6 +84557,38 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 20522
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -76.5,-75.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20532
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -78.5,-76.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20533
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -78.5,-75.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20543
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -75.5,-66.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 20571
components:
- type: Transform
@@ -85167,6 +84685,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 23676
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -76.5,-35.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 23917
components:
- type: Transform
@@ -85297,20 +84823,6 @@ entities:
- type: Transform
pos: -110.5,9.5
parent: 2
- - uid: 6893
- components:
- - type: Transform
- pos: -74.5,-56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 6920
- components:
- - type: Transform
- pos: -73.5,-57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 6922
components:
- type: Transform
@@ -85325,13 +84837,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 9304
- components:
- - type: Transform
- pos: -83.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 10199
components:
- type: Transform
@@ -85447,20 +84952,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 14737
- components:
- - type: Transform
- pos: -90.5,-37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 14779
- components:
- - type: Transform
- pos: -91.5,-47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 14883
components:
- type: Transform
@@ -85555,6 +85046,20 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 17352
+ components:
+ - type: Transform
+ pos: -70.5,-37.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17883
+ components:
+ - type: Transform
+ pos: -96.5,-22.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 17885
components:
- type: Transform
@@ -85583,6 +85088,20 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 18220
+ components:
+ - type: Transform
+ pos: -76.5,-56.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18278
+ components:
+ - type: Transform
+ pos: -87.5,-39.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 18868
components:
- type: Transform
@@ -85604,6 +85123,13 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 20029
+ components:
+ - type: Transform
+ pos: -75.5,-57.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 20055
components:
- type: Transform
@@ -86209,6 +85735,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 824
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -75.5,-35.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 830
components:
- type: Transform
@@ -86240,14 +85774,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 892
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -65.5,-61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 921
components:
- type: Transform
@@ -86281,6 +85807,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 1102
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -105.5,6.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 1103
components:
- type: Transform
@@ -86384,20 +85918,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -124.5,1.5
parent: 2
- - uid: 1801
- components:
- - type: Transform
- pos: -102.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1817
- components:
- - type: Transform
- pos: -102.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 1871
components:
- type: Transform
@@ -86424,6 +85944,13 @@ entities:
rot: -1.5707963267948966 rad
pos: -105.5,-4.5
parent: 2
+ - uid: 1914
+ components:
+ - type: Transform
+ pos: -76.5,-36.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 2034
components:
- type: Transform
@@ -86516,14 +86043,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 2100
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -112.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 2106
components:
- type: Transform
@@ -86619,35 +86138,12 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 2546
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -111.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 2667
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -76.5,-56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 2709
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -120.5,10.5
parent: 2
- - uid: 2800
- components:
- - type: Transform
- pos: -74.5,-53.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 3011
components:
- type: Transform
@@ -86761,29 +86257,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 3716
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -77.5,-56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 3720
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -75.5,-56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 3722
- components:
- - type: Transform
- pos: -74.5,-54.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 3726
components:
- type: Transform
@@ -86800,14 +86273,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 3795
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -72.5,-63.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 3836
components:
- type: Transform
@@ -86836,14 +86301,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 3948
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -72.5,-62.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 4014
components:
- type: Transform
@@ -86891,21 +86348,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 4250
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -108.5,-31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 4279
- components:
- - type: Transform
- pos: -110.5,-28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 4311
components:
- type: Transform
@@ -87834,13 +87276,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -117.5,1.5
parent: 2
- - uid: 5682
- components:
- - type: Transform
- pos: -73.5,-51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 5683
components:
- type: Transform
@@ -87855,13 +87290,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 5697
- components:
- - type: Transform
- pos: -73.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 5705
components:
- type: Transform
@@ -87890,13 +87318,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#947507FF'
- - uid: 5876
- components:
- - type: Transform
- pos: -74.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 5902
components:
- type: Transform
@@ -87927,13 +87348,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 5998
- components:
- - type: Transform
- pos: -74.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 6001
components:
- type: Transform
@@ -87958,6 +87372,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 6016
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -74.5,-38.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 6022
components:
- type: Transform
@@ -88137,62 +87559,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 6248
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -74.5,-60.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 6318
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -74.5,-61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 6323
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -65.5,-62.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 6490
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -102.5,-26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 6498
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -102.5,-24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 6499
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -102.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 6500
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -102.5,-23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 6505
components:
- type: Transform
@@ -88201,14 +87567,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 6511
+ - uid: 6514
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -102.5,-22.5
+ rot: 1.5707963267948966 rad
+ pos: -74.5,-35.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- uid: 6544
components:
- type: Transform
@@ -88217,14 +87583,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 6555
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -102.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 6652
components:
- type: Transform
@@ -88259,105 +87617,12 @@ entities:
- type: Transform
pos: -148.5,-40.5
parent: 2
- - uid: 6740
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -65.5,-59.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 6745
- components:
- - type: Transform
- pos: -74.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 6792
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -102.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 6793
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -102.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 6854
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -74.5,-64.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 6859
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -73.5,-61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 6865
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -73.5,-62.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 6867
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -73.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 6872
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -116.5,3.5
parent: 2
- - uid: 6883
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -73.5,-60.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 6887
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -74.5,-63.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 6895
- components:
- - type: Transform
- pos: -73.5,-53.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 6896
- components:
- - type: Transform
- pos: -73.5,-54.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 6905
components:
- type: Transform
@@ -88688,29 +87953,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 7753
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -83.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 7755
- components:
- - type: Transform
- pos: -79.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 7763
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -82.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 7781
components:
- type: Transform
@@ -88734,14 +87976,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 7830
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -84.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 7841
components:
- type: Transform
@@ -88774,13 +88008,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 8485
- components:
- - type: Transform
- pos: -74.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 8488
components:
- type: Transform
@@ -88876,13 +88103,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 8596
- components:
- - type: Transform
- pos: -73.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 8602
components:
- type: Transform
@@ -89069,6 +88289,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 8978
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -105.5,10.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 8991
components:
- type: Transform
@@ -89211,10 +88439,10 @@ entities:
- uid: 9201
components:
- type: Transform
- pos: -90.5,-42.5
+ pos: -103.5,-23.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- uid: 9214
components:
- type: Transform
@@ -89279,11 +88507,11 @@ entities:
- uid: 9292
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -100.5,-27.5
+ rot: 3.141592653589793 rad
+ pos: -105.5,8.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- uid: 9316
components:
- type: Transform
@@ -89310,20 +88538,42 @@ entities:
rot: 3.141592653589793 rad
pos: -27.5,-63.5
parent: 2
- - uid: 9391
+ - uid: 9426
components:
- type: Transform
- pos: -73.5,-52.5
+ rot: -1.5707963267948966 rad
+ pos: -72.5,-38.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 9401
+ - uid: 9427
components:
- type: Transform
- pos: -74.5,-51.5
+ rot: -1.5707963267948966 rad
+ pos: -73.5,-38.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
+ - uid: 9429
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -90.5,-43.5
+ parent: 2
+ - uid: 9453
+ components:
+ - type: Transform
+ pos: -87.5,-41.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9454
+ components:
+ - type: Transform
+ pos: -87.5,-44.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 9460
components:
- type: Transform
@@ -89402,6 +88652,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 9483
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -72.5,-37.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 9484
components:
- type: Transform
@@ -89491,14 +88749,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 9577
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -102.5,-16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 9586
components:
- type: Transform
@@ -89507,54 +88757,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 9630
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -102.5,-13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 9631
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -102.5,-14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 9633
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -102.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 9634
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -102.5,-5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 9636
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -102.5,-4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 9646
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -102.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 9715
components:
- type: Transform
@@ -89665,14 +88867,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 9933
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -102.5,-12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 9936
components:
- type: Transform
@@ -89685,14 +88879,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -125.5,11.5
parent: 2
- - uid: 9953
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -102.5,-10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 9955
components:
- type: Transform
@@ -89796,8 +88982,8 @@ entities:
- uid: 10027
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -102.5,-15.5
+ rot: -1.5707963267948966 rad
+ pos: -88.5,-47.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
@@ -90096,11 +89282,10 @@ entities:
- uid: 10118
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -102.5,-9.5
+ pos: -76.5,-38.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- uid: 10137
components:
- type: Transform
@@ -90115,20 +89300,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -84.5,-5.5
parent: 2
- - uid: 10201
- components:
- - type: Transform
- pos: -73.5,-50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 10203
- components:
- - type: Transform
- pos: -74.5,-46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 10211
components:
- type: Transform
@@ -92253,13 +91424,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 11269
- components:
- - type: Transform
- pos: -73.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 11270
components:
- type: Transform
@@ -93372,6 +92536,13 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 11822
+ components:
+ - type: Transform
+ pos: -103.5,1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 11823
components:
- type: Transform
@@ -96676,6 +95847,22 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 12632
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -18.5,-50.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12633
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,-50.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 12634
components:
- type: Transform
@@ -96684,6 +95871,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 12635
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -18.5,-54.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 12636
components:
- type: Transform
@@ -96692,6 +95887,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 12637
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,-54.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 12640
components:
- type: Transform
@@ -97911,6 +97114,22 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 12895
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -65.5,-64.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12896
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -65.5,-65.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 12901
components:
- type: Transform
@@ -98278,6 +97497,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 13564
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -104.5,5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 13594
components:
- type: Transform
@@ -98421,10 +97648,19 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 13694
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -85.5,-39.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 13695
components:
- type: Transform
- pos: -73.5,-49.5
+ rot: -1.5707963267948966 rad
+ pos: -86.5,-39.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
@@ -98436,10 +97672,27 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 13702
+ - uid: 13704
components:
- type: Transform
- pos: -73.5,-48.5
+ rot: -1.5707963267948966 rad
+ pos: -84.5,-39.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13710
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -87.5,-46.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13711
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -89.5,-47.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
@@ -98459,25 +97712,38 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 13738
+ - uid: 13729
components:
- type: Transform
- pos: -103.5,10.5
+ rot: -1.5707963267948966 rad
+ pos: -84.5,-47.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 13756
+ color: '#990000FF'
+ - uid: 13732
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -19.5,-48.5
+ pos: -88.5,-37.5
parent: 2
- - uid: 13758
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 13738
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -83.5,-38.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 13786
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -19.5,-52.5
+ pos: -86.5,-47.5
parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 13826
components:
- type: Transform
@@ -98486,6 +97752,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 14013
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -82.5,-39.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 14066
components:
- type: Transform
@@ -98630,36 +97904,100 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 14138
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -83.5,-39.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 14180
components:
- type: Transform
- pos: -103.5,9.5
+ rot: 3.141592653589793 rad
+ pos: -83.5,-42.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 14207
+ - uid: 14181
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -65.5,-58.5
+ pos: -83.5,-43.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14183
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -84.5,-44.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14184
+ components:
+ - type: Transform
+ pos: -82.5,-44.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 14208
+ - uid: 14186
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -65.5,-60.5
+ pos: -91.5,-47.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14187
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -89.5,-44.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14188
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -91.5,-45.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14191
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -83.5,-40.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14192
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -91.5,-46.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14194
+ components:
+ - type: Transform
+ pos: -90.5,-38.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- uid: 14275
components:
- type: Transform
- pos: -103.5,8.5
+ rot: -1.5707963267948966 rad
+ pos: -89.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
- uid: 14276
components:
- type: Transform
@@ -98675,6 +98013,20 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 14496
+ components:
+ - type: Transform
+ pos: -91.5,-38.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14544
+ components:
+ - type: Transform
+ pos: -91.5,-40.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 14583
components:
- type: Transform
@@ -98696,46 +98048,35 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 14644
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -80.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 14653
+ - uid: 14655
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -90.5,-38.5
+ rot: -1.5707963267948966 rad
+ pos: -75.5,-37.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 14654
+ - uid: 14729
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -88.5,-38.5
+ pos: -91.5,-42.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 14660
+ - uid: 14730
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -89.5,-38.5
+ pos: -91.5,-43.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 14729
+ - uid: 14732
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -84.5,-38.5
+ pos: -87.5,-40.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
- uid: 14793
components:
- type: Transform
@@ -98759,6 +98100,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 14833
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -63.5,-30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 14834
components:
- type: Transform
@@ -98767,6 +98116,13 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 14838
+ components:
+ - type: Transform
+ pos: -87.5,-43.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 14841
components:
- type: Transform
@@ -98799,6 +98155,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 14845
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -59.5,-32.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 14846
components:
- type: Transform
@@ -99363,6 +98727,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 14964
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -59.5,-24.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 14966
components:
- type: Transform
@@ -99418,6 +98790,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 14974
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -63.5,-22.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 14977
components:
- type: Transform
@@ -99669,6 +99049,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 15057
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -105.5,7.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 15073
components:
- type: Transform
@@ -99789,6 +99177,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 15102
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -103.5,11.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 15104
components:
- type: Transform
@@ -99829,6 +99225,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 15109
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -102.5,9.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 15110
components:
- type: Transform
@@ -100248,6 +99652,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 15201
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -65.5,-57.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 15202
components:
- type: Transform
@@ -100351,6 +99763,262 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 15225
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -75.5,-47.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15228
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -75.5,-53.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15229
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -75.5,-52.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15230
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -75.5,-51.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15231
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -75.5,-50.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15232
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -75.5,-49.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15233
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -75.5,-48.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15234
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -75.5,-46.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15235
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -75.5,-54.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15236
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -75.5,-45.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15237
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -75.5,-44.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15238
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -75.5,-43.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15239
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -75.5,-42.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15240
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -75.5,-41.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15241
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -75.5,-40.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15242
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -75.5,-39.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15243
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -76.5,-45.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15244
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -76.5,-46.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15245
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -76.5,-43.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15246
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -76.5,-42.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15247
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -76.5,-41.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15248
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -76.5,-40.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15249
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -76.5,-39.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15251
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -76.5,-44.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15253
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -76.5,-53.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15254
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -76.5,-52.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15255
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -76.5,-51.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15256
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -76.5,-50.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15257
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -76.5,-49.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15258
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -76.5,-54.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15259
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -76.5,-48.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15260
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -76.5,-47.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 15269
components:
- type: Transform
@@ -100781,6 +100449,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 15590
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -105.5,9.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 15601
components:
- type: Transform
@@ -100805,14 +100481,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 15627
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -98.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 15630
components:
- type: Transform
@@ -100955,6 +100623,16 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 15929
+ components:
+ - type: Transform
+ anchored: False
+ rot: 1.5707963267948966 rad
+ pos: -137.5,-39.5
+ parent: 2
+ - type: Physics
+ canCollide: True
+ bodyType: Dynamic
- uid: 15932
components:
- type: Transform
@@ -100988,37 +100666,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -105.5,-5.5
parent: 2
- - uid: 16007
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -73.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 16017
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -102.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 16024
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -102.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 16026
- components:
- - type: Transform
- pos: -102.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 16037
components:
- type: Transform
@@ -101041,13 +100688,6 @@ entities:
rot: 3.141592653589793 rad
pos: -111.5,-2.5
parent: 2
- - uid: 16101
- components:
- - type: Transform
- pos: -102.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 16102
components:
- type: Transform
@@ -101056,13 +100696,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 16103
- components:
- - type: Transform
- pos: -93.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 16140
components:
- type: Transform
@@ -101071,21 +100704,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 16188
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -95.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 16189
- components:
- - type: Transform
- pos: -93.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 16191
components:
- type: Transform
@@ -101100,14 +100718,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 16207
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -96.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 16208
components:
- type: Transform
@@ -101120,19 +100730,19 @@ entities:
rot: -1.5707963267948966 rad
pos: -114.5,7.5
parent: 2
- - uid: 16224
+ - uid: 16243
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -94.5,2.5
+ rot: -1.5707963267948966 rad
+ pos: -71.5,-37.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 16255
+ color: '#0055CCFF'
+ - uid: 16256
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -96.5,0.5
+ pos: -73.5,-37.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -101144,61 +100754,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 16286
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -101.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 16288
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -99.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 16302
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -100.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 16304
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -102.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 16336
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -70.5,-66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 16341
- components:
- - type: Transform
- pos: -103.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 16343
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -92.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 16357
components:
- type: Transform
@@ -101217,45 +100772,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 16385
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -100.5,-23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 16392
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -72.5,-66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 16393
- components:
- - type: Transform
- pos: -73.5,-55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 16394
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -73.5,-56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 16395
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -73.5,-58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 16397
components:
- type: Transform
@@ -101272,14 +100788,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 16462
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -88.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 16464
components:
- type: Transform
@@ -101340,62 +100848,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 16572
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -101.5,-23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 16658
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -86.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 16664
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -89.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 16665
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -81.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 16669
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -80.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 16671
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -98.5,-23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 16691
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -85.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 16710
components:
- type: Transform
@@ -101404,21 +100856,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 16712
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -62.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 16742
- components:
- - type: Transform
- pos: -73.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 16761
components:
- type: Transform
@@ -101440,18 +100877,11 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 16805
- components:
- - type: Transform
- pos: -73.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 16827
+ - uid: 16810
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -97.5,-23.5
+ pos: -74.5,-37.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -101555,14 +100985,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 16994
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -92.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 17006
components:
- type: Transform
@@ -101582,21 +101004,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 17045
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -92.5,-46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 17052
- components:
- - type: Transform
- pos: -74.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 17062
components:
- type: Transform
@@ -101611,13 +101018,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -86.5,-3.5
parent: 2
- - uid: 17101
- components:
- - type: Transform
- pos: -74.5,-48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 17102
components:
- type: Transform
@@ -101626,14 +101026,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 17111
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -72.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 17112
components:
- type: Transform
@@ -101642,37 +101034,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 17120
- components:
- - type: Transform
- pos: -74.5,-49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 17127
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -72.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 17134
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -73.5,-59.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 17137
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -73.5,-62.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 17154
components:
- type: Transform
@@ -101697,14 +101058,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 17178
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -73.5,-64.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 17181
components:
- type: Transform
@@ -101713,42 +101066,12 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 17188
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -71.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 17199
- components:
- - type: Transform
- pos: -73.5,-56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 17226
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -26.5,-64.5
parent: 2
- - uid: 17232
- components:
- - type: Transform
- pos: -74.5,-47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 17236
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -71.5,-66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 17238
components:
- type: Transform
@@ -101800,13 +101123,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 17352
- components:
- - type: Transform
- pos: -74.5,-52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 17377
components:
- type: Transform
@@ -101815,28 +101131,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 17402
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -70.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 17407
- components:
- - type: Transform
- pos: -74.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 17409
- components:
- - type: Transform
- pos: -103.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 17425
components:
- type: Transform
@@ -101852,46 +101146,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 17466
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -74.5,-58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 17472
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -110.5,-26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 17475
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -102.5,-23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 17479
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -92.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 17483
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -92.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 17557
components:
- type: Transform
@@ -102052,57 +101306,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 17792
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -60.5,-32.5
- parent: 2
- - uid: 17798
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -65.5,-66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 17824
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -109.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 17830
- components:
- - type: Transform
- pos: -90.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 17834
- components:
- - type: Transform
- pos: -74.5,-50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 17837
- components:
- - type: Transform
- pos: -74.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 17838
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -74.5,-59.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 17854
components:
- type: Transform
@@ -102111,13 +101314,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 17861
- components:
- - type: Transform
- pos: -90.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 17862
components:
- type: Transform
@@ -102165,13 +101361,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 17871
- components:
- - type: Transform
- pos: -90.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 17873
components:
- type: Transform
@@ -102204,6 +101393,22 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 17877
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -102.5,-27.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17878
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -101.5,-27.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 17880
components:
- type: Transform
@@ -102220,6 +101425,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 17882
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -100.5,-27.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 17888
components:
- type: Transform
@@ -102323,6 +101536,22 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 17904
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -98.5,-22.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17905
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -97.5,-22.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 17906
components:
- type: Transform
@@ -102371,6 +101600,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 17912
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -96.5,-23.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 17913
components:
- type: Transform
@@ -103223,13 +102460,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 18076
- components:
- - type: Transform
- pos: -74.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 18078
components:
- type: Transform
@@ -103280,6 +102510,13 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 18091
+ components:
+ - type: Transform
+ pos: -90.5,-37.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 18092
components:
- type: Transform
@@ -103287,6 +102524,21 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 18093
+ components:
+ - type: Transform
+ pos: -104.5,-31.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18094
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -85.5,-37.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 18095
components:
- type: Transform
@@ -103305,23 +102557,23 @@ entities:
- uid: 18097
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -92.5,-40.5
+ rot: -1.5707963267948966 rad
+ pos: -89.5,-37.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 18099
+ - uid: 18098
components:
- type: Transform
- pos: -103.5,-24.5
+ rot: -1.5707963267948966 rad
+ pos: -90.5,-37.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 18101
+ - uid: 18099
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -62.5,-30.5
+ pos: -103.5,-24.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -103410,6 +102662,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 18119
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -86.5,-37.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 18120
components:
- type: Transform
@@ -103760,14 +103020,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 18196
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -92.5,-37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 18199
components:
- type: Transform
@@ -103784,21 +103036,102 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 18203
+ - uid: 18204
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -90.5,-38.5
+ pos: -119.5,-27.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18205
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -110.5,-31.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 18204
+ - uid: 18206
components:
- type: Transform
- pos: -119.5,-27.5
+ rot: -1.5707963267948966 rad
+ pos: -111.5,-31.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18209
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -111.5,-30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18210
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -112.5,-30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18211
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -113.5,-30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18213
+ components:
+ - type: Transform
+ pos: -114.5,-31.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18214
+ components:
+ - type: Transform
+ pos: -110.5,-29.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 18215
+ components:
+ - type: Transform
+ pos: -110.5,-28.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18216
+ components:
+ - type: Transform
+ pos: -110.5,-27.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18217
+ components:
+ - type: Transform
+ pos: -109.5,-30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18218
+ components:
+ - type: Transform
+ pos: -109.5,-29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18219
+ components:
+ - type: Transform
+ pos: -109.5,-28.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 18222
components:
- type: Transform
@@ -103823,6 +103156,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 18227
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -110.5,-27.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 18228
components:
- type: Transform
@@ -104127,14 +103468,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 18275
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -89.5,-47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 18276
components:
- type: Transform
@@ -104143,6 +103476,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 18277
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -87.5,-37.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 18279
components:
- type: Transform
@@ -104703,43 +104044,12 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 18359
- components:
- - type: Transform
- pos: -90.5,-46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 18360
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -125.5,1.5
parent: 2
- - uid: 18364
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -86.5,-47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 18367
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -88.5,-47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 18368
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -84.5,-47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 18371
components:
- type: Transform
@@ -104879,75 +104189,49 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 18594
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -87.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 18595
+ - uid: 18773
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -87.5,-47.5
+ rot: 1.5707963267948966 rad
+ pos: -86.5,-44.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 18596
+ - uid: 18801
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -90.5,-47.5
+ pos: -119.5,10.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 18598
+ - uid: 18829
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -85.5,-47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 18618
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -79.5,-39.5
+ pos: -88.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 18742
+ color: '#990000FF'
+ - uid: 18835
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -74.5,-57.5
+ pos: -88.5,-42.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 18801
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -119.5,10.5
- parent: 2
- uid: 18838
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -102.5,-19.5
+ pos: -91.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- uid: 18839
components:
- type: Transform
- pos: -97.5,3.5
+ pos: -88.5,-43.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- uid: 18840
components:
- type: Transform
@@ -105401,6 +104685,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 18940
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -83.5,-39.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 18952
components:
- type: Transform
@@ -105480,6 +104772,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 18981
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -77.5,-56.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 18984
components:
- type: Transform
@@ -105706,6 +105006,36 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 19351
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -81.5,-40.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19352
+ components:
+ - type: Transform
+ pos: -83.5,-46.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19353
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -87.5,-44.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19354
+ components:
+ - type: Transform
+ pos: -87.5,-45.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 19355
components:
- type: Transform
@@ -105745,14 +105075,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 19507
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -102.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 19509
components:
- type: Transform
@@ -106546,23 +105868,20 @@ entities:
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -102.5,-0.5
+ pos: -72.5,-65.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 19725
+ - uid: 19724
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -67.5,-32.5
+ pos: -72.5,-63.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 19730
+ - uid: 19725
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -96.5,4.5
+ rot: 1.5707963267948966 rad
+ pos: -67.5,-32.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
@@ -106605,14 +105924,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 19819
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -102.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 19877
components:
- type: Transform
@@ -106629,11 +105940,11 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 19973
+ - uid: 20037
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -102.5,-3.5
+ pos: -82.5,-43.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
@@ -107823,21 +107134,36 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 20383
+ - uid: 20495
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -83.5,-39.5
+ pos: -75.5,-55.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 20413
+ color: '#990000FF'
+ - uid: 20496
components:
- type: Transform
- pos: -90.5,-47.5
+ pos: -75.5,-56.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 20497
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -75.5,-56.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20498
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -74.5,-56.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 20499
components:
- type: Transform
@@ -107846,6 +107172,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 20500
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -73.5,-56.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 20501
components:
- type: Transform
@@ -107854,26 +107188,257 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 20502
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -73.5,-57.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20503
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -74.5,-57.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20504
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -76.5,-59.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20505
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -76.5,-57.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20506
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -76.5,-58.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20507
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -76.5,-60.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 20508
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -91.5,-38.5
+ rot: 3.141592653589793 rad
+ pos: -76.5,-61.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20509
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -76.5,-62.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20510
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -76.5,-63.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20511
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -76.5,-64.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20512
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -75.5,-65.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20513
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -76.5,-66.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20514
+ components:
+ - type: Transform
+ pos: -76.5,-67.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20515
+ components:
+ - type: Transform
+ pos: -76.5,-68.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20516
+ components:
+ - type: Transform
+ pos: -76.5,-70.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20517
+ components:
+ - type: Transform
+ pos: -76.5,-71.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20518
+ components:
+ - type: Transform
+ pos: -76.5,-72.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20519
+ components:
+ - type: Transform
+ pos: -76.5,-73.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20520
+ components:
+ - type: Transform
+ pos: -76.5,-74.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20521
+ components:
+ - type: Transform
+ pos: -76.5,-69.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20524
+ components:
+ - type: Transform
+ pos: -82.5,-77.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 20525
+ components:
+ - type: Transform
+ pos: -82.5,-78.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20526
+ components:
+ - type: Transform
+ pos: -82.5,-79.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20528
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -101.5,-27.5
+ pos: -81.5,-76.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20529
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -80.5,-76.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20530
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -79.5,-76.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20531
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -77.5,-75.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20535
+ components:
+ - type: Transform
+ pos: -75.5,-58.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 20534
+ - uid: 20536
components:
- type: Transform
- pos: -73.5,-44.5
+ pos: -75.5,-59.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20537
+ components:
+ - type: Transform
+ pos: -75.5,-60.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20538
+ components:
+ - type: Transform
+ pos: -75.5,-62.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20539
+ components:
+ - type: Transform
+ pos: -75.5,-63.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20540
+ components:
+ - type: Transform
+ pos: -75.5,-64.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20541
+ components:
+ - type: Transform
+ pos: -75.5,-61.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
@@ -107885,6 +107450,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 20545
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -73.5,-66.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 20546
components:
- type: Transform
@@ -107896,7 +107469,24 @@ entities:
- uid: 20549
components:
- type: Transform
- pos: -73.5,-45.5
+ rot: 1.5707963267948966 rad
+ pos: -74.5,-66.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20551
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -71.5,-66.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20552
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -70.5,-66.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
@@ -107980,13 +107570,30 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 20565
+ - uid: 20563
components:
- type: Transform
- pos: -73.5,-46.5
+ rot: 1.5707963267948966 rad
+ pos: -74.5,-65.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
+ - uid: 20564
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -72.5,-65.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20566
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -70.5,-65.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 20567
components:
- type: Transform
@@ -108011,6 +107618,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 20570
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -73.5,-65.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 20572
components:
- type: Transform
@@ -108102,10 +107717,11 @@ entities:
- uid: 20584
components:
- type: Transform
- pos: -73.5,-47.5
+ rot: 1.5707963267948966 rad
+ pos: -75.5,-65.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- uid: 20585
components:
- type: Transform
@@ -108368,14 +107984,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 20763
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,-57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 20838
components:
- type: Transform
@@ -108399,14 +108007,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 20944
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -87.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 20962
components:
- type: Transform
@@ -108423,44 +108023,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 21045
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -86.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 21046
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -82.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 21047
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -89.5,-37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 21048
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -88.5,-37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 21050
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -60.5,-24.5
- parent: 2
- uid: 21065
components:
- type: Transform
@@ -108517,13 +108079,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 21664
- components:
- - type: Transform
- pos: -74.5,-36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 21742
components:
- type: Transform
@@ -108548,14 +108103,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 22131
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -102.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 22139
components:
- type: Transform
@@ -108655,30 +108202,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 22521
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -102.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 22570
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -95.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 22630
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -102.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 22634
components:
- type: Transform
@@ -108695,22 +108218,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 22667
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -102.5,-17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 22711
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -99.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 22769
components:
- type: Transform
@@ -108727,14 +108234,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 22796
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -100.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 22816
components:
- type: Transform
@@ -108906,22 +108405,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23210
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -102.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23211
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -101.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 23239
components:
- type: Transform
@@ -108936,14 +108419,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23285
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -107.5,-31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 23293
components:
- type: Transform
@@ -108952,37 +108427,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23301
- components:
- - type: Transform
- pos: -110.5,-29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23302
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -105.5,-31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23307
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -106.5,-31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23363
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -85.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 23415
components:
- type: Transform
@@ -108991,14 +108435,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23426
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -81.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 23512
components:
- type: Transform
@@ -110935,14 +110371,6 @@ entities:
rot: 3.141592653589793 rad
pos: -140.5,-3.5
parent: 2
- - uid: 1750
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -103.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 1754
components:
- type: Transform
@@ -110951,14 +110379,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 1765
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -102.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 2274
components:
- type: Transform
@@ -110974,14 +110394,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 2663
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -74.5,-55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 2693
components:
- type: Transform
@@ -111010,14 +110422,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 3724
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -73.5,-63.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 4091
components:
- type: Transform
@@ -111053,6 +110457,13 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 4677
+ components:
+ - type: Transform
+ pos: -103.5,5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 4750
components:
- type: Transform
@@ -111183,19 +110594,11 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 6250
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -74.5,-62.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 6503
+ - uid: 6966
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -92.5,-39.5
+ pos: -109.5,-41.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -111213,6 +110616,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 7078
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -105.5,11.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 8036
components:
- type: Transform
@@ -111318,6 +110729,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 9308
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -76.5,-37.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 9309
components:
- type: Transform
@@ -111344,14 +110763,6 @@ entities:
rot: 3.141592653589793 rad
pos: -25.5,-64.5
parent: 2
- - uid: 9398
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -92.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 9459
components:
- type: Transform
@@ -111503,6 +110914,20 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 10121
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -71.5,-63.5
+ parent: 2
+ - uid: 10160
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -109.5,-44.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 10200
components:
- type: Transform
@@ -111964,6 +111389,13 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 11897
+ components:
+ - type: Transform
+ pos: -110.5,-26.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 11904
components:
- type: Transform
@@ -112667,6 +112099,13 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 13714
+ components:
+ - type: Transform
+ pos: -91.5,-37.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 13717
components:
- type: Transform
@@ -112683,6 +112122,29 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 14136
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -85.5,-47.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14178
+ components:
+ - type: Transform
+ pos: -81.5,-39.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14190
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -81.5,-41.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 14290
components:
- type: Transform
@@ -112699,6 +112161,30 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 14731
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -91.5,-41.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14733
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -91.5,-44.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14737
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -90.5,-47.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 14789
components:
- type: Transform
@@ -112729,6 +112215,29 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 14836
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -87.5,-42.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14852
+ components:
+ - type: Transform
+ pos: -62.5,-30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14855
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -60.5,-32.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 14879
components:
- type: Transform
@@ -112768,6 +112277,21 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 14965
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -60.5,-24.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14969
+ components:
+ - type: Transform
+ pos: -62.5,-22.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 15024
components:
- type: Transform
@@ -113074,14 +112598,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 16068
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -97.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 16116
components:
- type: Transform
@@ -113104,45 +112620,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 16195
- components:
- - type: Transform
- pos: -97.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 16383
+ - uid: 16207
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -94.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 16389
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -90.5,-41.5
+ pos: -65.5,-66.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 16401
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -96.5,-23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 16414
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -103.5,-23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 16530
components:
- type: Transform
@@ -113159,56 +112644,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 16663
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -92.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 16706
- components:
- - type: Transform
- pos: -63.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 16711
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -59.5,-32.5
- parent: 2
- - uid: 16713
- components:
- - type: Transform
- pos: -63.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 16714
- components:
- - type: Transform
- pos: -103.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 16719
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -102.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 16720
- components:
- - type: Transform
- pos: -65.5,-57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 16741
components:
- type: Transform
@@ -113225,38 +112660,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 16819
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -102.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 16826
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -99.5,-23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 16830
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -96.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 16837
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -104.5,-31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 16878
components:
- type: Transform
@@ -113279,13 +112682,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 16915
- components:
- - type: Transform
- pos: -110.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 16943
components:
- type: Transform
@@ -113294,14 +112690,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 16991
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -90.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 17150
components:
- type: Transform
@@ -113346,14 +112734,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 17408
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -103.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 17614
components:
- type: Transform
@@ -113370,20 +112750,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 17793
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -59.5,-24.5
- parent: 2
- - uid: 17795
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -109.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 17809
components:
- type: Transform
@@ -113392,14 +112758,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 17826
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -90.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 17863
components:
- type: Transform
@@ -113416,6 +112774,13 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 17871
+ components:
+ - type: Transform
+ pos: -109.5,-27.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 17879
components:
- type: Transform
@@ -113602,6 +112967,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 18101
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -92.5,-37.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 18130
components:
- type: Transform
@@ -113655,19 +113028,11 @@ entities:
- type: Transform
pos: -122.5,12.5
parent: 2
- - uid: 18605
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -87.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 18638
+ - uid: 18694
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -79.5,-38.5
+ pos: -83.5,-41.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -113679,6 +113044,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 18837
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -88.5,-44.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 18845
components:
- type: Transform
@@ -113687,6 +113060,22 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 18864
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -109.5,-31.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18865
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -110.5,-30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 18876
components:
- type: Transform
@@ -113726,6 +113115,20 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 18953
+ components:
+ - type: Transform
+ pos: -85.5,-44.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18954
+ components:
+ - type: Transform
+ pos: -90.5,-44.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 18967
components:
- type: Transform
@@ -113748,6 +113151,21 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 19349
+ components:
+ - type: Transform
+ pos: -84.5,-37.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19350
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -87.5,-47.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 19574
components:
- type: Transform
@@ -113870,6 +113288,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 20188
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -103.5,-26.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 20192
components:
- type: Transform
@@ -113932,29 +113358,54 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 20586
+ - uid: 20523
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -55.5,-63.5
+ pos: -82.5,-76.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 20587
+ - uid: 20548
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -54.5,-64.5
+ pos: -76.5,-65.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20550
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -72.5,-66.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 20830
+ - uid: 20565
components:
- type: Transform
- pos: -83.5,-38.5
+ rot: 3.141592653589793 rad
+ pos: -71.5,-65.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20586
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -55.5,-63.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 20587
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -54.5,-64.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 20846
components:
- type: Transform
@@ -113965,13 +113416,6 @@ entities:
- type: Physics
canCollide: True
bodyType: Dynamic
- - uid: 20897
- components:
- - type: Transform
- pos: -87.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 20961
components:
- type: Transform
@@ -113988,13 +113432,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 22629
- components:
- - type: Transform
- pos: -97.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 23044
components:
- type: Transform
@@ -114164,6 +113601,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 24721
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -76.5,-55.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 24763
components:
- type: Transform
@@ -114273,24 +113718,20 @@ entities:
- type: Transform
pos: -146.5,-47.5
parent: 2
- - uid: 3728
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -70.5,-62.5
- parent: 2
- - uid: 3938
+ - uid: 4918
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -70.5,-63.5
+ pos: -136.5,-6.5
parent: 2
- - uid: 4918
+ - uid: 5559
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -136.5,-6.5
+ pos: -108.5,-40.5
parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 5614
components:
- type: Transform
@@ -114329,6 +113770,11 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 10124
+ components:
+ - type: Transform
+ pos: -71.5,-62.5
+ parent: 2
- uid: 13663
components:
- type: Transform
@@ -114352,6 +113798,11 @@ entities:
- type: Transform
pos: -140.5,-46.5
parent: 2
+ - uid: 17125
+ components:
+ - type: Transform
+ pos: -72.5,-62.5
+ parent: 2
- uid: 17227
components:
- type: Transform
@@ -114368,6 +113819,11 @@ entities:
rot: -1.5707963267948966 rad
pos: -115.5,15.5
parent: 2
+ - uid: 19730
+ components:
+ - type: Transform
+ pos: -70.5,-62.5
+ parent: 2
- uid: 20031
components:
- type: Transform
@@ -114442,22 +113898,6 @@ entities:
parent: 2
- proto: GasPressurePump
entities:
- - uid: 3723
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -71.5,-62.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 3731
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -71.5,-63.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 5096
components:
- type: Transform
@@ -114554,6 +113994,21 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 16462
+ components:
+ - type: Transform
+ pos: -72.5,-64.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17483
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -71.5,-64.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 18370
components:
- type: Transform
@@ -114791,17 +114246,6 @@ entities:
- 15364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 4280
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -109.5,-31.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 14263
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 4332
components:
- type: Transform
@@ -114867,16 +114311,6 @@ entities:
- 927
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 6531
- components:
- - type: Transform
- pos: -91.5,-46.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 20503
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 7787
components:
- type: Transform
@@ -115453,6 +114887,28 @@ entities:
- 8947
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 12617
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,-52.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 8947
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12618
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,-48.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 8947
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 12624
components:
- type: Transform
@@ -115520,15 +114976,22 @@ entities:
- 25887
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 13755
+ - uid: 13685
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,-48.5
+ rot: 3.141592653589793 rad
+ pos: -84.5,-38.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 8947
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 13713
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -92.5,-38.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 13824
components:
- type: Transform
@@ -115548,15 +115011,21 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 14689
+ - uid: 14196
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,-52.5
+ rot: 1.5707963267948966 rad
+ pos: -84.5,-41.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 8947
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14197
+ components:
+ - type: Transform
+ pos: -88.5,-41.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 14828
components:
- type: Transform
@@ -115576,6 +115045,17 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 14854
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -62.5,-31.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 12151
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 14863
components:
- type: Transform
@@ -115623,7 +115103,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 24742
- - 20503
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 15036
@@ -115786,14 +115265,6 @@ entities:
- 20948
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 16022
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -95.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 16034
components:
- type: Transform
@@ -115805,34 +115276,15 @@ entities:
- 18705
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 16278
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -97.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 16391
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -91.5,-39.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 20831
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 16400
+ - uid: 16201
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -91.5,-42.5
+ pos: -102.5,-26.5
parent: 2
- type: DeviceNetwork
deviceLists:
- - 20503
+ - 428
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 16901
@@ -115907,37 +115359,37 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 17855
+ - uid: 17853
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -99.5,-30.5
+ pos: -99.5,-22.5
parent: 2
- type: DeviceNetwork
deviceLists:
- 18699
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 17878
+ - uid: 17855
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -63.5,-31.5
+ rot: 1.5707963267948966 rad
+ pos: -99.5,-30.5
parent: 2
- type: DeviceNetwork
deviceLists:
- - 12151
+ - 18699
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 17883
+ - uid: 17865
components:
- type: Transform
- pos: -99.5,-22.5
+ rot: -1.5707963267948966 rad
+ pos: -109.5,-30.5
parent: 2
- type: DeviceNetwork
deviceLists:
- - 18699
- - 20503
+ - 18723
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 17896
@@ -116073,37 +115525,39 @@ entities:
- 18698
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 18613
+ - uid: 18200
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -87.5,-40.5
+ pos: -114.5,-32.5
parent: 2
- type: DeviceNetwork
deviceLists:
- - 20503
+ - 18723
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 18621
+ - uid: 18711
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -108.5,-44.5
+ rot: 1.5707963267948966 rad
+ pos: -92.5,-49.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 20316
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 18711
+ - uid: 18760
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -92.5,-49.5
+ rot: 3.141592653589793 rad
+ pos: -85.5,-45.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18821
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -90.5,-45.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 20503
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 18852
@@ -116130,9 +115584,6 @@ entities:
rot: 3.141592653589793 rad
pos: -98.5,10.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 19805
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 18892
@@ -116173,6 +115624,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 18932
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -62.5,-23.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 18935
components:
- type: Transform
@@ -116181,6 +115640,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 18955
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -92.5,-41.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 18956
components:
- type: Transform
@@ -116205,6 +115672,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 18979
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -109.5,-45.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 18982
components:
- type: Transform
@@ -116446,57 +115921,19 @@ entities:
- 20318
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 20505
+ - uid: 20527
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -83.5,-40.5
+ pos: -82.5,-80.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 20503
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 20507
- components:
- - type: Transform
- pos: -79.5,-37.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 20831
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 20779
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -73.5,-55.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 23457
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 20808
+ - uid: 20534
components:
- type: Transform
- pos: -83.5,-46.5
+ pos: -82.5,-75.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 20503
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 20828
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -79.5,-40.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 20503
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 21363
@@ -116507,17 +115944,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 21495
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -63.5,-23.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 12151
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 22990
components:
- type: Transform
@@ -116626,6 +116052,17 @@ entities:
- 22168
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 24719
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -75.5,-55.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 9273
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 24720
components:
- type: Transform
@@ -116773,17 +116210,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 766
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -91.5,-37.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 20831
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 853
components:
- type: Transform
@@ -116844,17 +116270,6 @@ entities:
- 15581
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 4875
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -113.5,-31.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 14263
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 5330
components:
- type: Transform
@@ -116918,47 +116333,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -26.5,-66.5
parent: 2
- - uid: 6501
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -91.5,-45.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 20503
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 6502
- components:
- - type: Transform
- pos: -87.5,-42.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 20503
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 6512
- components:
- - type: Transform
- pos: -83.5,-42.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 20503
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 6514
- components:
- - type: Transform
- pos: -79.5,-42.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 20503
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 7653
components:
- type: Transform
@@ -116980,17 +116354,6 @@ entities:
- 7346
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 7843
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -83.5,-45.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 20503
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 8885
components:
- type: Transform
@@ -117017,7 +116380,13 @@ entities:
- type: DeviceNetwork
deviceLists:
- 24742
- - 20503
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9311
+ components:
+ - type: Transform
+ pos: -65.5,-63.5
+ parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- uid: 9371
@@ -117056,15 +116425,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 10170
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -103.5,10.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 19805
- uid: 10209
components:
- type: Transform
@@ -117403,6 +116763,28 @@ entities:
- 9146
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 12614
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -17.5,-54.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 8947
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12615
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -17.5,-50.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 8947
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 12639
components:
- type: Transform
@@ -117480,24 +116862,28 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 13762
+ - uid: 13838
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-54.5
+ pos: -90.5,-46.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 8947
- - uid: 13863
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14189
+ components:
+ - type: Transform
+ pos: -85.5,-46.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14195
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -19.5,-50.5
+ pos: -80.5,-41.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 8947
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 14285
components:
- type: Transform
@@ -117509,6 +116895,11 @@ entities:
- 15413
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 14506
+ components:
+ - type: Transform
+ pos: -90.5,-42.5
+ parent: 2
- uid: 14840
components:
- type: Transform
@@ -117520,6 +116911,16 @@ entities:
- 21036
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 14853
+ components:
+ - type: Transform
+ pos: -60.5,-31.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 12151
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 14864
components:
- type: Transform
@@ -117558,6 +116959,13 @@ entities:
- 15412
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 15100
+ components:
+ - type: Transform
+ pos: -103.5,10.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 15103
components:
- type: Transform
@@ -117656,20 +117064,15 @@ entities:
- 15415
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 16096
+ - uid: 16206
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -93.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 16156
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -98.5,2.5
+ pos: -109.5,-32.5
parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 18723
- type: AtmosPipeColor
color: '#990000FF'
- uid: 16293
@@ -117795,23 +117198,6 @@ entities:
- 9253
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 17492
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -108.5,-46.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 20316
- - uid: 17791
- components:
- - type: Transform
- pos: -59.5,-31.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 12151
- uid: 17856
components:
- type: Transform
@@ -117961,14 +117347,6 @@ entities:
- 18704
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 18091
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -65.5,-63.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 18116
components:
- type: Transform
@@ -118022,17 +117400,31 @@ entities:
parent: 2
- type: DeviceNetwork
deviceLists:
- - 20503
+ - 18701
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 18200
+ - uid: 18201
components:
- type: Transform
- pos: -59.5,-23.5
+ rot: 3.141592653589793 rad
+ pos: -112.5,-32.5
parent: 2
- type: DeviceNetwork
deviceLists:
- - 12151
+ - 18723
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18203
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -76.5,-57.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 9273
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 18223
components:
- type: Transform
@@ -118044,6 +117436,13 @@ entities:
- 428
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 18364
+ components:
+ - type: Transform
+ pos: -87.5,-38.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 18807
components:
- type: Transform
@@ -118094,6 +117493,13 @@ entities:
- 19282
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 18939
+ components:
+ - type: Transform
+ pos: -80.5,-38.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 18959
components:
- type: Transform
@@ -118139,6 +117545,13 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 19342
+ components:
+ - type: Transform
+ pos: -60.5,-23.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 19347
components:
- type: Transform
@@ -118146,6 +117559,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 19348
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -86.5,-42.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 19558
components:
- type: Transform
@@ -118157,6 +117578,13 @@ entities:
- 25887
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 19563
+ components:
+ - type: Transform
+ pos: -108.5,-45.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 19653
components:
- type: Transform
@@ -118301,28 +117729,6 @@ entities:
- 20318
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 20826
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -91.5,-41.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 20503
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 21006
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -87.5,-37.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 20831
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 22162
components:
- type: Transform
@@ -118356,17 +117762,6 @@ entities:
- 374
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23519
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -74.5,-57.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 23457
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 23678
components:
- type: Transform
@@ -119003,22 +118398,15 @@ entities:
- type: Transform
pos: -106.5,-45.5
parent: 2
- - uid: 754
- components:
- - type: Transform
- pos: -97.5,14.5
- parent: 2
- - uid: 778
+ - uid: 558
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -77.5,-52.5
+ pos: -111.5,-45.5
parent: 2
- - uid: 783
+ - uid: 754
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -76.5,-46.5
+ pos: -97.5,14.5
parent: 2
- uid: 813
components:
@@ -119030,34 +118418,22 @@ entities:
- type: Transform
pos: -124.5,3.5
parent: 2
- - uid: 884
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -76.5,-45.5
- parent: 2
- - uid: 912
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -79.5,-52.5
- parent: 2
- uid: 922
components:
- type: Transform
pos: -110.5,-1.5
parent: 2
- - uid: 952
- components:
- - type: Transform
- pos: -73.5,-51.5
- parent: 2
- uid: 1073
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -122.5,37.5
parent: 2
+ - uid: 1151
+ components:
+ - type: Transform
+ pos: -80.5,-43.5
+ parent: 2
- uid: 1186
components:
- type: Transform
@@ -119141,6 +118517,11 @@ entities:
- type: Transform
pos: -81.5,-17.5
parent: 2
+ - uid: 1705
+ components:
+ - type: Transform
+ pos: -61.5,-70.5
+ parent: 2
- uid: 1711
components:
- type: Transform
@@ -119218,36 +118599,16 @@ entities:
- type: Transform
pos: -106.5,-3.5
parent: 2
- - uid: 1914
- components:
- - type: Transform
- pos: -53.5,-70.5
- parent: 2
- uid: 1925
components:
- type: Transform
pos: -106.5,-4.5
parent: 2
- - uid: 1940
- components:
- - type: Transform
- pos: -52.5,-69.5
- parent: 2
- - uid: 1958
- components:
- - type: Transform
- pos: -53.5,-73.5
- parent: 2
- uid: 1971
components:
- type: Transform
pos: -111.5,-1.5
parent: 2
- - uid: 1973
- components:
- - type: Transform
- pos: -53.5,-69.5
- parent: 2
- uid: 1979
components:
- type: Transform
@@ -119273,11 +118634,6 @@ entities:
- type: Transform
pos: -93.5,-22.5
parent: 2
- - uid: 2009
- components:
- - type: Transform
- pos: -48.5,-70.5
- parent: 2
- uid: 2052
components:
- type: Transform
@@ -119288,56 +118644,11 @@ entities:
- type: Transform
pos: -95.5,-16.5
parent: 2
- - uid: 2065
- components:
- - type: Transform
- pos: -48.5,-71.5
- parent: 2
- - uid: 2132
- components:
- - type: Transform
- pos: -52.5,-74.5
- parent: 2
- - uid: 2145
- components:
- - type: Transform
- pos: -48.5,-72.5
- parent: 2
- - uid: 2148
- components:
- - type: Transform
- pos: -50.5,-74.5
- parent: 2
- - uid: 2152
- components:
- - type: Transform
- pos: -51.5,-74.5
- parent: 2
- - uid: 2153
- components:
- - type: Transform
- pos: -53.5,-74.5
- parent: 2
- - uid: 2155
- components:
- - type: Transform
- pos: -49.5,-74.5
- parent: 2
- uid: 2156
components:
- type: Transform
pos: -51.5,3.5
parent: 2
- - uid: 2161
- components:
- - type: Transform
- pos: -49.5,-69.5
- parent: 2
- - uid: 2235
- components:
- - type: Transform
- pos: -48.5,-73.5
- parent: 2
- uid: 2261
components:
- type: Transform
@@ -119374,16 +118685,46 @@ entities:
- type: Transform
pos: -106.5,-61.5
parent: 2
+ - uid: 2574
+ components:
+ - type: Transform
+ pos: -56.5,-68.5
+ parent: 2
- uid: 2593
components:
- type: Transform
pos: -106.5,-63.5
parent: 2
+ - uid: 2594
+ components:
+ - type: Transform
+ pos: -90.5,-36.5
+ parent: 2
+ - uid: 2596
+ components:
+ - type: Transform
+ pos: -78.5,-42.5
+ parent: 2
- uid: 2599
components:
- type: Transform
pos: -108.5,-61.5
parent: 2
+ - uid: 2601
+ components:
+ - type: Transform
+ pos: -78.5,-43.5
+ parent: 2
+ - uid: 2605
+ components:
+ - type: Transform
+ pos: -57.5,-68.5
+ parent: 2
+ - uid: 2610
+ components:
+ - type: Transform
+ pos: -60.5,-68.5
+ parent: 2
- uid: 2672
components:
- type: Transform
@@ -119679,27 +119020,40 @@ entities:
- type: Transform
pos: -55.5,-44.5
parent: 2
- - uid: 3745
+ - uid: 3633
components:
- type: Transform
- pos: -9.5,5.5
+ pos: -75.5,-47.5
parent: 2
- - uid: 3747
+ - uid: 3686
components:
- type: Transform
- pos: -7.5,5.5
+ pos: -56.5,-72.5
parent: 2
- - uid: 3748
+ - uid: 3699
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -69.5,-70.5
+ pos: -56.5,-70.5
parent: 2
- - uid: 3756
+ - uid: 3708
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -68.5,-71.5
+ pos: -75.5,-45.5
+ parent: 2
+ - uid: 3731
+ components:
+ - type: Transform
+ pos: -57.5,-73.5
+ parent: 2
+ - uid: 3745
+ components:
+ - type: Transform
+ pos: -9.5,5.5
+ parent: 2
+ - uid: 3747
+ components:
+ - type: Transform
+ pos: -7.5,5.5
parent: 2
- uid: 3824
components:
@@ -119771,12 +119125,6 @@ entities:
- type: Transform
pos: -33.5,-16.5
parent: 2
- - uid: 3951
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -72.5,-63.5
- parent: 2
- uid: 3955
components:
- type: Transform
@@ -119865,8 +119213,17 @@ entities:
- uid: 4089
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,-70.5
+ pos: -58.5,-68.5
+ parent: 2
+ - uid: 4090
+ components:
+ - type: Transform
+ pos: -61.5,-71.5
+ parent: 2
+ - uid: 4098
+ components:
+ - type: Transform
+ pos: -61.5,-72.5
parent: 2
- uid: 4099
components:
@@ -119933,17 +119290,25 @@ entities:
- type: Transform
pos: -83.5,24.5
parent: 2
- - uid: 4281
+ - uid: 4248
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -76.5,-51.5
+ pos: -56.5,-73.5
parent: 2
- - uid: 4317
+ - uid: 4261
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -76.5,-37.5
+ pos: -58.5,-73.5
+ parent: 2
+ - uid: 4266
+ components:
+ - type: Transform
+ pos: -59.5,-68.5
+ parent: 2
+ - uid: 4286
+ components:
+ - type: Transform
+ pos: -60.5,-73.5
parent: 2
- uid: 4342
components:
@@ -120001,12 +119366,6 @@ entities:
rot: 3.141592653589793 rad
pos: -42.5,-73.5
parent: 2
- - uid: 4424
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -76.5,-38.5
- parent: 2
- uid: 4428
components:
- type: Transform
@@ -120027,6 +119386,12 @@ entities:
- type: Transform
pos: -82.5,-6.5
parent: 2
+ - uid: 4485
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -82.5,0.5
+ parent: 2
- uid: 4491
components:
- type: Transform
@@ -120042,17 +119407,17 @@ entities:
- type: Transform
pos: -86.5,4.5
parent: 2
- - uid: 4498
+ - uid: 4502
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -77.5,-36.5
+ rot: 1.5707963267948966 rad
+ pos: -82.5,2.5
parent: 2
- - uid: 4533
+ - uid: 4503
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -76.5,-41.5
+ rot: 1.5707963267948966 rad
+ pos: -82.5,1.5
parent: 2
- uid: 4542
components:
@@ -120064,6 +119429,11 @@ entities:
- type: Transform
pos: -93.5,13.5
parent: 2
+ - uid: 4607
+ components:
+ - type: Transform
+ pos: -101.5,-23.5
+ parent: 2
- uid: 4620
components:
- type: Transform
@@ -120129,15 +119499,15 @@ entities:
- type: Transform
pos: -85.5,26.5
parent: 2
- - uid: 4820
+ - uid: 4751
components:
- type: Transform
- pos: -51.5,-69.5
+ pos: -85.5,-37.5
parent: 2
- - uid: 4876
+ - uid: 4808
components:
- type: Transform
- pos: -50.5,-69.5
+ pos: -61.5,-69.5
parent: 2
- uid: 4877
components:
@@ -120167,15 +119537,10 @@ entities:
- type: Transform
pos: -31.5,-49.5
parent: 2
- - uid: 5110
- components:
- - type: Transform
- pos: -73.5,-47.5
- parent: 2
- - uid: 5112
+ - uid: 5105
components:
- type: Transform
- pos: -73.5,-48.5
+ pos: -59.5,-73.5
parent: 2
- uid: 5162
components:
@@ -120392,6 +119757,11 @@ entities:
- type: Transform
pos: -107.5,-63.5
parent: 2
+ - uid: 5682
+ components:
+ - type: Transform
+ pos: -56.5,-69.5
+ parent: 2
- uid: 5684
components:
- type: Transform
@@ -120422,6 +119792,11 @@ entities:
- type: Transform
pos: -78.5,-22.5
parent: 2
+ - uid: 5726
+ components:
+ - type: Transform
+ pos: -78.5,-38.5
+ parent: 2
- uid: 5756
components:
- type: Transform
@@ -120624,17 +119999,71 @@ entities:
- type: Transform
pos: -125.5,-13.5
parent: 2
- - uid: 6495
+ - uid: 6485
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -90.5,-35.5
+ pos: -101.5,-26.5
+ parent: 2
+ - uid: 6487
+ components:
+ - type: Transform
+ pos: -101.5,-32.5
+ parent: 2
+ - uid: 6489
+ components:
+ - type: Transform
+ pos: -101.5,-31.5
+ parent: 2
+ - uid: 6490
+ components:
+ - type: Transform
+ pos: -101.5,-30.5
+ parent: 2
+ - uid: 6497
+ components:
+ - type: Transform
+ pos: -78.5,-46.5
+ parent: 2
+ - uid: 6498
+ components:
+ - type: Transform
+ pos: -78.5,-35.5
+ parent: 2
+ - uid: 6500
+ components:
+ - type: Transform
+ pos: -78.5,-47.5
+ parent: 2
+ - uid: 6502
+ components:
+ - type: Transform
+ pos: -78.5,-39.5
+ parent: 2
+ - uid: 6503
+ components:
+ - type: Transform
+ pos: -78.5,-48.5
+ parent: 2
+ - uid: 6508
+ components:
+ - type: Transform
+ pos: -84.5,-43.5
parent: 2
- uid: 6510
components:
- type: Transform
pos: -97.5,-26.5
parent: 2
+ - uid: 6511
+ components:
+ - type: Transform
+ pos: -101.5,-22.5
+ parent: 2
+ - uid: 6512
+ components:
+ - type: Transform
+ pos: -101.5,-24.5
+ parent: 2
- uid: 6513
components:
- type: Transform
@@ -120645,15 +120074,20 @@ entities:
- type: Transform
pos: -89.5,-34.5
parent: 2
- - uid: 6546
+ - uid: 6564
components:
- type: Transform
- pos: -100.5,-22.5
+ pos: -97.5,-30.5
parent: 2
- - uid: 6564
+ - uid: 6576
components:
- type: Transform
- pos: -97.5,-30.5
+ pos: -101.5,-28.5
+ parent: 2
+ - uid: 6578
+ components:
+ - type: Transform
+ pos: -101.5,-27.5
parent: 2
- uid: 6584
components:
@@ -120665,6 +120099,11 @@ entities:
- type: Transform
pos: -96.5,-36.5
parent: 2
+ - uid: 6661
+ components:
+ - type: Transform
+ pos: -78.5,-44.5
+ parent: 2
- uid: 6694
components:
- type: Transform
@@ -120677,11 +120116,21 @@ entities:
rot: -1.5707963267948966 rad
pos: -155.5,-44.5
parent: 2
+ - uid: 6730
+ components:
+ - type: Transform
+ pos: -85.5,-39.5
+ parent: 2
- uid: 6744
components:
- type: Transform
pos: -94.5,-46.5
parent: 2
+ - uid: 6745
+ components:
+ - type: Transform
+ pos: -78.5,-45.5
+ parent: 2
- uid: 6752
components:
- type: Transform
@@ -120692,11 +120141,26 @@ entities:
- type: Transform
pos: -78.5,-20.5
parent: 2
+ - uid: 6773
+ components:
+ - type: Transform
+ pos: -78.5,-49.5
+ parent: 2
- uid: 6776
components:
- type: Transform
pos: -101.5,-44.5
parent: 2
+ - uid: 6793
+ components:
+ - type: Transform
+ pos: -78.5,-36.5
+ parent: 2
+ - uid: 6795
+ components:
+ - type: Transform
+ pos: -78.5,-40.5
+ parent: 2
- uid: 6801
components:
- type: Transform
@@ -120707,11 +120171,21 @@ entities:
- type: Transform
pos: -84.5,-30.5
parent: 2
+ - uid: 6808
+ components:
+ - type: Transform
+ pos: -82.5,-40.5
+ parent: 2
- uid: 6809
components:
- type: Transform
pos: -80.5,-30.5
parent: 2
+ - uid: 6819
+ components:
+ - type: Transform
+ pos: -78.5,-41.5
+ parent: 2
- uid: 6821
components:
- type: Transform
@@ -120722,6 +120196,11 @@ entities:
- type: Transform
pos: -78.5,-23.5
parent: 2
+ - uid: 6826
+ components:
+ - type: Transform
+ pos: -78.5,-50.5
+ parent: 2
- uid: 6844
components:
- type: Transform
@@ -120744,6 +120223,11 @@ entities:
- type: Transform
pos: -83.5,-30.5
parent: 2
+ - uid: 6886
+ components:
+ - type: Transform
+ pos: -78.5,-37.5
+ parent: 2
- uid: 6894
components:
- type: Transform
@@ -120781,6 +120265,11 @@ entities:
- type: Transform
pos: -124.5,7.5
parent: 2
+ - uid: 7033
+ components:
+ - type: Transform
+ pos: -92.5,-36.5
+ parent: 2
- uid: 7146
components:
- type: Transform
@@ -120912,6 +120401,11 @@ entities:
- type: Transform
pos: -90.5,-52.5
parent: 2
+ - uid: 7238
+ components:
+ - type: Transform
+ pos: -82.5,-39.5
+ parent: 2
- uid: 7268
components:
- type: Transform
@@ -120985,6 +120479,11 @@ entities:
rot: 1.5707963267948966 rad
pos: -127.5,-33.5
parent: 2
+ - uid: 7563
+ components:
+ - type: Transform
+ pos: -75.5,-63.5
+ parent: 2
- uid: 7567
components:
- type: Transform
@@ -121496,6 +120995,11 @@ entities:
- type: Transform
pos: -81.5,31.5
parent: 2
+ - uid: 9126
+ components:
+ - type: Transform
+ pos: -78.5,-52.5
+ parent: 2
- uid: 9127
components:
- type: Transform
@@ -121581,21 +121085,30 @@ entities:
- type: Transform
pos: -29.5,18.5
parent: 2
- - uid: 9399
+ - uid: 9458
components:
- type: Transform
- pos: -92.5,-43.5
+ pos: -97.5,-28.5
parent: 2
- - uid: 9400
+ - uid: 9545
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -77.5,-37.5
+ pos: -101.5,-39.5
parent: 2
- - uid: 9545
+ - uid: 9636
components:
- type: Transform
- pos: -101.5,-39.5
+ pos: -83.5,-43.5
+ parent: 2
+ - uid: 9639
+ components:
+ - type: Transform
+ pos: -97.5,-24.5
+ parent: 2
+ - uid: 9933
+ components:
+ - type: Transform
+ pos: -74.5,-63.5
parent: 2
- uid: 9988
components:
@@ -121637,12 +121150,6 @@ entities:
- type: Transform
pos: -93.5,39.5
parent: 2
- - uid: 10204
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -78.5,-35.5
- parent: 2
- uid: 10376
components:
- type: Transform
@@ -121869,6 +121376,11 @@ entities:
- type: Transform
pos: -27.5,13.5
parent: 2
+ - uid: 11060
+ components:
+ - type: Transform
+ pos: -97.5,-32.5
+ parent: 2
- uid: 11079
components:
- type: Transform
@@ -121917,6 +121429,11 @@ entities:
- type: Transform
pos: -101.5,-46.5
parent: 2
+ - uid: 11771
+ components:
+ - type: Transform
+ pos: -17.5,-51.5
+ parent: 2
- uid: 11772
components:
- type: Transform
@@ -121974,6 +121491,11 @@ entities:
- type: Transform
pos: -14.5,-70.5
parent: 2
+ - uid: 12851
+ components:
+ - type: Transform
+ pos: -79.5,-52.5
+ parent: 2
- uid: 12852
components:
- type: Transform
@@ -122018,7 +121540,7 @@ entities:
- uid: 13570
components:
- type: Transform
- pos: -90.5,-43.5
+ pos: -78.5,-51.5
parent: 2
- uid: 13584
components:
@@ -122030,12 +121552,6 @@ entities:
- type: Transform
pos: -138.5,-26.5
parent: 2
- - uid: 13729
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -104.5,-21.5
- parent: 2
- uid: 13787
components:
- type: Transform
@@ -122304,17 +121820,21 @@ entities:
rot: -1.5707963267948966 rad
pos: -148.5,-51.5
parent: 2
- - uid: 14202
+ - uid: 14174
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -101.5,-21.5
+ pos: -75.5,-39.5
parent: 2
- uid: 14487
components:
- type: Transform
pos: -87.5,-52.5
parent: 2
+ - uid: 14489
+ components:
+ - type: Transform
+ pos: -81.5,-43.5
+ parent: 2
- uid: 14569
components:
- type: Transform
@@ -122351,6 +121871,16 @@ entities:
rot: 3.141592653589793 rad
pos: -93.5,26.5
parent: 2
+ - uid: 14982
+ components:
+ - type: Transform
+ pos: -75.5,-51.5
+ parent: 2
+ - uid: 15004
+ components:
+ - type: Transform
+ pos: -75.5,-46.5
+ parent: 2
- uid: 15302
components:
- type: Transform
@@ -122377,46 +121907,20 @@ entities:
- type: Transform
pos: -14.5,0.5
parent: 2
- - uid: 16011
- components:
- - type: Transform
- pos: -104.5,-0.5
- parent: 2
- - uid: 16014
- components:
- - type: Transform
- pos: -101.5,-0.5
- parent: 2
- uid: 16295
components:
- type: Transform
pos: -150.5,-19.5
parent: 2
- - uid: 16333
- components:
- - type: Transform
- pos: -73.5,-42.5
- parent: 2
- - uid: 16420
- components:
- - type: Transform
- pos: -100.5,-32.5
- parent: 2
- - uid: 16441
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -77.5,-35.5
- parent: 2
- - uid: 16453
+ - uid: 16342
components:
- type: Transform
- pos: -100.5,-30.5
+ pos: -82.5,-82.5
parent: 2
- - uid: 16702
+ - uid: 16405
components:
- type: Transform
- pos: -100.5,-31.5
+ pos: -74.5,-56.5
parent: 2
- uid: 16808
components:
@@ -122428,27 +121932,12 @@ entities:
- type: Transform
pos: -146.5,-19.5
parent: 2
- - uid: 16845
- components:
- - type: Transform
- pos: -100.5,-27.5
- parent: 2
- uid: 16869
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -125.5,-59.5
parent: 2
- - uid: 16913
- components:
- - type: Transform
- pos: -100.5,-26.5
- parent: 2
- - uid: 16935
- components:
- - type: Transform
- pos: -100.5,-28.5
- parent: 2
- uid: 16955
components:
- type: Transform
@@ -122484,6 +121973,31 @@ entities:
- type: Transform
pos: -128.5,-7.5
parent: 2
+ - uid: 17043
+ components:
+ - type: Transform
+ pos: -68.5,-69.5
+ parent: 2
+ - uid: 17045
+ components:
+ - type: Transform
+ pos: -66.5,-70.5
+ parent: 2
+ - uid: 17052
+ components:
+ - type: Transform
+ pos: -67.5,-70.5
+ parent: 2
+ - uid: 17054
+ components:
+ - type: Transform
+ pos: -68.5,-70.5
+ parent: 2
+ - uid: 17060
+ components:
+ - type: Transform
+ pos: -66.5,-69.5
+ parent: 2
- uid: 17065
components:
- type: Transform
@@ -122506,6 +122020,11 @@ entities:
- type: Transform
pos: -84.5,-0.5
parent: 2
+ - uid: 17124
+ components:
+ - type: Transform
+ pos: -69.5,-64.5
+ parent: 2
- uid: 17136
components:
- type: Transform
@@ -122748,27 +122267,11 @@ entities:
rot: 3.141592653589793 rad
pos: -114.5,-7.5
parent: 2
- - uid: 18093
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -89.5,-38.5
- parent: 2
- - uid: 18098
- components:
- - type: Transform
- pos: -100.5,-23.5
- parent: 2
- uid: 18115
components:
- type: Transform
pos: -36.5,-45.5
parent: 2
- - uid: 18135
- components:
- - type: Transform
- pos: -100.5,-24.5
- parent: 2
- uid: 18261
components:
- type: Transform
@@ -122781,35 +122284,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -126.5,-59.5
parent: 2
- - uid: 18614
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -76.5,-52.5
- parent: 2
- - uid: 18631
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -76.5,-47.5
- parent: 2
- - uid: 18632
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -76.5,-42.5
- parent: 2
- - uid: 18633
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -76.5,-48.5
- parent: 2
- - uid: 18779
- components:
- - type: Transform
- pos: -73.5,-49.5
- parent: 2
- uid: 18812
components:
- type: Transform
@@ -122825,12 +122299,6 @@ entities:
- type: Transform
pos: -156.5,-50.5
parent: 2
- - uid: 18954
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -76.5,-43.5
- parent: 2
- uid: 18976
components:
- type: Transform
@@ -122879,6 +122347,11 @@ entities:
- type: Transform
pos: -157.5,-48.5
parent: 2
+ - uid: 19896
+ components:
+ - type: Transform
+ pos: -69.5,-34.5
+ parent: 2
- uid: 19911
components:
- type: Transform
@@ -122973,12 +122446,6 @@ entities:
- type: Transform
pos: -141.5,-8.5
parent: 2
- - uid: 20289
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -69.5,-71.5
- parent: 2
- uid: 20313
components:
- type: Transform
@@ -123089,33 +122556,10 @@ entities:
- type: Transform
pos: -104.5,37.5
parent: 2
- - uid: 20538
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -105.5,-36.5
- parent: 2
- - uid: 20540
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -102.5,-36.5
- parent: 2
- - uid: 20730
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -92.5,-35.5
- parent: 2
- - uid: 20781
- components:
- - type: Transform
- pos: -73.5,-40.5
- parent: 2
- - uid: 20784
+ - uid: 20736
components:
- type: Transform
- pos: -73.5,-43.5
+ pos: -71.5,-66.5
parent: 2
- uid: 20937
components:
@@ -123362,12 +122806,6 @@ entities:
- type: Transform
pos: -89.5,-70.5
parent: 2
- - uid: 22163
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,-71.5
- parent: 2
- uid: 22195
components:
- type: Transform
@@ -123498,11 +122936,6 @@ entities:
- type: Transform
pos: -118.5,-78.5
parent: 2
- - uid: 23113
- components:
- - type: Transform
- pos: -72.5,-56.5
- parent: 2
- uid: 23144
components:
- type: Transform
@@ -123527,57 +122960,11 @@ entities:
rot: 3.141592653589793 rad
pos: -142.5,0.5
parent: 2
- - uid: 23228
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -76.5,-49.5
- parent: 2
- - uid: 23234
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -78.5,-52.5
- parent: 2
- - uid: 23236
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -76.5,-39.5
- parent: 2
- - uid: 23237
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -76.5,-44.5
- parent: 2
- - uid: 23238
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -76.5,-40.5
- parent: 2
- - uid: 23242
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-28.5
- parent: 2
- - uid: 23269
+ - uid: 23294
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -76.5,-50.5
- parent: 2
- - uid: 23275
- components:
- - type: Transform
- pos: -73.5,-50.5
- parent: 2
- - uid: 23276
- components:
- - type: Transform
- pos: -73.5,-41.5
+ pos: -74.5,-60.5
parent: 2
- uid: 23331
components:
@@ -123621,6 +123008,12 @@ entities:
- type: Transform
pos: -121.5,24.5
parent: 2
+ - uid: 23463
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -73.5,-60.5
+ parent: 2
- uid: 23501
components:
- type: Transform
@@ -123644,6 +123037,12 @@ entities:
rot: 3.141592653589793 rad
pos: -69.5,-17.5
parent: 2
+ - uid: 23663
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -73.5,-59.5
+ parent: 2
- uid: 23808
components:
- type: Transform
@@ -123713,16 +123112,17 @@ entities:
rot: 3.141592653589793 rad
pos: -102.5,25.5
parent: 2
- - uid: 23946
+ - uid: 23939
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-22.5
+ rot: 3.141592653589793 rad
+ pos: -78.5,-34.5
parent: 2
- - uid: 24019
+ - uid: 23946
components:
- type: Transform
- pos: -39.5,-16.5
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-22.5
parent: 2
- uid: 24186
components:
@@ -124823,11 +124223,15 @@ entities:
rot: 1.5707963267948966 rad
pos: -11.5,-63.5
parent: 2
- - uid: 25987
+ - uid: 25908
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -110.5,-45.5
+ pos: -75.5,-40.5
+ parent: 2
+ - uid: 25910
+ components:
+ - type: Transform
+ pos: -75.5,-41.5
parent: 2
- uid: 26062
components:
@@ -125312,11 +124716,6 @@ entities:
- type: Transform
pos: -63.51709,7.5955453
parent: 2
- - uid: 19349
- components:
- - type: Transform
- pos: -3.4822798,-6.4395247
- parent: 2
- uid: 22311
components:
- type: Transform
@@ -125327,12 +124726,12 @@ entities:
- uid: 20328
components:
- type: Transform
- pos: -95.63546,32.26982
+ pos: -95.65996,35.329193
parent: 2
- uid: 20342
components:
- type: Transform
- pos: -95.38546,32.285446
+ pos: -95.45683,35.31357
parent: 2
- proto: HandheldHealthAnalyzer
entities:
@@ -125353,23 +124752,32 @@ entities:
- type: Transform
pos: -122.6231,-16.413368
parent: 2
+ - uid: 15999
+ components:
+ - type: Transform
+ pos: -109.499535,-33.66865
+ parent: 2
- proto: HandLabeler
entities:
- - uid: 20727
+ - uid: 16016
components:
- type: Transform
- rot: 6.283185307179586 rad
- pos: -97.65116,-1.4444771
+ pos: -109.499535,-33.715527
parent: 2
- uid: 22273
components:
- type: Transform
pos: -52.29675,-7.5648193
parent: 2
+ - uid: 22291
+ components:
+ - type: Transform
+ pos: -39.483585,-26.581343
+ parent: 2
- uid: 22292
components:
- type: Transform
- pos: -36.50671,-17.824657
+ pos: -37.506813,-16.451693
parent: 2
- uid: 22293
components:
@@ -125381,11 +124789,6 @@ entities:
- type: Transform
pos: -37.600494,-30.548458
parent: 2
- - uid: 23930
- components:
- - type: Transform
- pos: -38.38171,-26.499212
- parent: 2
- uid: 25704
components:
- type: Transform
@@ -125413,10 +124816,10 @@ entities:
parent: 2
- proto: HarmonicaInstrument
entities:
- - uid: 20279
+ - uid: 6796
components:
- type: Transform
- pos: -89.43986,-46.334167
+ pos: -89.56172,-46.353573
parent: 2
- proto: HeatExchanger
entities:
@@ -125482,11 +124885,6 @@ entities:
parent: 2
- proto: HighSecCommandLocked
entities:
- - uid: 9403
- components:
- - type: Transform
- pos: -114.5,-31.5
- parent: 2
- uid: 11189
components:
- type: Transform
@@ -125502,10 +124900,10 @@ entities:
- - ResearchDirector
- proto: HighSecDoor
entities:
- - uid: 321
+ - uid: 6107
components:
- type: Transform
- pos: -38.5,-68.5
+ pos: -38.5,-70.5
parent: 2
- uid: 25923
components:
@@ -125517,7 +124915,7 @@ entities:
- uid: 8267
components:
- type: Transform
- pos: -8.4636,-18.473902
+ pos: -8.516942,-18.422981
parent: 2
- uid: 15981
components:
@@ -125546,33 +124944,26 @@ entities:
- type: Transform
pos: -120.5,-72.5
parent: 2
-- proto: HolopadCargoBayLongRange
+- proto: HolopadCargoBay
entities:
- - uid: 20299
+ - uid: 24533
components:
- type: Transform
pos: -89.5,24.5
parent: 2
- proto: HolopadCargoFront
entities:
- - uid: 20509
- components:
- - type: Transform
- pos: -100.5,14.5
- parent: 2
-- proto: HolopadCargoSalvageBay
- entities:
- - uid: 20454
+ - uid: 24532
components:
- type: Transform
- pos: -93.5,34.5
+ pos: -100.5,15.5
parent: 2
- proto: HolopadCommandBridgeLongRange
entities:
- - uid: 21422
+ - uid: 24542
components:
- type: Transform
- pos: -61.5,6.5
+ pos: -61.5,5.5
parent: 2
- proto: HolopadCommandCaptain
entities:
@@ -125632,10 +125023,10 @@ entities:
parent: 2
- proto: HolopadEngineeringAtmosFront
entities:
- - uid: 24318
+ - uid: 24529
components:
- type: Transform
- pos: -113.5,-4.5
+ pos: -113.5,-5.5
parent: 2
- proto: HolopadEngineeringAtmosMain
entities:
@@ -125658,13 +125049,6 @@ entities:
- type: Transform
pos: -113.5,-16.5
parent: 2
-- proto: HolopadEngineeringTechVault
- entities:
- - uid: 25905
- components:
- - type: Transform
- pos: -111.5,-30.5
- parent: 2
- proto: HolopadEngineeringTelecoms
entities:
- uid: 20300
@@ -125679,13 +125063,6 @@ entities:
- type: Transform
pos: -34.5,15.5
parent: 2
-- proto: HolopadGeneralCryosleep
- entities:
- - uid: 14813
- components:
- - type: Transform
- pos: -71.5,-20.5
- parent: 2
- proto: HolopadGeneralEvac
entities:
- uid: 24548
@@ -125693,13 +125070,6 @@ entities:
- type: Transform
pos: -11.5,-13.5
parent: 2
-- proto: HolopadGeneralEVAStorage
- entities:
- - uid: 6711
- components:
- - type: Transform
- pos: -34.5,-5.5
- parent: 2
- proto: HolopadGeneralLounge
entities:
- uid: 24553
@@ -125707,20 +125077,6 @@ entities:
- type: Transform
pos: -64.5,-54.5
parent: 2
-- proto: HolopadGeneralTheater
- entities:
- - uid: 25903
- components:
- - type: Transform
- pos: -53.5,-36.5
- parent: 2
-- proto: HolopadGeneralTools
- entities:
- - uid: 23278
- components:
- - type: Transform
- pos: -23.5,-2.5
- parent: 2
- proto: HolopadMedicalChemistry
entities:
- uid: 25618
@@ -125728,13 +125084,6 @@ entities:
- type: Transform
pos: -38.5,-22.5
parent: 2
-- proto: HolopadMedicalCryopods
- entities:
- - uid: 20523
- components:
- - type: Transform
- pos: -24.5,-31.5
- parent: 2
- proto: HolopadMedicalFront
entities:
- uid: 24544
@@ -125756,34 +125105,6 @@ entities:
- type: Transform
pos: -24.5,-24.5
parent: 2
-- proto: HolopadMedicalSurgery
- entities:
- - uid: 6710
- components:
- - type: Transform
- pos: -18.5,-37.5
- parent: 2
-- proto: HolopadScienceAnomaly
- entities:
- - uid: 6773
- components:
- - type: Transform
- pos: -127.5,-38.5
- parent: 2
-- proto: HolopadScienceArtifact
- entities:
- - uid: 24319
- components:
- - type: Transform
- pos: -144.5,-45.5
- parent: 2
-- proto: HolopadScienceFront
- entities:
- - uid: 17198
- components:
- - type: Transform
- pos: -108.5,-45.5
- parent: 2
- proto: HolopadScienceRnd
entities:
- uid: 24524
@@ -125828,10 +125149,10 @@ entities:
parent: 2
- proto: HolopadSecurityPerma
entities:
- - uid: 16421
+ - uid: 17742
components:
- type: Transform
- pos: -85.5,-45.5
+ pos: -82.5,-41.5
parent: 2
- proto: HolopadSecurityWarden
entities:
@@ -125847,54 +125168,19 @@ entities:
- type: Transform
pos: -68.5,-31.5
parent: 2
-- proto: HolopadServiceBotany
- entities:
- - uid: 6777
- components:
- - type: Transform
- pos: -52.5,-22.5
- parent: 2
- proto: HolopadServiceChapel
entities:
- - uid: 25904
- components:
- - type: Transform
- pos: -50.5,-45.5
- parent: 2
-- proto: HolopadServiceClown
- entities:
- - uid: 16732
- components:
- - type: Transform
- pos: -115.5,28.5
- parent: 2
-- proto: HolopadServiceJanitor
- entities:
- - uid: 23277
- components:
- - type: Transform
- pos: -18.5,-4.5
- parent: 2
-- proto: HolopadServiceKitchen
- entities:
- - uid: 14262
- components:
- - type: Transform
- pos: -54.5,-31.5
- parent: 2
-- proto: HolopadServiceLibrary
- entities:
- - uid: 6774
+ - uid: 26098
components:
- type: Transform
- pos: -50.5,-53.5
+ pos: -47.5,-45.5
parent: 2
- proto: HolopadServiceNewsroom
entities:
- - uid: 6120
+ - uid: 17621
components:
- type: Transform
- pos: -93.5,1.5
+ pos: -112.5,-30.5
parent: 2
- proto: HospitalCurtainsOpen
entities:
@@ -126011,6 +125297,11 @@ entities:
- type: Transform
pos: -19.5,-51.5
parent: 2
+ - uid: 24337
+ components:
+ - type: Transform
+ pos: -17.5,-51.5
+ parent: 2
- uid: 24338
components:
- type: Transform
@@ -126018,56 +125309,50 @@ entities:
parent: 2
- proto: hydroponicsSoil
entities:
- - uid: 15264
+ - uid: 6777
components:
- type: Transform
- pos: -51.5,-18.5
+ pos: -84.5,-50.5
parent: 2
- - uid: 16332
+ - uid: 7115
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -84.5,-48.5
+ pos: -86.5,-50.5
parent: 2
- - uid: 17783
+ - uid: 7122
components:
- type: Transform
- pos: -49.5,-21.5
+ pos: -85.5,-50.5
parent: 2
- - uid: 18647
+ - uid: 9633
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -83.5,-48.5
+ pos: -86.5,-48.5
parent: 2
- - uid: 19096
+ - uid: 9634
components:
- type: Transform
- pos: -49.5,-20.5
+ pos: -85.5,-48.5
parent: 2
- - uid: 19353
+ - uid: 9635
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -82.5,-48.5
+ pos: -84.5,-48.5
parent: 2
- - uid: 19487
+ - uid: 15264
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -84.5,-50.5
+ pos: -51.5,-18.5
parent: 2
- - uid: 19559
+ - uid: 17783
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -83.5,-50.5
+ pos: -49.5,-21.5
parent: 2
- - uid: 19968
+ - uid: 19096
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -82.5,-50.5
+ pos: -49.5,-20.5
parent: 2
- uid: 21720
components:
@@ -126076,6 +125361,11 @@ entities:
parent: 2
- proto: HydroponicsToolMiniHoe
entities:
+ - uid: 6833
+ components:
+ - type: Transform
+ pos: -85.54748,-49.773968
+ parent: 2
- uid: 11186
components:
- type: Transform
@@ -126083,6 +125373,11 @@ entities:
parent: 2
- proto: HydroponicsToolSpade
entities:
+ - uid: 6738
+ components:
+ - type: Transform
+ pos: -85.46935,-49.695843
+ parent: 2
- uid: 11187
components:
- type: Transform
@@ -126145,13 +125440,6 @@ entities:
- type: Transform
pos: -51.5,-23.5
parent: 2
-- proto: IDComputerCircuitboard
- entities:
- - uid: 4106
- components:
- - type: Transform
- pos: -116.53713,-31.611862
- parent: 2
- proto: Igniter
entities:
- uid: 5666
@@ -126250,16 +125538,16 @@ entities:
parent: 2
- proto: IntercomCommon
entities:
- - uid: 6494
+ - uid: 6709
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -89.5,-41.5
+ pos: -82.5,-40.5
parent: 2
- - uid: 6840
+ - uid: 9433
components:
- type: Transform
- pos: -89.5,-43.5
+ rot: -1.5707963267948966 rad
+ pos: -88.5,-46.5
parent: 2
- uid: 16529
components:
@@ -126334,18 +125622,6 @@ entities:
parent: 2
- proto: IntercomMedical
entities:
- - uid: 13759
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -36.5,-34.5
- parent: 2
- - uid: 13761
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,-51.5
- parent: 2
- uid: 17025
components:
- type: Transform
@@ -126375,6 +125651,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -20.5,-43.5
parent: 2
+ - uid: 25848
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -41.5,-29.5
+ parent: 2
- proto: IntercomScience
entities:
- uid: 12734
@@ -126579,18 +125861,13 @@ entities:
parent: 2
- proto: Jukebox
entities:
- - uid: 20510
+ - uid: 24445
components:
- type: Transform
- pos: -71.5,-40.5
+ pos: -73.5,-39.5
parent: 2
- proto: KitchenElectricGrill
entities:
- - uid: 24356
- components:
- - type: Transform
- pos: -132.5,-28.5
- parent: 2
- uid: 25615
components:
- type: Transform
@@ -126650,10 +125927,10 @@ entities:
- type: Transform
pos: -136.5,26.5
parent: 2
- - uid: 17831
+ - uid: 17824
components:
- type: Transform
- pos: -82.5,-47.5
+ pos: -84.5,-44.5
parent: 2
- uid: 25616
components:
@@ -126728,15 +126005,15 @@ entities:
- type: Transform
pos: -46.448536,-4.0864625
parent: 2
- - uid: 13267
+ - uid: 9203
components:
- type: Transform
- pos: -35.50149,-40.289227
+ pos: -78.498375,-29.35603
parent: 2
- - uid: 18716
+ - uid: 13267
components:
- type: Transform
- pos: -78.463585,-33.22606
+ pos: -35.50149,-40.289227
parent: 2
- proto: LampInterrogator
entities:
@@ -126839,8 +126116,8 @@ entities:
parent: 2
- type: DeviceLinkSource
linkedPorts:
- 4662:
- - Pressed: Trigger
+ 9290:
+ - Pressed: Toggle
- proto: LockableButtonEngineering
entities:
- uid: 5991
@@ -126884,16 +126161,6 @@ entities:
baseName: lockable button
- proto: LockableButtonMaintenance
entities:
- - uid: 7242
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -39.5,-69.5
- parent: 2
- - type: DeviceLinkSource
- linkedPorts:
- 20188:
- - Pressed: Toggle
- uid: 8824
components:
- type: Transform
@@ -127073,18 +126340,6 @@ entities:
- type: Transform
pos: -24.5,-57.5
parent: 2
-- proto: LockerEngineerFilled
- entities:
- - uid: 15239
- components:
- - type: Transform
- pos: -136.5,-9.5
- parent: 2
- - uid: 15240
- components:
- - type: Transform
- pos: -136.5,-11.5
- parent: 2
- proto: LockerEngineerFilledHardsuit
entities:
- uid: 7348
@@ -127114,35 +126369,30 @@ entities:
parent: 2
- proto: LockerEvidence
entities:
- - uid: 8375
- components:
- - type: Transform
- pos: -96.5,-32.5
- parent: 2
- - uid: 8887
+ - uid: 6550
components:
- type: Transform
- pos: -96.5,-24.5
+ pos: -93.5,-39.5
parent: 2
- - uid: 9641
+ - uid: 7032
components:
- type: Transform
- pos: -96.5,-28.5
+ pos: -93.5,-37.5
parent: 2
- - uid: 11097
+ - uid: 8375
components:
- type: Transform
- pos: -88.5,-38.5
+ pos: -96.5,-32.5
parent: 2
- - uid: 17009
+ - uid: 8887
components:
- type: Transform
- pos: -80.5,-38.5
+ pos: -96.5,-24.5
parent: 2
- - uid: 23314
+ - uid: 9641
components:
- type: Transform
- pos: -84.5,-38.5
+ pos: -96.5,-28.5
parent: 2
- proto: LockerFreezer
entities:
@@ -127168,15 +126418,15 @@ entities:
- type: Transform
pos: -136.5,28.5
parent: 2
- - uid: 19888
+ - uid: 10848
components:
- type: Transform
- pos: -18.5,19.5
+ pos: -86.5,-44.5
parent: 2
- - uid: 20775
+ - uid: 19888
components:
- type: Transform
- pos: -84.5,-47.5
+ pos: -18.5,19.5
parent: 2
- uid: 21062
components:
@@ -127230,10 +126480,10 @@ entities:
parent: 2
- proto: LockerHeadOfSecurityFilled
entities:
- - uid: 14766
+ - uid: 23671
components:
- type: Transform
- pos: -78.5,-29.5
+ pos: -76.5,-32.5
parent: 2
- proto: LockerMedicalFilled
entities:
@@ -127279,11 +126529,6 @@ entities:
- type: Transform
pos: -35.5,-56.5
parent: 2
- - uid: 22810
- components:
- - type: Transform
- pos: -17.5,-29.5
- parent: 2
- proto: LockerParamedicFilled
entities:
- uid: 3979
@@ -127376,35 +126621,6 @@ entities:
- type: Transform
pos: -26.5,4.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:
- - 11630
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- proto: LockerSecurityFilled
entities:
- uid: 6658
@@ -127452,38 +126668,6 @@ entities:
- type: Transform
pos: -85.5,-27.5
parent: 2
-- proto: LockerSyndicatePersonal
- entities:
- - uid: 2411
- components:
- - type: MetaData
- desc: Everything about this closet is illegal - not just the contents, the closet itself is also illicit contraband!
- name: syndicate closet
- - type: Transform
- pos: -15.5,16.5
- parent: 2
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 2504
- - 2501
- - 2493
- - 2480
- - 2432
- - 2423
- - 2415
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - type: Contraband
- allowedJobs: []
- allowedDepartments:
- - Security
- severity: Syndicate
- proto: LockerWardenFilled
entities:
- uid: 3888
@@ -127491,182 +126675,8 @@ entities:
- type: Transform
pos: -86.5,-22.5
parent: 2
-- proto: LockerWeldingSuppliesFilled
- entities:
- - uid: 13773
- components:
- - type: Transform
- pos: -60.5,-64.5
- parent: 2
-- proto: LogicGateOr
- entities:
- - uid: 17089
- components:
- - type: Transform
- anchored: True
- pos: -29.5,25.5
- parent: 2
- - type: DeviceLinkSink
- invokeCounter: 2
- - type: DeviceLinkSource
- linkedPorts:
- 9280:
- - Output: DoorBolt
- - type: Physics
- canCollide: False
- bodyType: Static
- - uid: 22370
- components:
- - type: Transform
- anchored: True
- pos: -4.5,-36.5
- parent: 2
- - type: DeviceLinkSink
- invokeCounter: 2
- - type: DeviceLinkSource
- linkedPorts:
- 8713:
- - Output: DoorBolt
- - type: Physics
- canCollide: False
- bodyType: Static
- proto: LogicGateXor
entities:
- - uid: 8950
- components:
- - type: Transform
- anchored: True
- pos: 1.5,-18.5
- parent: 2
- - type: DeviceLinkSink
- invokeCounter: 1
- - type: DeviceLinkSource
- linkedPorts:
- 1898:
- - Output: DoorBolt
- - type: Physics
- canCollide: False
- bodyType: Static
- - uid: 8961
- components:
- - type: Transform
- anchored: True
- pos: -82.5,18.5
- parent: 2
- - type: DeviceLinkSink
- invokeCounter: 2
- - type: DeviceLinkSource
- linkedPorts:
- 10565:
- - Output: DoorBolt
- - type: Physics
- canCollide: False
- bodyType: Static
- - uid: 12421
- components:
- - type: Transform
- anchored: True
- pos: -82.5,20.5
- parent: 2
- - type: DeviceLinkSink
- invokeCounter: 1
- - type: DeviceLinkSource
- linkedPorts:
- 10566:
- - Output: DoorBolt
- - type: Physics
- canCollide: False
- bodyType: Static
- - uid: 13489
- components:
- - type: Transform
- anchored: True
- pos: 1.5,-16.5
- parent: 2
- - type: DeviceLinkSink
- invokeCounter: 1
- - type: DeviceLinkSource
- linkedPorts:
- 8300:
- - Output: DoorBolt
- - type: Physics
- canCollide: False
- bodyType: Static
- - uid: 16903
- components:
- - type: Transform
- anchored: True
- pos: -38.5,19.5
- parent: 2
- - type: DeviceLinkSink
- invokeCounter: 1
- - type: DeviceLinkSource
- linkedPorts:
- 115:
- - Output: DoorBolt
- - type: Physics
- canCollide: False
- bodyType: Static
- - uid: 19502
- components:
- - type: Transform
- anchored: True
- pos: -30.5,25.5
- parent: 2
- - type: DeviceLinkSink
- invokeCounter: 1
- - type: DeviceLinkSource
- linkedPorts:
- 17089:
- - Output: InputA
- - type: Physics
- canCollide: False
- bodyType: Static
- - uid: 19503
- components:
- - type: Transform
- anchored: True
- pos: -28.5,25.5
- parent: 2
- - type: DeviceLinkSink
- invokeCounter: 1
- - type: DeviceLinkSource
- linkedPorts:
- 17089:
- - Output: InputB
- - type: Physics
- canCollide: False
- bodyType: Static
- - uid: 22371
- components:
- - type: Transform
- anchored: True
- pos: -4.5,-35.5
- parent: 2
- - type: DeviceLinkSink
- invokeCounter: 1
- - type: DeviceLinkSource
- linkedPorts:
- 22370:
- - Output: InputA
- - type: Physics
- canCollide: False
- bodyType: Static
- - uid: 22372
- components:
- - type: Transform
- anchored: True
- pos: -4.5,-37.5
- parent: 2
- - type: DeviceLinkSink
- invokeCounter: 1
- - type: DeviceLinkSource
- linkedPorts:
- 22370:
- - Output: InputB
- - type: Physics
- canCollide: False
- bodyType: Static
- uid: 24217
components:
- type: Transform
@@ -127682,51 +126692,6 @@ entities:
- type: Physics
canCollide: False
bodyType: Static
- - uid: 26237
- components:
- - type: Transform
- anchored: True
- pos: 1.5,-8.5
- parent: 2
- - type: DeviceLinkSink
- invokeCounter: 1
- - type: DeviceLinkSource
- linkedPorts:
- 1880:
- - Output: DoorBolt
- - type: Physics
- canCollide: False
- bodyType: Static
- - uid: 26238
- components:
- - type: Transform
- anchored: True
- pos: 1.5,-10.5
- parent: 2
- - type: DeviceLinkSink
- invokeCounter: 1
- - type: DeviceLinkSource
- linkedPorts:
- 8301:
- - Output: DoorBolt
- - type: Physics
- canCollide: False
- bodyType: Static
- - uid: 26239
- components:
- - type: Transform
- anchored: True
- pos: -38.5,12.5
- parent: 2
- - type: DeviceLinkSink
- invokeCounter: 1
- - type: DeviceLinkSource
- linkedPorts:
- 332:
- - Output: DoorBolt
- - type: Physics
- canCollide: False
- bodyType: Static
- proto: LootSpawnerMaterialsSurplus
entities:
- uid: 13221
@@ -127903,12 +126868,12 @@ entities:
- uid: 8276
components:
- type: Transform
- pos: -77.744835,-33.616684
+ pos: -78.560875,-30.73103
parent: 2
- uid: 24471
components:
- type: Transform
- pos: -77.369835,-33.429184
+ pos: -78.373375,-30.934155
parent: 2
- proto: MailingUnit
entities:
@@ -127982,16 +126947,11 @@ entities:
- type: Transform
pos: -93.5,-25.5
parent: 2
- - uid: 23233
+ - uid: 25551
components:
- type: Transform
pos: -103.5,13.5
parent: 2
- - type: MailingUnit
- tag: Cargo
- - type: Configuration
- config:
- tag: Cargo
- proto: MaintenanceFluffSpawner
entities:
- uid: 20643
@@ -128048,6 +127008,11 @@ entities:
- type: Transform
pos: -30.5,-64.5
parent: 2
+ - uid: 21655
+ components:
+ - type: Transform
+ pos: -30.5,-66.5
+ parent: 2
- proto: MaintenanceWeaponSpawner
entities:
- uid: 20630
@@ -128137,11 +127102,6 @@ entities:
- type: Transform
pos: -22.507034,-46.74524
parent: 2
- - uid: 22878
- components:
- - type: Transform
- pos: -54.491184,-69.52867
- parent: 2
- proto: MedkitBurnFilled
entities:
- uid: 2103
@@ -128196,6 +127156,11 @@ entities:
- type: Transform
pos: -89.49908,-23.118275
parent: 2
+ - uid: 23125
+ components:
+ - type: Transform
+ pos: -54.398636,-68.47366
+ parent: 2
- proto: MedkitOxygenFilled
entities:
- uid: 2104
@@ -128231,39 +127196,17 @@ entities:
parent: 2
- proto: MetalDoor
entities:
- - uid: 7478
- components:
- - type: Transform
- pos: -71.5,-77.5
- parent: 2
-- proto: MicroManipulatorStockPart
- entities:
- - uid: 3604
- components:
- - type: Transform
- pos: -37.486786,-66.274414
- parent: 2
- - uid: 4677
- components:
- - type: Transform
- pos: -111.730156,-33.7062
- parent: 2
- - uid: 22688
- components:
- - type: Transform
- pos: -37.68991,-66.430664
- parent: 2
- - uid: 23299
+ - uid: 21046
components:
- type: Transform
- pos: -111.37078,-33.61245
+ pos: -70.5,-77.5
parent: 2
- proto: MicrophoneInstrument
entities:
- - uid: 6021
+ - uid: 16006
components:
- type: Transform
- pos: -95.487045,0.5328963
+ pos: -114.46207,-31.441647
parent: 2
- proto: MiningDrill
entities:
@@ -128370,20 +127313,15 @@ entities:
- type: Transform
pos: -14.528507,-1.5713043
parent: 2
- - uid: 18644
- components:
- - type: Transform
- pos: -80.5357,-49.43203
- parent: 2
- uid: 22297
components:
- type: Transform
pos: -18.550848,-1.5089836
parent: 2
- - uid: 26199
+ - uid: 25709
components:
- type: Transform
- pos: -81.52969,-67.45853
+ pos: -82.47984,-49.47957
parent: 2
- proto: Morgue
entities:
@@ -128491,11 +127429,6 @@ entities:
parent: 3336
- type: Physics
canCollide: False
- - uid: 4274
- components:
- - type: Transform
- pos: -112.730156,-33.36245
- parent: 2
- uid: 6282
components:
- type: Transform
@@ -128518,11 +127451,10 @@ entities:
parent: 2
- proto: NewsReaderCartridge
entities:
- - uid: 21712
+ - uid: 16012
components:
- type: Transform
- rot: 6.283185307179586 rad
- pos: -97.44804,-1.2101021
+ pos: -109.437035,-33.5124
parent: 2
- proto: NitrogenCanister
entities:
@@ -128697,22 +127629,12 @@ entities:
- type: Transform
pos: -34.5,-36.5
parent: 2
- - uid: 25895
- components:
- - type: Transform
- pos: -34.5,-53.5
- parent: 2
- proto: OreBag
entities:
- - uid: 8514
- components:
- - type: Transform
- pos: -78.5218,-74.4102
- parent: 2
- - uid: 26196
+ - uid: 21051
components:
- type: Transform
- pos: -73.537155,-24.424973
+ pos: -74.48228,-73.40599
parent: 2
- proto: OreBox
entities:
@@ -128726,23 +127648,22 @@ entities:
- type: Transform
pos: -63.5,-12.5
parent: 2
- - uid: 10123
+ - uid: 16385
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -81.5,-59.5
+ pos: -83.5,-60.5
parent: 2
- - uid: 23131
+ - uid: 21050
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -77.5,-72.5
+ pos: -73.5,-71.5
parent: 2
- - uid: 23225
+ - uid: 22006
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -21.5,-0.5
+ pos: -118.5,-29.5
parent: 2
- uid: 23393
components:
@@ -128875,18 +127796,6 @@ entities:
[bold]Reason:[/bold] Repair and construction materials
[bold]Deliver to:[/bold] Engineering
- - uid: 6631
- components:
- - type: Transform
- pos: -35.52974,-41.48317
- parent: 2
- - type: Paper
- content: >2-
-
- [head=1]Health Advisory[/head]
-
-
- Due to the slight deviations in the gravity generator's gravitaitonal field, runoff water from mining operations has accumulated near the centre of the station. Tests have concluded that this water is [bold]contaminated with dangerous levels of plasma[/bold]. Avoid contact with the contaminated water until it can be safely extracted. Do not consume the contaminated water under any circumstances.
- uid: 9488
components:
- type: Transform
@@ -129091,17 +128000,6 @@ entities:
currentLabel: Logbook
- type: NameModifier
baseName: paper
- - uid: 22368
- components:
- - type: Transform
- pos: -84.44287,19.534288
- parent: 2
- - type: Paper
- content: >2-
-
- [head=1][color=#ff0000] WARNING![/color][/head]
-
- [bold]Ensure internal airlock is fully closed before undocking. Failure to ensure internal airlock is closed will lead to internal and external airlocks remaining open during undocking proceedure.[/bold]
- uid: 25911
components:
- type: Transform
@@ -129189,6 +128087,11 @@ entities:
- type: Transform
pos: -44.5,-4.5
parent: 2
+ - uid: 3725
+ components:
+ - type: Transform
+ pos: -75.5,-42.5
+ parent: 2
- uid: 3856
components:
- type: Transform
@@ -129259,20 +128162,15 @@ entities:
- type: Transform
pos: -35.5,-42.5
parent: 2
- - uid: 13968
- components:
- - type: Transform
- pos: -73.5,-44.5
- parent: 2
- uid: 14264
components:
- type: Transform
pos: -98.5,-47.5
parent: 2
- - uid: 17230
+ - uid: 16027
components:
- type: Transform
- pos: -76.5,-33.5
+ pos: -109.5,-30.5
parent: 2
- uid: 20332
components:
@@ -129280,10 +128178,10 @@ entities:
rot: 1.5707963267948966 rad
pos: -55.5,-78.5
parent: 2
- - uid: 23134
+ - uid: 23165
components:
- type: Transform
- pos: -98.5,-1.5
+ pos: -78.5,-31.5
parent: 2
- uid: 25198
components:
@@ -129370,6 +128268,8 @@ entities:
- Set up solars
+ - Wire science onto the power grid [italic](Did the other guys forget that?)[/italic]
+
Atmos:
@@ -129377,9 +128277,7 @@ entities:
- Set up waste
- - Prep fuel for TEG
-
- - Make trit
+ - Hook the plasma gas miners into the storage tank [italic](Surely nothing can go wrong there...)[/italic]
Other:
@@ -129451,6 +128349,11 @@ entities:
parent: 2
- proto: Pen
entities:
+ - uid: 384
+ components:
+ - type: Transform
+ pos: -78.514,-31.340405
+ parent: 2
- uid: 6478
components:
- type: Transform
@@ -129461,11 +128364,6 @@ entities:
- type: Transform
pos: -98.52247,-47.412907
parent: 2
- - uid: 17211
- components:
- - type: Transform
- pos: -76.494835,-33.44481
- parent: 2
- uid: 17812
components:
- type: Transform
@@ -129558,15 +128456,10 @@ entities:
parent: 2
- proto: Pickaxe
entities:
- - uid: 8478
- components:
- - type: Transform
- pos: -81.48059,-59.431446
- parent: 2
- - uid: 8495
+ - uid: 7109
components:
- type: Transform
- pos: -78.4593,-74.44145
+ pos: -84.37542,-60.39783
parent: 2
- uid: 10094
components:
@@ -129574,15 +128467,10 @@ entities:
rot: 1.5707963267948966 rad
pos: -92.56621,28.692598
parent: 2
- - uid: 23232
- components:
- - type: Transform
- pos: -21.449034,-0.45583725
- parent: 2
- - uid: 26197
+ - uid: 16693
components:
- type: Transform
- pos: -74.443405,-24.45089
+ pos: -82.514206,-72.561935
parent: 2
- proto: PirateFlag
entities:
@@ -129596,7 +128484,7 @@ entities:
- uid: 24564
components:
- type: Transform
- pos: -25.60475,-70.56888
+ pos: -25.657328,-70.47536
parent: 2
- proto: PlaqueAtmos
entities:
@@ -129664,66 +128552,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -24.5,-67.5
parent: 2
- - uid: 23312
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -121.5,-62.5
- parent: 2
- - uid: 23373
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -119.5,-63.5
- parent: 2
- - uid: 23392
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -119.5,-60.5
- parent: 2
- - uid: 23441
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -121.5,-61.5
- parent: 2
- - uid: 23448
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -119.5,-61.5
- parent: 2
- - uid: 23450
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -119.5,-62.5
- parent: 2
- - uid: 23451
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -121.5,-59.5
- parent: 2
- - uid: 23452
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -121.5,-60.5
- parent: 2
- - uid: 23453
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -121.5,-63.5
- parent: 2
- - uid: 23454
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -119.5,-59.5
- parent: 2
- uid: 23845
components:
- type: Transform
@@ -129753,6 +128581,14 @@ entities:
rot: 1.5707963267948966 rad
pos: -123.5,-72.5
parent: 2
+- proto: PlasmaShiv
+ entities:
+ - uid: 22287
+ components:
+ - type: Transform
+ parent: 22286
+ - type: Physics
+ canCollide: False
- proto: PlasmaTank
entities:
- uid: 2843
@@ -129966,15 +128802,13 @@ entities:
- type: Transform
pos: -120.44894,36.471443
parent: 2
-- proto: PlushieAtmosian
+- proto: PlushieLizard
entities:
- - uid: 21675
+ - uid: 6088
components:
- type: Transform
- pos: -81.45022,-45.521404
+ pos: -78.46719,-73.44948
parent: 2
-- proto: PlushieLizard
- entities:
- uid: 16518
components:
- type: Transform
@@ -130038,30 +128872,20 @@ entities:
- type: Transform
pos: -8.5,-19.5
parent: 2
- - uid: 9129
- components:
- - type: Transform
- pos: -83.5,-72.5
- parent: 2
- - uid: 13772
- components:
- - type: Transform
- pos: -68.5,-64.5
- parent: 2
- uid: 14080
components:
- type: Transform
pos: -122.5,-33.5
parent: 2
- - uid: 21004
+ - uid: 20731
components:
- type: Transform
- pos: -46.5,-32.5
+ pos: -60.5,-64.5
parent: 2
- - uid: 23305
+ - uid: 21004
components:
- type: Transform
- pos: -109.5,-29.5
+ pos: -46.5,-32.5
parent: 2
- uid: 23391
components:
@@ -130092,6 +128916,11 @@ entities:
parent: 2
- proto: PortableGeneratorSuperPacman
entities:
+ - uid: 6244
+ components:
+ - type: Transform
+ pos: -123.5,-24.5
+ parent: 2
- uid: 6266
components:
- type: Transform
@@ -130099,11 +128928,6 @@ entities:
parent: 2
- proto: PortableScrubber
entities:
- - uid: 3962
- components:
- - type: Transform
- pos: -70.5,-63.5
- parent: 2
- uid: 6919
components:
- type: Transform
@@ -130114,6 +128938,11 @@ entities:
- type: Transform
pos: -121.5,17.5
parent: 2
+ - uid: 10122
+ components:
+ - type: Transform
+ pos: -72.5,-62.5
+ parent: 2
- uid: 13678
components:
- type: Transform
@@ -130200,10 +129029,11 @@ entities:
parent: 2
- proto: PosterContrabandPunchShit
entities:
- - uid: 23120
+ - uid: 5107
components:
- type: Transform
- pos: -48.5,-69.5
+ rot: -1.5707963267948966 rad
+ pos: -61.5,-68.5
parent: 2
- proto: PosterContrabandTools
entities:
@@ -130341,10 +129171,10 @@ entities:
parent: 2
- proto: PosterLegitNanotrasenLogo
entities:
- - uid: 19620
+ - uid: 16008
components:
- type: Transform
- pos: -95.5,3.5
+ pos: -114.5,-28.5
parent: 2
- uid: 23059
components:
@@ -130454,40 +129284,33 @@ entities:
parent: 2
- proto: PosterLegitWorkForAFuture
entities:
- - uid: 22504
+ - uid: 16024
components:
- type: Transform
- pos: -93.5,3.5
+ pos: -112.5,-28.5
parent: 2
- proto: PottedPlant21
entities:
- - uid: 19093
- components:
- - type: Transform
- pos: -78.5,-44.5
- parent: 2
-- proto: PottedPlant22
- entities:
- - uid: 14780
- components:
- - type: Transform
- pos: -81.5,-46.5
- parent: 2
-- proto: PottedPlant27
- entities:
- - uid: 5611
+ - uid: 22286
components:
- type: Transform
- pos: -93.5,2.5
+ pos: -83.5,-47.5
parent: 2
+ - type: ContainerContainer
+ containers:
+ stash: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: 22287
- proto: PottedPlant29
entities:
- - uid: 7674
+ - uid: 1741
components:
- type: MetaData
- desc: A plastic palm tree that looks absolutely fake. This probably constitutes the station's entire service budget.
+ desc: A plastic palm tree that looks absolutely fake. This probably constitutes the station's entire service budget...
+ name: Real Palm Tree
- type: Transform
- pos: -68.5,-49.5
+ pos: -72.5,-40.5
parent: 2
- proto: PottedPlantRandom
entities:
@@ -130533,6 +129356,11 @@ entities:
- type: Transform
pos: -100.5,-43.5
parent: 2
+ - uid: 16007
+ components:
+ - type: Transform
+ pos: -114.5,-29.5
+ parent: 2
- uid: 22379
components:
- type: Transform
@@ -130602,11 +129430,6 @@ entities:
parent: 2
- proto: PowerCellRecharger
entities:
- - uid: 4276
- components:
- - type: Transform
- pos: -113.5,-29.5
- parent: 2
- uid: 4363
components:
- type: Transform
@@ -130716,11 +129539,6 @@ entities:
- type: Transform
pos: -35.5,-46.5
parent: 2
- - uid: 21655
- components:
- - type: Transform
- pos: -30.5,-66.5
- parent: 2
- uid: 24952
components:
- type: Transform
@@ -130740,12 +129558,6 @@ entities:
showEnts: False
occludes: True
ents: []
- - uid: 25989
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,-18.5
- parent: 2
- proto: PowerCellSmallPrinted
entities:
- uid: 23931
@@ -130753,13 +129565,6 @@ entities:
- type: Transform
pos: -62.694946,-3.1233506
parent: 2
-- proto: PowerComputerCircuitboard
- entities:
- - uid: 15318
- components:
- - type: Transform
- pos: -116.65608,-32.660168
- parent: 2
- proto: PowerDrill
entities:
- uid: 16204
@@ -130817,16 +129622,6 @@ entities:
- type: Transform
pos: -124.5,-50.5
parent: 2
- - uid: 361
- components:
- - type: Transform
- pos: -81.5,-37.5
- parent: 2
- - uid: 516
- components:
- - type: Transform
- pos: -111.5,-29.5
- parent: 2
- uid: 643
components:
- type: Transform
@@ -130856,28 +129651,26 @@ entities:
rot: 1.5707963267948966 rad
pos: -30.5,-65.5
parent: 2
- - uid: 1510
+ - uid: 1229
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -97.5,-5.5
+ pos: -106.5,-37.5
parent: 2
- uid: 1691
components:
- type: Transform
pos: -81.5,15.5
parent: 2
- - uid: 1764
+ - uid: 1788
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -95.5,0.5
+ pos: -106.5,-53.5
parent: 2
- - uid: 1820
+ - uid: 1905
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -93.5,0.5
+ pos: -72.5,-37.5
parent: 2
- uid: 2374
components:
@@ -131118,12 +129911,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -87.5,9.5
parent: 2
- - uid: 6678
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -78.5,-47.5
- parent: 2
- uid: 6720
components:
- type: Transform
@@ -131256,12 +130043,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -10.5,-13.5
parent: 2
- - uid: 8482
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -83.5,-57.5
- parent: 2
- uid: 8928
components:
- type: Transform
@@ -131279,12 +130060,6 @@ entities:
- type: Transform
pos: -34.5,-39.5
parent: 2
- - uid: 9262
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -71.5,-39.5
- parent: 2
- uid: 9270
components:
- type: Transform
@@ -131311,6 +130086,17 @@ entities:
rot: -1.5707963267948966 rad
pos: -28.5,-5.5
parent: 2
+ - uid: 9621
+ components:
+ - type: Transform
+ pos: -89.5,-44.5
+ parent: 2
+ - uid: 9630
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -80.5,-49.5
+ parent: 2
- uid: 10544
components:
- type: Transform
@@ -131416,11 +130202,6 @@ entities:
- type: Transform
pos: -46.5,2.5
parent: 2
- - uid: 10639
- components:
- - type: Transform
- pos: -85.5,2.5
- parent: 2
- uid: 10644
components:
- type: Transform
@@ -131588,6 +130369,16 @@ entities:
rot: 1.5707963267948966 rad
pos: -26.5,-53.5
parent: 2
+ - uid: 13119
+ components:
+ - type: Transform
+ pos: -18.5,-48.5
+ parent: 2
+ - uid: 13120
+ components:
+ - type: Transform
+ pos: -18.5,-52.5
+ parent: 2
- uid: 13125
components:
- type: Transform
@@ -131866,6 +130657,17 @@ entities:
rot: -1.5707963267948966 rad
pos: -90.5,-30.5
parent: 2
+ - uid: 13553
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -89.5,-39.5
+ parent: 2
+ - uid: 13554
+ components:
+ - type: Transform
+ pos: -82.5,-37.5
+ parent: 2
- uid: 13555
components:
- type: Transform
@@ -131878,6 +130680,12 @@ entities:
rot: 1.5707963267948966 rad
pos: -88.5,-49.5
parent: 2
+ - uid: 13568
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -80.5,-46.5
+ parent: 2
- uid: 13575
components:
- type: Transform
@@ -131957,11 +130765,15 @@ entities:
rot: 3.141592653589793 rad
pos: -134.5,-41.5
parent: 2
- - uid: 13766
+ - uid: 13658
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,-49.5
+ pos: -80.5,-11.5
+ parent: 2
+ - uid: 13691
+ components:
+ - type: Transform
+ pos: -98.5,-54.5
parent: 2
- uid: 14571
components:
@@ -132014,28 +130826,6 @@ entities:
- type: Transform
pos: -47.5,-12.5
parent: 2
- - uid: 14690
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -50.5,-14.5
- parent: 2
- - uid: 14691
- components:
- - type: Transform
- pos: -19.5,-12.5
- parent: 2
- - uid: 14692
- components:
- - type: Transform
- pos: -38.5,-12.5
- parent: 2
- - uid: 14693
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,-53.5
- parent: 2
- uid: 14816
components:
- type: Transform
@@ -132086,17 +130876,17 @@ entities:
rot: -1.5707963267948966 rad
pos: -92.5,10.5
parent: 2
- - uid: 16174
+ - uid: 16025
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -111.5,-33.5
+ rot: 1.5707963267948966 rad
+ pos: -114.5,-31.5
parent: 2
- - uid: 16450
+ - uid: 16026
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -116.5,-31.5
+ rot: -1.5707963267948966 rad
+ pos: -112.5,-31.5
parent: 2
- uid: 16512
components:
@@ -132155,136 +130945,74 @@ entities:
rot: 3.141592653589793 rad
pos: -89.5,-47.5
parent: 2
- - uid: 18227
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -86.5,-63.5
- parent: 2
- - uid: 18241
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -92.5,-9.5
- parent: 2
- - uid: 18357
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -93.5,-63.5
- parent: 2
- uid: 18386
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -123.5,15.5
parent: 2
- - uid: 18612
- components:
- - type: Transform
- pos: -52.5,-70.5
- parent: 2
- - uid: 18746
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -101.5,-4.5
- parent: 2
- - uid: 18761
+ - uid: 18964
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -102.5,-47.5
- parent: 2
- - uid: 18769
- components:
- - type: Transform
- pos: -91.5,-55.5
- parent: 2
- - uid: 18782
- components:
- - type: Transform
- pos: -106.5,-54.5
- parent: 2
- - uid: 18783
- components:
- - type: Transform
- pos: -98.5,-55.5
- parent: 2
- - uid: 18785
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -105.5,-37.5
- parent: 2
- - uid: 18821
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -105.5,-8.5
+ pos: -23.5,-46.5
parent: 2
- - uid: 18822
+ - uid: 19609
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -90.5,-14.5
+ pos: -140.5,-11.5
parent: 2
- - uid: 18829
+ - uid: 19728
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -105.5,-23.5
+ pos: -65.5,-33.5
parent: 2
- - uid: 18837
+ - uid: 19751
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -104.5,-18.5
+ rot: -1.5707963267948966 rad
+ pos: -102.5,-42.5
parent: 2
- - uid: 18932
+ - uid: 19769
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -105.5,5.5
+ pos: -70.5,-18.5
parent: 2
- - uid: 18939
+ - uid: 19808
components:
- type: Transform
- pos: -80.5,-12.5
+ rot: -1.5707963267948966 rad
+ pos: -102.5,-33.5
parent: 2
- - uid: 18964
+ - uid: 19809
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,-46.5
+ rot: 1.5707963267948966 rad
+ pos: -105.5,-18.5
parent: 2
- - uid: 19569
+ - uid: 19810
components:
- type: Transform
- pos: -85.5,-44.5
+ pos: -91.5,-54.5
parent: 2
- - uid: 19609
+ - uid: 19819
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -140.5,-11.5
- parent: 2
- - uid: 19728
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -65.5,-33.5
+ pos: -81.5,-58.5
parent: 2
- - uid: 19751
+ - uid: 19824
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -102.5,-42.5
+ pos: -101.5,-6.5
parent: 2
- - uid: 19769
+ - uid: 19886
components:
- type: Transform
- pos: -70.5,-18.5
+ pos: -84.5,-12.5
parent: 2
- uid: 20133
components:
@@ -132292,6 +131020,12 @@ entities:
rot: 3.141592653589793 rad
pos: -24.5,-9.5
parent: 2
+ - uid: 20155
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -106.5,-23.5
+ parent: 2
- uid: 20157
components:
- type: Transform
@@ -132314,11 +131048,6 @@ entities:
rot: 3.141592653589793 rad
pos: -34.5,-9.5
parent: 2
- - uid: 20566
- components:
- - type: Transform
- pos: -90.5,-60.5
- parent: 2
- uid: 20959
components:
- type: Transform
@@ -132337,11 +131066,6 @@ entities:
rot: 3.141592653589793 rad
pos: -99.5,37.5
parent: 2
- - uid: 21496
- components:
- - type: Transform
- pos: -81.5,-44.5
- parent: 2
- uid: 21741
components:
- type: Transform
@@ -132387,45 +131111,69 @@ entities:
rot: -1.5707963267948966 rad
pos: -112.5,29.5
parent: 2
- - uid: 22895
+ - uid: 23114
+ components:
+ - type: Transform
+ pos: -60.5,-69.5
+ parent: 2
+ - uid: 23120
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -49.5,-73.5
+ pos: -57.5,-72.5
parent: 2
- - uid: 22970
+ - uid: 23333
components:
- type: Transform
- pos: -56.5,-69.5
+ rot: 3.141592653589793 rad
+ pos: -66.5,-16.5
parent: 2
- - uid: 23300
+ - uid: 23386
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -91.5,-5.5
+ pos: -117.5,-77.5
parent: 2
- - uid: 23333
+ - uid: 23943
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -70.5,-31.5
+ parent: 2
+ - uid: 24447
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -92.5,-2.5
+ parent: 2
+ - uid: 24448
+ components:
+ - type: Transform
+ pos: -95.5,0.5
+ parent: 2
+ - uid: 24449
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -66.5,-16.5
+ pos: -95.5,-5.5
parent: 2
- - uid: 23386
+ - uid: 24473
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -117.5,-77.5
+ pos: -89.5,-64.5
parent: 2
- - uid: 23399
+ - uid: 24474
components:
- type: Transform
- pos: -85.5,-37.5
+ rot: 3.141592653589793 rad
+ pos: -92.5,-67.5
parent: 2
- - uid: 23943
+ - uid: 24475
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -70.5,-31.5
+ pos: -95.5,-64.5
parent: 2
- uid: 25360
components:
@@ -132467,6 +131215,18 @@ entities:
rot: 3.141592653589793 rad
pos: -145.5,-48.5
parent: 2
+ - uid: 25451
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -102.5,-48.5
+ parent: 2
+ - uid: 25452
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -90.5,-15.5
+ parent: 2
- uid: 25478
components:
- type: Transform
@@ -132491,17 +131251,11 @@ entities:
rot: 1.5707963267948966 rad
pos: -96.5,23.5
parent: 2
- - uid: 26193
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -83.5,-50.5
- parent: 2
- - uid: 26203
+ - uid: 25996
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -24.5,-65.5
+ rot: 1.5707963267948966 rad
+ pos: -72.5,-41.5
parent: 2
- proto: PoweredlightExterior
entities:
@@ -132517,6 +131271,11 @@ entities:
rot: 1.5707963267948966 rad
pos: -88.5,-3.5
parent: 2
+ - uid: 16653
+ components:
+ - type: Transform
+ pos: -85.5,2.5
+ parent: 2
- uid: 23247
components:
- type: Transform
@@ -132524,6 +131283,24 @@ entities:
parent: 2
- proto: PoweredLightPostSmall
entities:
+ - uid: 8685
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -37.5,-12.5
+ parent: 2
+ - uid: 16792
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,-12.5
+ parent: 2
+ - uid: 16807
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -25.5,-15.5
+ parent: 2
- uid: 19746
components:
- type: Transform
@@ -132559,10 +131336,11 @@ entities:
- type: Transform
pos: -125.5,17.5
parent: 2
- - uid: 1516
+ - uid: 991
components:
- type: Transform
- pos: -71.5,-62.5
+ rot: -1.5707963267948966 rad
+ pos: -75.5,-58.5
parent: 2
- uid: 1614
components:
@@ -132575,12 +131353,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -134.5,-8.5
parent: 2
- - uid: 1967
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -98.5,-0.5
- parent: 2
- uid: 2091
components:
- type: Transform
@@ -132640,6 +131412,18 @@ entities:
rot: 3.141592653589793 rad
pos: -21.5,4.5
parent: 2
+ - uid: 6118
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -92.5,-42.5
+ parent: 2
+ - uid: 6119
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -88.5,-42.5
+ parent: 2
- uid: 6609
components:
- type: Transform
@@ -132703,12 +131487,24 @@ entities:
- type: Transform
pos: -34.5,-56.5
parent: 2
+ - uid: 9262
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -75.5,-54.5
+ parent: 2
- uid: 9274
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -74.5,-11.5
parent: 2
+ - uid: 9294
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -107.5,-32.5
+ parent: 2
- uid: 9319
components:
- type: Transform
@@ -132749,12 +131545,6 @@ entities:
- type: Transform
pos: -46.5,-2.5
parent: 2
- - uid: 10636
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -89.5,1.5
- parent: 2
- uid: 11053
components:
- type: Transform
@@ -132942,6 +131732,12 @@ entities:
rot: 1.5707963267948966 rad
pos: -100.5,-38.5
parent: 2
+ - uid: 13572
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -95.5,-39.5
+ parent: 2
- uid: 13587
components:
- type: Transform
@@ -133063,6 +131859,12 @@ entities:
rot: 3.141592653589793 rad
pos: -112.5,-6.5
parent: 2
+ - uid: 16031
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -109.5,-32.5
+ parent: 2
- uid: 16655
components:
- type: Transform
@@ -133131,18 +131933,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -19.5,-65.5
parent: 2
- - uid: 18640
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -88.5,-41.5
- parent: 2
- - uid: 18646
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -80.5,-41.5
- parent: 2
- uid: 18695
components:
- type: Transform
@@ -133190,11 +131980,11 @@ entities:
- type: Transform
pos: -92.5,30.5
parent: 2
- - uid: 19808
+ - uid: 19892
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -84.5,-41.5
+ pos: -88.5,1.5
parent: 2
- uid: 20292
components:
@@ -133220,18 +132010,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -14.5,-15.5
parent: 2
- - uid: 21458
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -73.5,-58.5
- parent: 2
- - uid: 21487
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -73.5,-54.5
- parent: 2
- uid: 21494
components:
- type: Transform
@@ -133273,16 +132051,10 @@ entities:
rot: 1.5707963267948966 rad
pos: -37.5,-36.5
parent: 2
- - uid: 23164
+ - uid: 23392
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -95.5,-38.5
- parent: 2
- - uid: 23226
- components:
- - type: Transform
- rot: 3.141592653589793 rad
pos: -100.5,4.5
parent: 2
- uid: 23514
@@ -133291,12 +132063,24 @@ entities:
rot: -1.5707963267948966 rad
pos: -48.5,-51.5
parent: 2
+ - uid: 23859
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -72.5,-63.5
+ parent: 2
- uid: 23860
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -65.5,-61.5
parent: 2
+ - uid: 23861
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -74.5,-61.5
+ parent: 2
- uid: 24116
components:
- type: Transform
@@ -133309,12 +132093,23 @@ entities:
rot: 1.5707963267948966 rad
pos: -5.5,-37.5
parent: 2
+ - uid: 24464
+ components:
+ - type: Transform
+ pos: -100.5,-2.5
+ parent: 2
- uid: 24479
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -74.5,-15.5
parent: 2
+ - uid: 24481
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -92.5,-59.5
+ parent: 2
- uid: 24621
components:
- type: Transform
@@ -133422,12 +132217,6 @@ entities:
rot: 3.141592653589793 rad
pos: -31.5,1.5
parent: 2
- - uid: 25551
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -97.5,-41.5
- parent: 2
- uid: 25691
components:
- type: Transform
@@ -133440,12 +132229,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -42.5,-15.5
parent: 2
- - uid: 25780
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -90.5,-41.5
- parent: 2
- uid: 25955
components:
- type: Transform
@@ -133458,18 +132241,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -106.5,-56.5
parent: 2
- - uid: 25984
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -106.5,-30.5
- parent: 2
- - uid: 25985
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -106.5,-32.5
- parent: 2
- uid: 26002
components:
- type: Transform
@@ -133559,13 +132330,6 @@ entities:
- type: Transform
pos: -122.5,-37.5
parent: 2
-- proto: ProtolatheMachineCircuitboard
- entities:
- - uid: 23463
- components:
- - type: Transform
- pos: -116.32796,-30.363293
- parent: 2
- proto: PsychBed
entities:
- uid: 9300
@@ -133575,15 +132339,16 @@ entities:
parent: 2
- proto: Rack
entities:
- - uid: 338
+ - uid: 656
components:
- type: Transform
- pos: -81.5,-45.5
+ pos: -110.5,-40.5
parent: 2
- - uid: 656
+ - uid: 2123
components:
- type: Transform
- pos: -110.5,-40.5
+ rot: 1.5707963267948966 rad
+ pos: -82.5,-21.5
parent: 2
- uid: 2126
components:
@@ -133591,6 +132356,12 @@ entities:
rot: 1.5707963267948966 rad
pos: -82.5,-22.5
parent: 2
+ - uid: 2590
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -93.5,-38.5
+ parent: 2
- uid: 3821
components:
- type: Transform
@@ -133601,15 +132372,15 @@ entities:
- type: Transform
pos: -26.5,-28.5
parent: 2
- - uid: 5426
+ - uid: 5886
components:
- type: Transform
- pos: -116.5,-32.5
+ pos: -107.5,-15.5
parent: 2
- - uid: 5886
+ - uid: 6245
components:
- type: Transform
- pos: -107.5,-15.5
+ pos: -125.5,-24.5
parent: 2
- uid: 6314
components:
@@ -133621,11 +132392,6 @@ entities:
- type: Transform
pos: -121.5,-4.5
parent: 2
- - uid: 6761
- components:
- - type: Transform
- pos: -116.5,-30.5
- parent: 2
- uid: 7155
components:
- type: Transform
@@ -133637,16 +132403,10 @@ entities:
rot: 1.5707963267948966 rad
pos: -118.5,-49.5
parent: 2
- - uid: 9404
- components:
- - type: Transform
- pos: -116.5,-31.5
- parent: 2
- - uid: 9442
+ - uid: 8268
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -99.5,0.5
+ pos: -8.5,-18.5
parent: 2
- uid: 9572
components:
@@ -133654,28 +132414,15 @@ entities:
rot: 1.5707963267948966 rad
pos: -121.5,-3.5
parent: 2
- - uid: 12174
- components:
- - type: Transform
- pos: -86.5,-7.5
- parent: 2
- - uid: 13770
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -110.5,-31.5
- parent: 2
- - uid: 14252
+ - uid: 10201
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -112.5,-31.5
+ pos: -82.5,-45.5
parent: 2
- - uid: 14261
+ - uid: 12174
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -111.5,-31.5
+ pos: -86.5,-7.5
parent: 2
- uid: 14626
components:
@@ -133683,27 +132430,27 @@ entities:
rot: 3.141592653589793 rad
pos: -59.5,-38.5
parent: 2
- - uid: 14965
+ - uid: 15338
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -82.5,-21.5
+ pos: -37.5,0.5
parent: 2
- - uid: 15338
+ - uid: 16004
components:
- type: Transform
- pos: -37.5,0.5
+ rot: 1.5707963267948966 rad
+ pos: -109.5,-33.5
parent: 2
- uid: 16178
components:
- type: Transform
pos: -88.5,-22.5
parent: 2
- - uid: 16331
+ - uid: 16903
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -86.5,-50.5
+ rot: 1.5707963267948966 rad
+ pos: -95.5,35.5
parent: 2
- uid: 18750
components:
@@ -133731,11 +132478,6 @@ entities:
- type: Transform
pos: -26.5,-3.5
parent: 2
- - uid: 22369
- components:
- - type: Transform
- pos: -95.5,32.5
- parent: 2
- uid: 22396
components:
- type: Transform
@@ -133777,6 +132519,13 @@ entities:
- type: Transform
pos: -119.5,-65.5
parent: 2
+- proto: RadiationCollectorNoTank
+ entities:
+ - uid: 21868
+ components:
+ - type: Transform
+ pos: -114.5,36.5
+ parent: 2
- proto: RagItem
entities:
- uid: 24446
@@ -133791,22 +132540,35 @@ entities:
parent: 2
- proto: Railing
entities:
- - uid: 139
+ - uid: 288
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -96.5,35.5
+ parent: 2
+ - uid: 2376
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -78.5,-45.5
+ pos: -62.5,-29.5
parent: 2
- - uid: 288
+ - uid: 2380
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -96.5,35.5
+ pos: -63.5,-26.5
parent: 2
- - uid: 2565
+ - uid: 2432
components:
- type: Transform
- pos: -93.5,-62.5
+ rot: 1.5707963267948966 rad
+ pos: -63.5,-28.5
+ parent: 2
+ - uid: 3328
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -66.5,-73.5
parent: 2
- uid: 3353
components:
@@ -133838,6 +132600,12 @@ entities:
- type: Transform
pos: -59.5,-33.5
parent: 2
+ - uid: 3366
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -68.5,-73.5
+ parent: 2
- uid: 3373
components:
- type: Transform
@@ -133860,34 +132628,40 @@ entities:
- type: Transform
pos: -121.5,14.5
parent: 2
- - uid: 5393
+ - uid: 5632
components:
- type: Transform
- pos: -68.5,-73.5
+ rot: 1.5707963267948966 rad
+ pos: -121.5,12.5
parent: 2
- - uid: 6571
+ - uid: 6543
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -84.5,-48.5
+ rot: -1.5707963267948966 rad
+ pos: -59.5,-28.5
parent: 2
- - uid: 6576
+ - uid: 6604
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -83.5,-48.5
+ rot: -1.5707963267948966 rad
+ pos: -59.5,-26.5
parent: 2
- - uid: 6578
+ - uid: 6605
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -82.5,-48.5
+ pos: -60.5,-29.5
parent: 2
- - uid: 6675
+ - uid: 6631
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -84.5,-48.5
+ pos: -62.5,-25.5
+ parent: 2
+ - uid: 6908
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -121.5,11.5
parent: 2
- uid: 7415
components:
@@ -133895,6 +132669,12 @@ entities:
rot: 1.5707963267948966 rad
pos: -96.5,33.5
parent: 2
+ - uid: 7575
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -61.5,-29.5
+ parent: 2
- uid: 8415
components:
- type: Transform
@@ -133905,6 +132685,17 @@ entities:
- type: Transform
pos: -115.5,12.5
parent: 2
+ - uid: 8982
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -59.5,-27.5
+ parent: 2
+ - uid: 8984
+ components:
+ - type: Transform
+ pos: -60.5,-25.5
+ parent: 2
- uid: 9088
components:
- type: Transform
@@ -133923,6 +132714,35 @@ entities:
rot: 3.141592653589793 rad
pos: -98.5,8.5
parent: 2
+ - uid: 9301
+ components:
+ - type: Transform
+ pos: -61.5,-25.5
+ parent: 2
+ - uid: 9304
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -63.5,-27.5
+ parent: 2
+ - uid: 9631
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -85.5,-48.5
+ parent: 2
+ - uid: 9644
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -81.5,-45.5
+ parent: 2
+ - uid: 9649
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -82.5,-47.5
+ parent: 2
- uid: 9823
components:
- type: Transform
@@ -133949,6 +132769,12 @@ entities:
- type: Transform
pos: -27.5,11.5
parent: 2
+ - uid: 11061
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -84.5,-48.5
+ parent: 2
- uid: 11193
components:
- type: Transform
@@ -133971,106 +132797,76 @@ entities:
- type: Transform
pos: -59.5,-0.5
parent: 2
- - uid: 12495
+ - uid: 13421
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -97.5,-5.5
+ pos: -112.5,-2.5
parent: 2
- - uid: 12618
+ - uid: 13422
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -50.5,-11.5
- parent: 2
- - uid: 12637
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -52.5,-11.5
- parent: 2
- - uid: 12694
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -96.5,-7.5
+ pos: -112.5,-3.5
parent: 2
- - uid: 12851
+ - uid: 15034
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -94.5,-8.5
+ rot: 1.5707963267948966 rad
+ pos: -96.5,0.5
parent: 2
- - uid: 12896
+ - uid: 16054
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -91.5,-7.5
+ rot: -1.5707963267948966 rad
+ pos: -81.5,-44.5
parent: 2
- - uid: 13421
+ - uid: 16821
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -112.5,-2.5
+ pos: -67.5,-72.5
parent: 2
- - uid: 13422
+ - uid: 16985
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -112.5,-3.5
+ pos: -96.5,32.5
parent: 2
- - uid: 13428
+ - uid: 17140
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -97.5,-4.5
+ rot: -1.5707963267948966 rad
+ pos: -97.5,30.5
parent: 2
- - uid: 13558
+ - uid: 17156
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -97.5,-6.5
- parent: 2
- - uid: 13704
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -62.5,-26.5
+ pos: -96.5,27.5
parent: 2
- - uid: 13707
+ - uid: 17826
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -61.5,-26.5
+ pos: -83.5,-48.5
parent: 2
- - uid: 13713
+ - uid: 17829
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -60.5,-26.5
- parent: 2
- - uid: 16415
- components:
- - type: Transform
- pos: -60.5,-28.5
+ pos: -86.5,-48.5
parent: 2
- - uid: 16985
+ - uid: 18074
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -96.5,32.5
- parent: 2
- - uid: 17140
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -97.5,30.5
+ pos: -97.5,-3.5
parent: 2
- - uid: 17156
+ - uid: 18076
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -96.5,27.5
+ rot: 3.141592653589793 rad
+ pos: -96.5,-5.5
parent: 2
- uid: 18178
components:
@@ -134078,16 +132874,15 @@ entities:
rot: 1.5707963267948966 rad
pos: -101.5,30.5
parent: 2
- - uid: 18625
+ - uid: 18783
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,-74.5
+ pos: -93.5,-62.5
parent: 2
- - uid: 19350
+ - uid: 18787
components:
- type: Transform
- pos: -62.5,-28.5
+ pos: -89.5,-63.5
parent: 2
- uid: 19512
components:
@@ -134107,52 +132902,27 @@ entities:
rot: -1.5707963267948966 rad
pos: -120.5,12.5
parent: 2
- - uid: 19885
- components:
- - type: Transform
- pos: -61.5,-28.5
- parent: 2
- - uid: 19886
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -63.5,-27.5
- parent: 2
- - uid: 20291
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -68.5,-75.5
- parent: 2
- uid: 20320
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -97.5,32.5
parent: 2
- - uid: 20780
+ - uid: 20806
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -79.5,-45.5
+ pos: -94.5,-62.5
parent: 2
- - uid: 20783
+ - uid: 20947
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -80.5,-46.5
+ pos: -91.5,-62.5
parent: 2
- - uid: 21051
+ - uid: 21495
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -59.5,-27.5
- parent: 2
- - uid: 21419
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -78.5,-45.5
+ pos: -97.5,-4.5
parent: 2
- uid: 22033
components:
@@ -134160,21 +132930,17 @@ entities:
rot: 1.5707963267948966 rad
pos: -96.5,28.5
parent: 2
- - uid: 22137
+ - uid: 22348
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -69.5,-74.5
- parent: 2
- - uid: 22181
- components:
- - type: Transform
- pos: -90.5,-63.5
+ pos: -97.5,-1.5
parent: 2
- - uid: 23139
+ - uid: 22479
components:
- type: Transform
- pos: -92.5,-62.5
+ rot: 3.141592653589793 rad
+ pos: -67.5,-74.5
parent: 2
- uid: 23371
components:
@@ -134217,115 +132983,102 @@ entities:
rot: -1.5707963267948966 rad
pos: -46.5,-46.5
parent: 2
- - uid: 6662
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -85.5,-50.5
- parent: 2
- - uid: 13540
+ - uid: 15062
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -95.5,-7.5
- parent: 2
- - uid: 13556
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -92.5,-7.5
+ pos: -95.5,-5.5
parent: 2
- - uid: 13709
+ - uid: 16045
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -63.5,-26.5
+ pos: -82.5,-46.5
parent: 2
- - uid: 16423
+ - uid: 16713
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -80.5,-45.5
+ pos: -66.5,-72.5
parent: 2
- - uid: 18981
+ - uid: 16813
components:
- type: Transform
- pos: -87.5,-62.5
+ rot: -1.5707963267948966 rad
+ pos: -68.5,-72.5
parent: 2
- - uid: 19342
+ - uid: 17830
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -59.5,-26.5
+ rot: 3.141592653589793 rad
+ pos: -87.5,-50.5
parent: 2
- - uid: 19351
+ - uid: 20901
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -63.5,-28.5
+ pos: -90.5,-63.5
parent: 2
- - uid: 19555
+ - uid: 21717
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -69.5,-73.5
+ pos: -95.5,-63.5
parent: 2
- - uid: 19896
+ - uid: 23240
components:
- type: Transform
- pos: -59.5,-28.5
+ pos: -96.5,-0.5
parent: 2
- - uid: 20512
+- proto: RailingCornerSmall
+ entities:
+ - uid: 1200
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -81.5,-47.5
+ pos: -63.5,-33.5
parent: 2
- - uid: 21625
+ - uid: 2373
components:
- type: Transform
- pos: -88.5,-63.5
+ rot: -1.5707963267948966 rad
+ pos: -63.5,-29.5
parent: 2
- - uid: 22136
+ - uid: 2653
components:
- type: Transform
- pos: -67.5,-73.5
+ pos: -66.5,-74.5
parent: 2
- - uid: 23137
+ - uid: 3371
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -91.5,-63.5
+ pos: -63.5,-35.5
parent: 2
-- proto: RailingCornerSmall
- entities:
- - uid: 1200
+ - uid: 7543
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -63.5,-33.5
+ rot: 1.5707963267948966 rad
+ pos: -59.5,-25.5
parent: 2
- - uid: 3371
+ - uid: 7576
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -63.5,-35.5
+ pos: -59.5,-29.5
parent: 2
- - uid: 6588
+ - uid: 8985
components:
- type: Transform
- pos: -80.5,-47.5
+ rot: 3.141592653589793 rad
+ pos: -63.5,-25.5
parent: 2
- - uid: 6806
+ - uid: 9434
components:
- type: Transform
- pos: -92.5,-8.5
+ pos: -81.5,-46.5
parent: 2
- - uid: 9952
+ - uid: 10859
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -95.5,-8.5
+ pos: -82.5,-48.5
parent: 2
- uid: 11192
components:
@@ -134351,17 +133104,11 @@ entities:
rot: 1.5707963267948966 rad
pos: -58.5,-0.5
parent: 2
- - uid: 13557
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -97.5,-7.5
- parent: 2
- - uid: 18624
+ - uid: 18769
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -69.5,-75.5
+ rot: 3.141592653589793 rad
+ pos: -97.5,-0.5
parent: 2
- uid: 19510
components:
@@ -134381,33 +133128,29 @@ entities:
rot: 1.5707963267948966 rad
pos: -120.5,14.5
parent: 2
- - uid: 19774
+ - uid: 22299
components:
- type: Transform
- pos: -67.5,-75.5
+ rot: -1.5707963267948966 rad
+ pos: -97.5,-5.5
parent: 2
- - uid: 21717
+ - uid: 23299
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -91.5,-62.5
+ pos: -90.5,-62.5
parent: 2
- - uid: 21863
+ - uid: 23457
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -88.5,-62.5
+ rot: -1.5707963267948966 rad
+ pos: -68.5,-74.5
parent: 2
- - uid: 23132
+ - uid: 23929
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -87.5,-61.5
- parent: 2
- - uid: 23778
- components:
- - type: Transform
- pos: -81.5,-48.5
+ pos: -95.5,-62.5
parent: 2
- uid: 25560
components:
@@ -134423,17 +133166,17 @@ entities:
rot: 1.5707963267948966 rad
pos: -99.5,10.5
parent: 2
- - uid: 11153
+ - uid: 10167
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -100.5,10.5
+ pos: -87.5,-48.5
parent: 2
- - uid: 16535
+ - uid: 11153
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -85.5,-48.5
+ pos: -100.5,10.5
parent: 2
- proto: RandomArcade
entities:
@@ -134491,40 +133234,30 @@ entities:
parent: 2
- proto: RandomArtifactSpawner20
entities:
- - uid: 1777
- components:
- - type: Transform
- pos: -134.5,32.5
- parent: 2
- - uid: 1780
- components:
- - type: Transform
- pos: -98.5,-50.5
- parent: 2
- - uid: 6261
+ - uid: 1720
components:
- type: Transform
- pos: -76.5,-68.5
+ pos: -99.5,-61.5
parent: 2
- - uid: 7473
+ - uid: 1759
components:
- type: Transform
- pos: -82.5,7.5
+ pos: -83.5,-66.5
parent: 2
- - uid: 7625
+ - uid: 1777
components:
- type: Transform
- pos: -81.5,-61.5
+ pos: -134.5,32.5
parent: 2
- - uid: 9220
+ - uid: 1780
components:
- type: Transform
- pos: -61.5,-73.5
+ pos: -98.5,-50.5
parent: 2
- - uid: 9706
+ - uid: 7473
components:
- type: Transform
- pos: -98.5,-62.5
+ pos: -82.5,7.5
parent: 2
- uid: 25455
components:
@@ -134533,21 +133266,6 @@ entities:
parent: 2
- proto: RandomBoard
entities:
- - uid: 4264
- components:
- - type: Transform
- pos: -112.5,-31.5
- parent: 2
- - uid: 4272
- components:
- - type: Transform
- pos: -111.5,-31.5
- parent: 2
- - uid: 4275
- components:
- - type: Transform
- pos: -110.5,-31.5
- parent: 2
- uid: 19816
components:
- type: Transform
@@ -134565,15 +133283,10 @@ entities:
parent: 2
- proto: RandomInstruments
entities:
- - uid: 25896
- components:
- - type: Transform
- pos: -11.5,-31.5
- parent: 2
- - uid: 25901
+ - uid: 20952
components:
- type: Transform
- pos: -10.5,-3.5
+ pos: -55.5,-37.5
parent: 2
- proto: RandomPosterAny
entities:
@@ -134634,6 +133347,11 @@ entities:
- type: Transform
pos: -101.5,19.5
parent: 2
+ - uid: 23050
+ components:
+ - type: Transform
+ pos: -95.5,3.5
+ parent: 2
- uid: 23051
components:
- type: Transform
@@ -134676,6 +133394,16 @@ entities:
parent: 2
- proto: RandomPosterLegit
entities:
+ - uid: 4875
+ components:
+ - type: Transform
+ pos: -107.5,-34.5
+ parent: 2
+ - uid: 4876
+ components:
+ - type: Transform
+ pos: -101.5,-18.5
+ parent: 2
- uid: 4893
components:
- type: Transform
@@ -134802,6 +133530,16 @@ entities:
- type: Transform
pos: -93.5,-45.5
parent: 2
+ - uid: 23064
+ components:
+ - type: Transform
+ pos: -86.5,-43.5
+ parent: 2
+ - uid: 23066
+ components:
+ - type: Transform
+ pos: -79.5,-49.5
+ parent: 2
- uid: 23592
components:
- type: Transform
@@ -134827,6 +133565,12 @@ entities:
- type: Transform
pos: -86.5,-15.5
parent: 2
+ - uid: 24672
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -107.5,-29.5
+ parent: 2
- uid: 24673
components:
- type: Transform
@@ -134964,7 +133708,7 @@ entities:
rot: 3.141592653589793 rad
pos: -98.5,28.5
parent: 2
- - uid: 20287
+ - uid: 7763
components:
- type: Transform
rot: -1.5707963267948966 rad
@@ -135033,6 +133777,11 @@ entities:
rot: 1.5707963267948966 rad
pos: -148.5,-50.5
parent: 2
+ - uid: 2667
+ components:
+ - type: Transform
+ pos: -68.5,-70.5
+ parent: 2
- uid: 5278
components:
- type: Transform
@@ -135329,12 +134078,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -146.5,-41.5
parent: 2
- - uid: 6245
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -68.5,-71.5
- parent: 2
- uid: 6924
components:
- type: Transform
@@ -135400,12 +134143,6 @@ entities:
rot: 3.141592653589793 rad
pos: -155.5,-46.5
parent: 2
- - uid: 7890
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -69.5,-71.5
- parent: 2
- uid: 9817
components:
- type: Transform
@@ -135461,24 +134198,17 @@ entities:
rot: 1.5707963267948966 rad
pos: -143.5,-43.5
parent: 2
- - uid: 14110
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,-71.5
- parent: 2
- - uid: 14756
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,-70.5
- parent: 2
- uid: 16466
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -153.5,-42.5
parent: 2
+ - uid: 17059
+ components:
+ - type: Transform
+ pos: -68.5,-69.5
+ parent: 2
- uid: 20368
components:
- type: Transform
@@ -135532,17 +134262,26 @@ entities:
rot: 3.141592653589793 rad
pos: -120.5,-81.5
parent: 2
- - uid: 23498
+ - uid: 23448
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -116.5,-72.5
+ pos: -67.5,-70.5
parent: 2
- - uid: 23716
+ - uid: 23449
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -69.5,-70.5
+ pos: -66.5,-70.5
+ parent: 2
+ - uid: 23450
+ components:
+ - type: Transform
+ pos: -66.5,-69.5
+ parent: 2
+ - uid: 23498
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -116.5,-72.5
parent: 2
- uid: 24847
components:
@@ -135885,12 +134624,6 @@ entities:
- type: Transform
pos: -48.5,-8.5
parent: 2
- - uid: 420
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -92.5,-35.5
- parent: 2
- uid: 474
components:
- type: Transform
@@ -135973,6 +134706,11 @@ entities:
- type: Transform
pos: -31.5,-3.5
parent: 2
+ - uid: 1328
+ components:
+ - type: Transform
+ pos: -84.5,-43.5
+ parent: 2
- uid: 1331
components:
- type: Transform
@@ -136050,6 +134788,36 @@ entities:
- type: Transform
pos: -106.5,-4.5
parent: 2
+ - uid: 1958
+ components:
+ - type: Transform
+ pos: -101.5,-24.5
+ parent: 2
+ - uid: 1959
+ components:
+ - type: Transform
+ pos: -101.5,-26.5
+ parent: 2
+ - uid: 1960
+ components:
+ - type: Transform
+ pos: -101.5,-28.5
+ parent: 2
+ - uid: 1963
+ components:
+ - type: Transform
+ pos: -101.5,-27.5
+ parent: 2
+ - uid: 1964
+ components:
+ - type: Transform
+ pos: -101.5,-30.5
+ parent: 2
+ - uid: 1972
+ components:
+ - type: Transform
+ pos: -101.5,-31.5
+ parent: 2
- uid: 1974
components:
- type: Transform
@@ -136060,6 +134828,11 @@ entities:
- type: Transform
pos: -97.5,-26.5
parent: 2
+ - uid: 1977
+ components:
+ - type: Transform
+ pos: -101.5,-32.5
+ parent: 2
- uid: 1978
components:
- type: Transform
@@ -136225,6 +134998,11 @@ entities:
- type: Transform
pos: -48.5,-21.5
parent: 2
+ - uid: 3490
+ components:
+ - type: Transform
+ pos: -101.5,-22.5
+ parent: 2
- uid: 3751
components:
- type: Transform
@@ -136295,6 +135073,11 @@ entities:
- type: Transform
pos: -31.5,-7.5
parent: 2
+ - uid: 4402
+ components:
+ - type: Transform
+ pos: -101.5,-23.5
+ parent: 2
- uid: 4526
components:
- type: Transform
@@ -136530,6 +135313,16 @@ entities:
- type: Transform
pos: -126.5,-13.5
parent: 2
+ - uid: 6516
+ components:
+ - type: Transform
+ pos: -92.5,-36.5
+ parent: 2
+ - uid: 6555
+ components:
+ - type: Transform
+ pos: -85.5,-37.5
+ parent: 2
- uid: 6682
components:
- type: Transform
@@ -136545,6 +135338,21 @@ entities:
- type: Transform
pos: -95.5,36.5
parent: 2
+ - uid: 6758
+ components:
+ - type: Transform
+ pos: -90.5,-36.5
+ parent: 2
+ - uid: 6760
+ components:
+ - type: Transform
+ pos: -82.5,-40.5
+ parent: 2
+ - uid: 6846
+ components:
+ - type: Transform
+ pos: -97.5,-32.5
+ parent: 2
- uid: 6897
components:
- type: Transform
@@ -136556,6 +135364,11 @@ entities:
rot: 3.141592653589793 rad
pos: -140.5,12.5
parent: 2
+ - uid: 7025
+ components:
+ - type: Transform
+ pos: -85.5,-39.5
+ parent: 2
- uid: 7145
components:
- type: Transform
@@ -136611,6 +135424,11 @@ entities:
- type: Transform
pos: -3.5,-21.5
parent: 2
+ - uid: 7242
+ components:
+ - type: Transform
+ pos: -97.5,-24.5
+ parent: 2
- uid: 7257
components:
- type: Transform
@@ -136674,11 +135492,6 @@ entities:
- type: Transform
pos: -141.5,-37.5
parent: 2
- - uid: 7844
- components:
- - type: Transform
- pos: -100.5,-27.5
- parent: 2
- uid: 7876
components:
- type: Transform
@@ -136990,6 +135803,11 @@ entities:
- type: Transform
pos: -7.5,-29.5
parent: 2
+ - uid: 8901
+ components:
+ - type: Transform
+ pos: -83.5,-43.5
+ parent: 2
- uid: 8920
components:
- type: Transform
@@ -137000,42 +135818,31 @@ entities:
- type: Transform
pos: -14.5,-68.5
parent: 2
- - uid: 8985
- components:
- - type: Transform
- pos: -100.5,-26.5
- parent: 2
- - uid: 9029
+ - uid: 8952
components:
- type: Transform
- pos: -100.5,-24.5
+ pos: -82.5,-39.5
parent: 2
- - uid: 9034
+ - uid: 8964
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -90.5,-35.5
+ pos: -81.5,-43.5
parent: 2
- uid: 9098
components:
- type: Transform
pos: -106.5,-45.5
parent: 2
- - uid: 9158
+ - uid: 9108
components:
- type: Transform
- pos: -100.5,-22.5
+ pos: -111.5,-45.5
parent: 2
- uid: 9324
components:
- type: Transform
pos: -30.5,22.5
parent: 2
- - uid: 9343
- components:
- - type: Transform
- pos: -90.5,-43.5
- parent: 2
- uid: 9539
components:
- type: Transform
@@ -137046,6 +135853,16 @@ entities:
- type: Transform
pos: -95.5,13.5
parent: 2
+ - uid: 9640
+ components:
+ - type: Transform
+ pos: -97.5,-28.5
+ parent: 2
+ - uid: 9647
+ components:
+ - type: Transform
+ pos: -80.5,-43.5
+ parent: 2
- uid: 9788
components:
- type: Transform
@@ -137123,16 +135940,6 @@ entities:
- type: Transform
pos: -83.5,-6.5
parent: 2
- - uid: 10861
- components:
- - type: Transform
- pos: -100.5,-31.5
- parent: 2
- - uid: 10863
- components:
- - type: Transform
- pos: -100.5,-32.5
- parent: 2
- uid: 11035
components:
- type: Transform
@@ -137168,11 +135975,6 @@ entities:
- type: Transform
pos: -30.5,-61.5
parent: 2
- - uid: 11162
- components:
- - type: Transform
- pos: -92.5,-43.5
- parent: 2
- uid: 11358
components:
- type: Transform
@@ -137283,6 +136085,11 @@ entities:
rot: 3.141592653589793 rad
pos: -123.5,-50.5
parent: 2
+ - uid: 16320
+ components:
+ - type: Transform
+ pos: -82.5,-82.5
+ parent: 2
- uid: 16488
components:
- type: Transform
@@ -137294,11 +136101,6 @@ entities:
- type: Transform
pos: -138.5,-26.5
parent: 2
- - uid: 16657
- components:
- - type: Transform
- pos: -100.5,-28.5
- parent: 2
- uid: 16695
components:
- type: Transform
@@ -137315,11 +136117,6 @@ entities:
- type: Transform
pos: -107.5,-61.5
parent: 2
- - uid: 16860
- components:
- - type: Transform
- pos: -100.5,-30.5
- parent: 2
- uid: 16906
components:
- type: Transform
@@ -137369,12 +136166,6 @@ entities:
- type: Transform
pos: -14.5,-70.5
parent: 2
- - uid: 17742
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -89.5,-38.5
- parent: 2
- uid: 18726
components:
- type: Transform
@@ -137468,11 +136259,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -120.5,37.5
parent: 2
- - uid: 20736
- components:
- - type: Transform
- pos: -100.5,-23.5
- parent: 2
- uid: 20844
components:
- type: Transform
@@ -137519,10 +136305,10 @@ entities:
- type: Transform
pos: -141.5,-8.5
parent: 2
- - uid: 22701
+ - uid: 22711
components:
- type: Transform
- pos: -39.5,-16.5
+ pos: -69.5,-34.5
parent: 2
- uid: 22904
components:
@@ -137599,17 +136385,16 @@ entities:
- type: Transform
pos: -18.5,-51.5
parent: 2
- - uid: 25403
+ - uid: 24335
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -113.5,-36.5
+ pos: -17.5,-51.5
parent: 2
- - uid: 25986
+ - uid: 25403
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -110.5,-45.5
+ rot: -1.5707963267948966 rad
+ pos: -113.5,-36.5
parent: 2
- proto: RemoteSignaller
entities:
@@ -137644,30 +136429,6 @@ entities:
- type: Transform
pos: -136.5,-48.5
parent: 2
-- proto: RiotBulletShield
- entities:
- - uid: 13722
- components:
- - type: Transform
- pos: -82.75542,-21.36933
- parent: 2
- - uid: 13803
- components:
- - type: Transform
- pos: -82.73979,-21.77558
- parent: 2
-- proto: RiotShield
- entities:
- - uid: 11228
- components:
- - type: Transform
- pos: -82.70854,-22.745094
- parent: 2
- - uid: 13506
- components:
- - type: Transform
- pos: -82.72417,-22.29197
- parent: 2
- proto: RobocopCircuitBoard
entities:
- uid: 24948
@@ -137675,18 +136436,6 @@ entities:
- type: Transform
pos: -118.270996,-74.35101
parent: 2
-- proto: RockGuitarInstrument
- entities:
- - uid: 22281
- components:
- - type: Transform
- pos: -55.535583,-37.513557
- parent: 2
- - uid: 25893
- components:
- - type: Transform
- pos: -129.55344,-29.254705
- parent: 2
- proto: RollingPin
entities:
- uid: 22096
@@ -137711,6 +136460,11 @@ entities:
parent: 2
- proto: ScrapFaxMachine
entities:
+ - uid: 3723
+ components:
+ - type: Transform
+ pos: -75.52578,-44.378353
+ parent: 2
- uid: 4992
components:
- type: Transform
@@ -137721,18 +136475,6 @@ entities:
- type: Transform
pos: -41.537453,-66.396194
parent: 2
- - uid: 14049
- components:
- - type: Transform
- pos: -73.4463,-46.27329
- parent: 2
-- proto: ScrapFireExtinguisher
- entities:
- - uid: 26202
- components:
- - type: Transform
- pos: -24.466484,-66.446915
- parent: 2
- proto: Screen
entities:
- uid: 17848
@@ -137746,31 +136488,6 @@ entities:
- type: Transform
pos: -36.5,-11.5
parent: 2
- - uid: 23792
- components:
- - type: Transform
- pos: -111.5,-43.5
- parent: 2
- - uid: 23795
- components:
- - type: Transform
- pos: -122.5,-48.5
- parent: 2
- - uid: 23819
- components:
- - type: Transform
- pos: -67.5,-51.5
- parent: 2
- - uid: 23859
- components:
- - type: Transform
- pos: -67.5,8.5
- parent: 2
- - uid: 23861
- components:
- - type: Transform
- pos: -55.5,8.5
- parent: 2
- uid: 24511
components:
- type: Transform
@@ -137855,11 +136572,6 @@ entities:
- type: Transform
pos: -118.52333,-76.418274
parent: 2
- - uid: 25891
- components:
- - type: Transform
- pos: -115.472176,29.748644
- parent: 2
- proto: SecurityTechFab
entities:
- uid: 2119
@@ -137874,17 +136586,17 @@ entities:
- type: Transform
pos: -53.5,-18.5
parent: 2
- - uid: 16319
+ - uid: 17831
components:
- type: Transform
- pos: -87.5,-50.5
+ pos: -88.5,-50.5
parent: 2
- proto: ShardGlassPlasma
entities:
- uid: 11090
components:
- type: Transform
- pos: -24.51336,-65.540665
+ pos: -24.495424,-65.501526
parent: 2
- proto: SheetGlass
entities:
@@ -137942,10 +136654,8 @@ entities:
- uid: 6249
components:
- type: Transform
- parent: 20514
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
+ pos: -125.32983,-24.36347
+ parent: 2
- uid: 6315
components:
- type: Transform
@@ -138076,6 +136786,11 @@ entities:
parent: 2
- proto: SheetUranium
entities:
+ - uid: 6248
+ components:
+ - type: Transform
+ pos: -125.61828,-24.535345
+ parent: 2
- uid: 6316
components:
- type: Transform
@@ -138426,12 +137141,6 @@ entities:
parent: 2
- type: DeviceLinkSink
invokeCounter: 1
- - uid: 5558
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -100.5,-23.5
- parent: 2
- uid: 6265
components:
- type: Transform
@@ -138457,24 +137166,94 @@ entities:
- type: Transform
pos: -126.5,-13.5
parent: 2
- - uid: 6607
+ - uid: 6797
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -100.5,-31.5
+ pos: -101.5,-22.5
parent: 2
- - uid: 6613
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - uid: 6798
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -100.5,-30.5
+ pos: -101.5,-24.5
+ parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - uid: 6805
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -101.5,-23.5
+ parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - uid: 6817
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -101.5,-30.5
+ parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - uid: 6818
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -101.5,-31.5
+ parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ - uid: 6820
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -101.5,-27.5
+ parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - uid: 6867
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -101.5,-28.5
parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - uid: 6883
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -101.5,-26.5
+ parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - uid: 6896
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -101.5,-32.5
+ parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 1
- uid: 9559
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -101.5,-44.5
parent: 2
+ - uid: 9646
+ components:
+ - type: Transform
+ pos: -91.5,-43.5
+ parent: 2
+ - uid: 10172
+ components:
+ - type: Transform
+ pos: -87.5,-43.5
+ parent: 2
- uid: 11159
components:
- type: Transform
@@ -138565,12 +137344,6 @@ entities:
parent: 2
- type: DeviceLinkSink
invokeCounter: 1
- - uid: 16381
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -100.5,-32.5
- parent: 2
- uid: 17815
components:
- type: Transform
@@ -138595,30 +137368,6 @@ entities:
parent: 2
- type: DeviceLinkSink
invokeCounter: 1
- - uid: 18648
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -100.5,-24.5
- parent: 2
- - uid: 18649
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -100.5,-26.5
- parent: 2
- - uid: 18694
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -100.5,-28.5
- parent: 2
- - uid: 18777
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -100.5,-22.5
- parent: 2
- uid: 19528
components:
- type: Transform
@@ -138665,50 +137414,6 @@ entities:
- type: Transform
pos: -87.5,26.5
parent: 2
- - uid: 20417
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -92.5,-40.5
- parent: 2
- - type: DeviceLinkSink
- invokeCounter: 1
- - uid: 20435
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -90.5,-40.5
- parent: 2
- - type: DeviceLinkSink
- invokeCounter: 1
- - uid: 20495
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -91.5,-40.5
- parent: 2
- - type: DeviceLinkSink
- invokeCounter: 1
- - uid: 20497
- components:
- - type: Transform
- pos: -79.5,-43.5
- parent: 2
- - type: DeviceLinkSink
- invokeCounter: 2
- - uid: 21672
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -100.5,-27.5
- parent: 2
- - uid: 22009
- components:
- - type: Transform
- pos: -87.5,-43.5
- parent: 2
- - type: DeviceLinkSink
- invokeCounter: 2
- uid: 22373
components:
- type: Transform
@@ -138727,13 +137432,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -22.5,16.5
parent: 2
- - uid: 22502
- components:
- - type: Transform
- pos: -83.5,-43.5
- parent: 2
- - type: DeviceLinkSink
- invokeCounter: 2
- uid: 25385
components:
- type: Transform
@@ -138847,10 +137545,10 @@ entities:
invokeCounter: 1
- proto: ShuttleConsoleCircuitboard
entities:
- - uid: 3615
+ - uid: 1127
components:
- type: Transform
- pos: -109.45768,-36.52115
+ pos: -29.41005,-72.5363
parent: 2
- proto: ShuttleWindow
entities:
@@ -138921,9 +137619,9 @@ entities:
parent: 2
- type: DeviceLinkSource
linkedPorts:
- 1936:
+ 1946:
- Pressed: Toggle
- 385:
+ 1936:
- Pressed: Toggle
- type: Label
currentLabel: Open Doors
@@ -139084,16 +137782,6 @@ entities:
currentLabel: Ignite Chamber
- type: NameModifier
baseName: signal button
- - uid: 10638
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -70.5,-1.5
- parent: 2
- - type: DeviceLinkSource
- linkedPorts:
- 4662:
- - Pressed: Trigger
- uid: 19541
components:
- type: MetaData
@@ -139293,7 +137981,7 @@ entities:
name: signal switch (Bridge Window Blastdoors)
- type: Transform
rot: 3.141592653589793 rad
- pos: -60.5,4.5
+ pos: -60.5,4.25
parent: 2
- type: SignalSwitch
state: True
@@ -139575,23 +138263,6 @@ entities:
- Off: Off
- proto: SignalSwitchDirectional
entities:
- - uid: 280
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -112.5,-42.5
- parent: 2
- - type: DeviceLinkSource
- linkedPorts:
- 7273:
- - On: Open
- - Off: Close
- 7274:
- - On: Open
- - Off: Close
- 7272:
- - On: Open
- - Off: Close
- uid: 3053
components:
- type: Transform
@@ -139685,6 +138356,33 @@ entities:
- Off: Close
lastSignals:
Status: True
+ - uid: 6852
+ components:
+ - type: MetaData
+ name: signal switch (Perma Lockdown)
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -89.5,-35.5
+ parent: 2
+ - type: SignalSwitch
+ state: True
+ - type: DeviceLinkSource
+ linkedPorts:
+ 4818:
+ - On: Open
+ - Off: Close
+ 6757:
+ - On: Open
+ - Off: Close
+ 6659:
+ - On: Open
+ - Off: Close
+ lastSignals:
+ Status: True
+ - type: Label
+ currentLabel: Perma Lockdown
+ - type: NameModifier
+ baseName: signal switch
- uid: 8067
components:
- type: Transform
@@ -139734,27 +138432,26 @@ entities:
8820:
- On: Open
- Off: Close
- - uid: 9429
+ - uid: 10204
components:
+ - type: MetaData
+ name: signal switch (Cell Shutters)
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -89.5,-39.5
+ rot: 3.141592653589793 rad
+ pos: -89.5,-40.5
parent: 2
- - type: SignalSwitch
- state: True
- type: DeviceLinkSource
linkedPorts:
- 20435:
- - On: Open
- - Off: Close
- 20495:
+ 9646:
- On: Open
- Off: Close
- 20417:
+ 10172:
- On: Open
- Off: Close
- lastSignals:
- Status: True
+ - type: Label
+ currentLabel: Cell Shutters
+ - type: NameModifier
+ baseName: signal switch
- uid: 11163
components:
- type: Transform
@@ -139789,22 +138486,6 @@ entities:
25623:
- On: Open
- Off: Close
- - uid: 17488
- components:
- - type: Transform
- pos: -112.5,-48.5
- parent: 2
- - type: DeviceLinkSource
- linkedPorts:
- 7275:
- - On: Open
- - Off: Close
- 7276:
- - On: Open
- - Off: Close
- 7277:
- - On: Open
- - Off: Close
- uid: 17816
components:
- type: MetaData
@@ -139817,13 +138498,13 @@ entities:
state: True
- type: DeviceLinkSource
linkedPorts:
- 5391:
+ 6659:
- On: Open
- Off: Close
- 5113:
+ 6757:
- On: Open
- Off: Close
- 5581:
+ 4818:
- On: Open
- Off: Close
lastSignals:
@@ -139844,31 +138525,31 @@ entities:
state: True
- type: DeviceLinkSource
linkedPorts:
- 18777:
+ 6797:
- On: Open
- Off: Close
- 5558:
+ 6805:
- On: Open
- Off: Close
- 18648:
+ 6798:
- On: Open
- Off: Close
- 18649:
+ 6883:
- On: Open
- Off: Close
- 21672:
+ 6820:
- On: Open
- Off: Close
- 18694:
+ 6867:
- On: Open
- Off: Close
- 16381:
+ 6817:
- On: Open
- Off: Close
- 6607:
+ 6818:
- On: Open
- Off: Close
- 6613:
+ 6896:
- On: Open
- Off: Close
lastSignals:
@@ -139942,33 +138623,39 @@ entities:
currentLabel: Privacy Shutters
- type: NameModifier
baseName: signal switch
- - uid: 24320
+ - uid: 22810
components:
- - type: MetaData
- name: signal switch (Emergency Lockdown)
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -131.5,-48.8
+ rot: 3.141592653589793 rad
+ pos: -116.5,-42.5
parent: 2
- - type: SignalSwitch
- state: True
- type: DeviceLinkSource
linkedPorts:
- 22284:
+ 7272:
- On: Open
- Off: Close
- 18724:
+ 7274:
- On: Open
- Off: Close
- 17192:
+ 7273:
+ - Off: Close
+ - On: Open
+ - uid: 22811
+ components:
+ - type: Transform
+ pos: -116.5,-48.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 7277:
+ - On: Open
+ - Off: Close
+ 7276:
+ - On: Open
+ - Off: Close
+ 7275:
- On: Open
- Off: Close
- lastSignals:
- Status: True
- - type: Label
- currentLabel: Emergency Lockdown
- - type: NameModifier
- baseName: signal switch
- uid: 24811
components:
- type: Transform
@@ -140101,7 +138788,7 @@ entities:
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -131.5,-48.2
+ pos: -131.5,-48.5
parent: 2
- type: SignalSwitch
state: True
@@ -140123,17 +138810,6 @@ entities:
Status: True
- proto: SignalTimer
entities:
- - uid: 4662
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -70.5,-0.5
- parent: 2
- - type: DeviceLinkSource
- linkedPorts:
- 9290:
- - Start: Open
- - Timer: Close
- uid: 16763
components:
- type: Transform
@@ -140274,6 +138950,18 @@ entities:
rot: -1.5707963267948966 rad
pos: -27.5,-28.5
parent: 2
+- proto: SignDangerMed
+ entities:
+ - uid: 26057
+ components:
+ - type: Transform
+ pos: -101.5,-1.5
+ parent: 2
+ - uid: 26059
+ components:
+ - type: Transform
+ pos: -93.5,-58.5
+ parent: 2
- proto: SignDirectionalAtmos
entities:
- uid: 812
@@ -140298,11 +138986,6 @@ entities:
parent: 2
- proto: SignDirectionalBridge
entities:
- - uid: 15237
- components:
- - type: Transform
- pos: -100.5,-0.3
- parent: 2
- uid: 15867
components:
- type: Transform
@@ -140315,6 +138998,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -27.5,-10.2
parent: 2
+ - uid: 22131
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -71.5,-54.2
+ parent: 2
- proto: SignDirectionalChapel
entities:
- uid: 15862
@@ -140335,6 +139024,12 @@ entities:
- type: Transform
pos: -92.5,-48.5
parent: 2
+ - uid: 15859
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -57.5,-13.2
+ parent: 2
- uid: 15869
components:
- type: Transform
@@ -140347,18 +139042,13 @@ entities:
rot: 3.141592653589793 rad
pos: -66.5,-50.2
parent: 2
- - uid: 20531
- components:
- - type: Transform
- pos: -65.5,-13.8
- parent: 2
- proto: SignDirectionalDorms
entities:
- - uid: 14096
+ - uid: 16423
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -75.5,-58.5
+ pos: -77.5,-58.5
parent: 2
- uid: 24508
components:
@@ -140367,23 +139057,22 @@ entities:
parent: 2
- proto: SignDirectionalEng
entities:
- - uid: 14748
+ - uid: 3304
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -101.5,-11.4
+ pos: -105.5,-0.5
parent: 2
- - uid: 15234
+ - uid: 14748
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -105.5,-0.5
+ pos: -101.5,-11.4
parent: 2
- uid: 15849
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -65.5,-13.2
+ pos: -65.5,-13.4
parent: 2
- uid: 19897
components:
@@ -140397,6 +139086,12 @@ entities:
rot: 3.141592653589793 rad
pos: -105.5,-21.5
parent: 2
+ - uid: 22137
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -73.5,-54.4
+ parent: 2
- uid: 23338
components:
- type: Transform
@@ -140423,6 +139118,11 @@ entities:
parent: 2
- proto: SignDirectionalEvac
entities:
+ - uid: 1991
+ components:
+ - type: Transform
+ pos: -101.5,-0.7
+ parent: 2
- uid: 15858
components:
- type: Transform
@@ -140435,18 +139135,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -99.5,-11.6
parent: 2
- - uid: 15934
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -100.5,-21.3
- parent: 2
- - uid: 18780
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -101.5,-36.3
- parent: 2
- uid: 19756
components:
- type: Transform
@@ -140459,10 +139147,23 @@ entities:
rot: 1.5707963267948966 rad
pos: -27.5,-10.4
parent: 2
- - uid: 20803
+ - uid: 19914
components:
- type: Transform
- pos: -100.5,-0.5
+ rot: 3.141592653589793 rad
+ pos: -101.5,-21.3
+ parent: 2
+ - uid: 22132
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -71.5,-54.4
+ parent: 2
+ - uid: 23992
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -102.5,-36.3
parent: 2
- uid: 25470
components:
@@ -140489,6 +139190,12 @@ entities:
rot: 3.141592653589793 rad
pos: -62.5,-50.4
parent: 2
+ - uid: 22133
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -71.5,-54.6
+ parent: 2
- uid: 24503
components:
- type: Transform
@@ -140546,22 +139253,17 @@ entities:
parent: 2
- proto: SignDirectionalMed
entities:
- - uid: 796
+ - uid: 1153
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -100.5,-21.5
+ pos: -102.5,-36.5
parent: 2
- uid: 11833
components:
- type: Transform
pos: -27.5,-10.8
parent: 2
- - uid: 15743
- components:
- - type: Transform
- pos: -100.5,-0.7
- parent: 2
- uid: 15857
components:
- type: Transform
@@ -140574,11 +139276,22 @@ entities:
rot: 1.5707963267948966 rad
pos: -99.5,-11.8
parent: 2
- - uid: 18942
+ - uid: 19775
+ components:
+ - type: Transform
+ pos: -101.5,-0.5
+ parent: 2
+ - uid: 19968
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -101.5,-36.5
+ pos: -101.5,-21.5
+ parent: 2
+ - uid: 22134
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -71.5,-54.8
parent: 2
- uid: 22636
components:
@@ -140602,28 +139315,34 @@ entities:
parent: 2
- proto: SignDirectionalSci
entities:
+ - uid: 3306
+ components:
+ - type: Transform
+ pos: -105.5,-0.7
+ parent: 2
- uid: 3662
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -31.5,-10.8
parent: 2
- - uid: 12470
+ - uid: 7614
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -41.5,-15.7
+ pos: -73.5,-54.8
parent: 2
- - uid: 15236
+ - uid: 12470
components:
- type: Transform
- pos: -105.5,-0.7
+ rot: -1.5707963267948966 rad
+ pos: -41.5,-15.7
parent: 2
- uid: 15851
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -65.5,-13.6
+ pos: -65.5,-13.8
parent: 2
- uid: 15865
components:
@@ -140635,11 +139354,23 @@ entities:
- type: Transform
pos: -106.5,-36.7
parent: 2
+ - uid: 19170
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -106.5,-43.5
+ parent: 2
- uid: 19967
components:
- type: Transform
pos: -105.5,-21.7
parent: 2
+ - uid: 24492
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -106.5,-47.5
+ parent: 2
- uid: 25473
components:
- type: Transform
@@ -140648,17 +139379,16 @@ entities:
parent: 2
- proto: SignDirectionalSec
entities:
- - uid: 1738
+ - uid: 2013
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -100.5,-21.7
+ pos: -101.5,-0.3
parent: 2
- uid: 15852
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -65.5,-13.4
+ pos: -65.5,-13.6
parent: 2
- uid: 15871
components:
@@ -140666,11 +139396,11 @@ entities:
rot: 1.5707963267948966 rad
pos: -101.5,-11.6
parent: 2
- - uid: 16503
+ - uid: 17416
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -101.5,-36.7
+ pos: -102.5,-36.7
parent: 2
- uid: 19966
components:
@@ -140678,6 +139408,18 @@ entities:
rot: -1.5707963267948966 rad
pos: -31.5,-10.6
parent: 2
+ - uid: 20897
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -101.5,-21.7
+ parent: 2
+ - uid: 22135
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -73.5,-54.6
+ parent: 2
- uid: 23720
components:
- type: Transform
@@ -140757,6 +139499,12 @@ entities:
rot: 3.141592653589793 rad
pos: -106.5,-36.3
parent: 2
+ - uid: 3307
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -105.5,-0.3
+ parent: 2
- uid: 4633
components:
- type: Transform
@@ -140769,11 +139517,11 @@ entities:
rot: 1.5707963267948966 rad
pos: -106.5,17.8
parent: 2
- - uid: 15235
+ - uid: 15850
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -105.5,-0.3
+ rot: -1.5707963267948966 rad
+ pos: -65.5,-13.2
parent: 2
- uid: 15866
components:
@@ -140799,11 +139547,11 @@ entities:
rot: 3.141592653589793 rad
pos: -105.5,-21.3
parent: 2
- - uid: 20570
+ - uid: 22136
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -57.5,-13.2
+ pos: -73.5,-54.2
parent: 2
- uid: 25468
components:
@@ -140811,13 +139559,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -76.5,-11.3
parent: 2
-- proto: SignDisposalSpace
- entities:
- - uid: 20769
- components:
- - type: Transform
- pos: -101.5,25.5
- parent: 2
- proto: SignElectricalMed
entities:
- uid: 18084
@@ -140952,16 +139693,6 @@ entities:
parent: 2
- proto: SignFlammableMed
entities:
- - uid: 1519
- components:
- - type: Transform
- pos: -92.5,-10.5
- parent: 2
- - uid: 8224
- components:
- - type: Transform
- pos: -90.5,-59.5
- parent: 2
- uid: 8290
components:
- type: Transform
@@ -140986,6 +139717,16 @@ entities:
rot: 1.5707963267948966 rad
pos: -106.5,0.5
parent: 2
+ - uid: 26058
+ components:
+ - type: Transform
+ pos: -101.5,-3.5
+ parent: 2
+ - uid: 26060
+ components:
+ - type: Transform
+ pos: -91.5,-58.5
+ parent: 2
- proto: SignGravity
entities:
- uid: 6196
@@ -141055,14 +139796,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -52.5,-49.5
parent: 2
-- proto: SignMaterials
- entities:
- - uid: 2534
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -107.5,-30.5
- parent: 2
- proto: SignMedical
entities:
- uid: 7561
@@ -141107,10 +139840,11 @@ entities:
parent: 2
- proto: SignNews
entities:
- - uid: 1970
+ - uid: 16011
components:
- type: Transform
- pos: -100.5,2.5
+ rot: -1.5707963267948966 rad
+ pos: -108.5,-32.5
parent: 2
- proto: SignPlaque
entities:
@@ -141133,11 +139867,11 @@ entities:
parent: 2
- proto: SignPrison
entities:
- - uid: 20502
+ - uid: 15914
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -93.5,-35.5
+ rot: 1.5707963267948966 rad
+ pos: -93.5,-36.5
parent: 2
- proto: SignPsychology
entities:
@@ -141160,19 +139894,17 @@ entities:
parent: 2
- proto: SignRedFive
entities:
- - uid: 6687
+ - uid: 17798
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -84.5,-39.5
+ pos: -88.5,-40.5
parent: 2
- proto: SignRedFour
entities:
- - uid: 6681
+ - uid: 17797
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -88.5,-39.5
+ pos: -92.5,-40.5
parent: 2
- uid: 20951
components:
@@ -141187,33 +139919,24 @@ entities:
- type: Transform
pos: -69.5,-54.5
parent: 2
- - uid: 19892
- components:
- - type: Transform
- pos: -97.5,-22.5
- parent: 2
-- proto: SignRedSix
- entities:
- - uid: 16330
+ - uid: 17794
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -80.5,-39.5
+ pos: -97.5,-24.5
parent: 2
- proto: SignRedThree
entities:
- - uid: 15260
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -97.5,-30.5
- parent: 2
- uid: 17548
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -69.5,-58.5
parent: 2
+ - uid: 17796
+ components:
+ - type: Transform
+ pos: -97.5,-32.5
+ parent: 2
- proto: SignRedTwo
entities:
- uid: 16509
@@ -141222,10 +139945,10 @@ entities:
rot: 3.141592653589793 rad
pos: -59.5,-54.5
parent: 2
- - uid: 22285
+ - uid: 17795
components:
- type: Transform
- pos: -97.5,-26.5
+ pos: -97.5,-28.5
parent: 2
- proto: SignRestroom
entities:
@@ -141270,17 +139993,11 @@ entities:
parent: 2
- proto: SignScience
entities:
- - uid: 20550
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -106.5,-47.5
- parent: 2
- - uid: 20551
+ - uid: 24491
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -106.5,-43.5
+ pos: -111.5,-47.5
parent: 2
- proto: SignSecureMed
entities:
@@ -141411,15 +140128,16 @@ entities:
parent: 2
- proto: SignSpace
entities:
- - uid: 5983
+ - uid: 4613
components:
- type: Transform
- pos: -152.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: -101.5,25.5
parent: 2
- - uid: 9426
+ - uid: 5983
components:
- type: Transform
- pos: -101.5,31.5
+ pos: -152.5,-2.5
parent: 2
- uid: 19325
components:
@@ -141432,14 +140150,6 @@ entities:
- type: Transform
pos: -12.5,-35.5
parent: 2
-- proto: SignSurgery
- entities:
- - uid: 6691
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-33.5
- parent: 2
- proto: SignTelecomms
entities:
- uid: 17026
@@ -141523,17 +140233,6 @@ entities:
- type: Transform
pos: -111.5,-20.5
parent: 2
- - uid: 9236
- components:
- - type: Transform
- pos: -69.5,-29.5
- parent: 2
- - uid: 9273
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,-35.5
- parent: 2
- uid: 12021
components:
- type: Transform
@@ -141556,12 +140255,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -90.5,-49.5
parent: 2
- - uid: 25897
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,-32.5
- parent: 2
- proto: SinkWide
entities:
- uid: 10787
@@ -141576,23 +140269,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -19.5,-3.5
parent: 2
-- proto: Skub
- entities:
- - uid: 2403
- components:
- - type: MetaData
- desc: Whatever this is, it is VERY illegal!
- name: illegal skub
- - type: Transform
- pos: -15.441118,17.515356
- parent: 2
- - type: Item
- size: Huge
- - type: Contraband
- allowedJobs: []
- allowedDepartments:
- - Security
- severity: Syndicate
- proto: SmartFridge
entities:
- uid: 3405
@@ -141600,10 +140276,10 @@ entities:
- type: Transform
pos: -53.5,-25.5
parent: 2
- - uid: 20155
+ - uid: 3920
components:
- type: Transform
- pos: -39.5,-26.5
+ pos: -37.5,-26.5
parent: 2
- proto: SMESAdvanced
entities:
@@ -143446,22 +142122,16 @@ entities:
rot: -1.5707963267948966 rad
pos: -122.5,33.5
parent: 2
- - uid: 16004
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -57.5,-61.5
- parent: 2
- uid: 20339
components:
- type: Transform
pos: -43.5,-70.5
parent: 2
- - uid: 24105
+ - uid: 20383
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -78.5,-38.5
+ pos: -72.5,-53.5
parent: 2
- proto: SpaceCash10
entities:
@@ -143475,50 +142145,13 @@ entities:
- type: Transform
pos: -21.659342,1.4020317
parent: 2
- - uid: 25898
- components:
- - type: Transform
- pos: -11.239828,-28.500414
- parent: 2
- - uid: 25899
- components:
- - type: Transform
- pos: -11.036703,-28.156664
- parent: 2
- - uid: 25900
- components:
- - type: Transform
- pos: -10.442953,-28.437914
- parent: 2
-- proto: SpaceHeaterAnchored
- entities:
- - uid: 17796
- components:
- - type: Transform
- pos: -108.5,-40.5
- parent: 2
- proto: SpaceHeaterEnabled
entities:
- - uid: 1689
- components:
- - type: Transform
- pos: -118.5,22.5
- parent: 2
- uid: 16180
components:
- type: Transform
pos: -86.5,-9.5
parent: 2
- - uid: 25906
- components:
- - type: Transform
- pos: -108.5,-2.5
- parent: 2
- - uid: 25907
- components:
- - type: Transform
- pos: -107.5,-2.5
- parent: 2
- proto: SpacemenFigureSpawner
entities:
- uid: 26079
@@ -143964,6 +142597,11 @@ entities:
- type: Transform
pos: -56.5,-15.5
parent: 2
+ - uid: 22115
+ components:
+ - type: Transform
+ pos: -61.5,-30.5
+ parent: 2
- uid: 22116
components:
- type: Transform
@@ -144020,20 +142658,15 @@ entities:
parent: 2
- proto: SpawnPointReporter
entities:
- - uid: 12632
- components:
- - type: Transform
- pos: -97.5,-0.5
- parent: 2
- - uid: 12635
+ - uid: 25675
components:
- type: Transform
- pos: -97.5,1.5
+ pos: -110.5,-31.5
parent: 2
- - uid: 13119
+ - uid: 25676
components:
- type: Transform
- pos: -94.5,1.5
+ pos: -113.5,-30.5
parent: 2
- proto: SpawnPointResearchAssistant
entities:
@@ -144264,12 +142897,10 @@ entities:
- type: Transform
pos: -37.085976,-30.474735
parent: 2
-- proto: SprayBottleWater
- entities:
- - uid: 18639
+ - uid: 25710
components:
- type: Transform
- pos: -83.4732,-47.447655
+ pos: -85.4901,-44.3657
parent: 2
- proto: StairDark
entities:
@@ -144304,12 +142935,6 @@ entities:
parent: 2
- proto: StairStage
entities:
- - uid: 957
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -85.5,-49.5
- parent: 2
- uid: 2716
components:
- type: Transform
@@ -144338,12 +142963,24 @@ entities:
rot: -1.5707963267948966 rad
pos: -96.5,34.5
parent: 2
+ - uid: 17828
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -87.5,-49.5
+ parent: 2
- uid: 20310
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -96.5,29.5
parent: 2
+ - uid: 23190
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -56.5,-71.5
+ parent: 2
- proto: StairStageDark
entities:
- uid: 1203
@@ -144352,6 +142989,16 @@ entities:
rot: -1.5707963267948966 rad
pos: -62.5,-35.5
parent: 2
+ - uid: 16806
+ components:
+ - type: Transform
+ pos: -69.5,-72.5
+ parent: 2
+ - uid: 16826
+ components:
+ - type: Transform
+ pos: -65.5,-72.5
+ parent: 2
- proto: StasisBed
entities:
- uid: 4033
@@ -144415,15 +143062,20 @@ entities:
- type: Transform
pos: -32.5,-10.5
parent: 2
+ - uid: 15998
+ components:
+ - type: Transform
+ pos: -113.5,-28.5
+ parent: 2
- uid: 20033
components:
- type: Transform
pos: -100.5,-11.5
parent: 2
- - uid: 20222
+ - uid: 22128
components:
- type: Transform
- pos: -94.5,3.5
+ pos: -72.5,-54.5
parent: 2
- uid: 22142
components:
@@ -144444,22 +143096,10 @@ entities:
parent: 2
- proto: Stool
entities:
- - uid: 954
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -87.5,-46.5
- parent: 2
- - uid: 959
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -90.5,-46.5
- parent: 2
- - uid: 961
+ - uid: 385
components:
- type: Transform
- pos: -88.5,-45.5
+ pos: -89.5,-45.5
parent: 2
- uid: 3652
components:
@@ -144495,16 +143135,21 @@ entities:
- type: Transform
pos: -54.5,-50.5
parent: 2
- - uid: 6550
+ - uid: 6504
components:
- type: Transform
- pos: -89.5,-45.5
+ pos: -92.5,-41.5
parent: 2
- - uid: 9372
+ - uid: 6588
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -92.5,-41.5
+ pos: -88.5,-45.5
+ parent: 2
+ - uid: 6590
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -90.5,-46.5
parent: 2
- uid: 14099
components:
@@ -144548,27 +143193,11 @@ entities:
rot: -1.5707963267948966 rad
pos: -44.5,-44.5
parent: 2
- - uid: 17912
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -90.5,-41.5
- parent: 2
- - uid: 19098
- components:
- - type: Transform
- pos: -84.5,-41.5
- parent: 2
- - uid: 19474
+ - uid: 17832
components:
- type: Transform
pos: -88.5,-41.5
parent: 2
- - uid: 19540
- components:
- - type: Transform
- pos: -80.5,-41.5
- parent: 2
- proto: StoolBar
entities:
- uid: 3422
@@ -144802,26 +143431,26 @@ entities:
- type: Transform
pos: -124.5,-20.5
parent: 2
- - uid: 9640
+ - uid: 7472
components:
- type: MetaData
name: Cargo Substation
- type: Transform
- pos: -89.5,0.5
+ pos: -88.5,0.5
parent: 2
- - uid: 15872
+ - uid: 7746
components:
- type: MetaData
- name: Service Substation
+ name: RAGE CAGE Substation
- type: Transform
- pos: -39.5,-40.5
+ pos: -52.5,-68.5
parent: 2
- - uid: 16760
+ - uid: 15872
components:
- type: MetaData
- name: RAGE CAGE Substation
+ name: Service Substation
- type: Transform
- pos: -57.5,-69.5
+ pos: -39.5,-40.5
parent: 2
- uid: 16864
components:
@@ -144994,23 +143623,6 @@ entities:
- type: Transform
pos: -142.5,-50.5
parent: 2
-- proto: SuitStorageEVAPrisoner
- entities:
- - uid: 6497
- components:
- - type: Transform
- pos: -93.5,-38.5
- parent: 2
- - uid: 18688
- components:
- - type: Transform
- pos: -93.5,-37.5
- parent: 2
- - uid: 18689
- components:
- - type: Transform
- pos: -93.5,-39.5
- parent: 2
- proto: SuitStorageHOS
entities:
- uid: 6775
@@ -145354,28 +143966,6 @@ entities:
- SurveillanceCameraEngineering
nameSet: True
id: Science Substation
- - uid: 4808
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -111.5,-29.5
- parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: Tech Storage
- - uid: 4811
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -115.5,-30.5
- parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: Secure Tech Storage
- uid: 9837
components:
- type: Transform
@@ -145386,26 +143976,26 @@ entities:
- SurveillanceCameraEngineering
nameSet: True
id: Northeast Maintenance Substation
- - uid: 22988
+ - uid: 23759
components:
- type: Transform
- pos: -92.5,-9.5
+ pos: -10.5,-20.5
parent: 2
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraEngineering
nameSet: True
- id: 'Plasma Pit #045'
- - uid: 23759
+ id: Evac Storage
+ - uid: 23784
components:
- type: Transform
- pos: -10.5,-20.5
+ pos: -84.5,-9.5
parent: 2
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraEngineering
nameSet: True
- id: Evac Storage
+ id: Telecommunications South
- uid: 23793
components:
- type: Transform
@@ -145656,63 +144246,30 @@ entities:
rot: -1.5707963267948966 rad
pos: -123.5,4.5
parent: 2
- - uid: 26210
+- proto: SurveillanceCameraGeneral
+ entities:
+ - uid: 2400
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -148.5,2.5
- parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: TEG Burn Chamber
- - uid: 26211
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -136.5,-16.5
- parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: AME
- - uid: 26226
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -90.5,-60.5
+ pos: -106.5,-56.5
parent: 2
- type: SurveillanceCamera
setupAvailableNetworks:
- - SurveillanceCameraEngineering
+ - SurveillanceCameraGeneral
nameSet: True
- id: 'Plasma Pit #046'
- - uid: 26227
+ id: Southwest Hallway
+ - uid: 23707
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -86.5,-1.5
- parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: telecommunications
-- proto: SurveillanceCameraGeneral
- entities:
- - uid: 2400
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -106.5,-56.5
+ pos: -69.5,-55.5
parent: 2
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraGeneral
nameSet: True
- id: Southwest Hallway
+ id: Dorm West
- uid: 23708
components:
- type: Transform
@@ -145843,105 +144400,82 @@ entities:
- SurveillanceCameraGeneral
nameSet: True
id: Evac Centre
- - uid: 23835
+ - uid: 23792
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -117.5,-43.5
+ pos: -99.5,7.5
parent: 2
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraGeneral
nameSet: True
- id: Science Hallway
- - uid: 24675
+ id: Cargo Front
+ - uid: 23819
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -70.5,-18.5
+ rot: 1.5707963267948966 rad
+ pos: -102.5,-11.5
parent: 2
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraGeneral
nameSet: True
- id: Cryosleep
- - uid: 25686
+ id: West Hallway
+ - uid: 23835
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -61.5,-18.5
+ pos: -117.5,-43.5
parent: 2
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraGeneral
nameSet: True
- id: Service Plaza North
- - uid: 25687
+ id: Science Hallway
+ - uid: 24675
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -86.5,-12.5
+ pos: -70.5,-18.5
parent: 2
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraGeneral
nameSet: True
- id: West Hallway
- - uid: 26212
+ id: Cryosleep
+ - uid: 25683
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -101.5,3.5
+ pos: -75.5,-56.5
parent: 2
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraGeneral
nameSet: True
- id: Northwest Hallway
- - uid: 26213
+ id: Dorms Entrance
+ - uid: 25686
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -102.5,23.5
+ rot: 3.141592653589793 rad
+ pos: -61.5,-18.5
parent: 2
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraGeneral
nameSet: True
- id: Disposals
- - uid: 26214
+ id: Service Plaza North
+ - uid: 25687
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -105.5,-13.5
+ rot: 3.141592653589793 rad
+ pos: -86.5,-12.5
parent: 2
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraGeneral
nameSet: True
id: West Hallway
- - uid: 26218
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -101.5,-29.5
- parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraGeneral
- nameSet: True
- id: Southwest Hallway
- - uid: 26225
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -57.5,-42.5
- parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraGeneral
- nameSet: True
- id: Pool East
- proto: SurveillanceCameraMedical
entities:
- uid: 8625
@@ -146135,6 +144669,17 @@ entities:
- SurveillanceCameraMedical
nameSet: True
id: Storage
+ - uid: 23778
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,-45.5
+ parent: 2
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraMedical
+ nameSet: True
+ id: Freezer
- uid: 23780
components:
- type: Transform
@@ -146190,17 +144735,6 @@ entities:
- SurveillanceCameraMedical
nameSet: True
id: Hallway North
- - uid: 26228
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,-44.5
- parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraMedical
- nameSet: True
- id: Freezer
- proto: SurveillanceCameraRouterCommand
entities:
- uid: 16844
@@ -146210,10 +144744,10 @@ entities:
parent: 2
- proto: SurveillanceCameraRouterConstructed
entities:
- - uid: 11060
+ - uid: 22275
components:
- type: Transform
- pos: -86.5,2.5
+ pos: -84.5,1.5
parent: 2
- proto: SurveillanceCameraRouterEngineering
entities:
@@ -146310,6 +144844,17 @@ entities:
- SurveillanceCameraScience
nameSet: True
id: Xenoarcheology Airlock
+ - uid: 16976
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -112.5,-39.5
+ parent: 2
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraScience
+ nameSet: True
+ id: Cargo Bay
- uid: 17055
components:
- type: Transform
@@ -146416,6 +144961,17 @@ entities:
- SurveillanceCameraSecurity
nameSet: True
id: Evac Checkpoint
+ - uid: 24300
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -97.5,-18.5
+ parent: 2
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Entrance
- uid: 24301
components:
- type: Transform
@@ -146469,78 +145025,168 @@ entities:
- SurveillanceCameraSecurity
nameSet: True
id: Breakroom
- - uid: 26216
+ - uid: 24306
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -99.5,-22.5
+ parent: 2
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Cell 1
+ - uid: 24307
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -99.5,-26.5
+ parent: 2
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Cell 2
+ - uid: 24308
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -99.5,-30.5
+ parent: 2
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Cell 3
+ - uid: 24309
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -102.5,-25.5
+ parent: 2
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Cell Exterior
+ - uid: 24310
+ components:
+ - type: Transform
+ pos: -97.5,-41.5
+ parent: 2
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Detective Office
+ - uid: 24311
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -96.5,-45.5
+ parent: 2
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Lawyer Office
+ - uid: 24312
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -86.5,-33.5
+ parent: 2
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Interogation
+ - uid: 24313
+ components:
+ - type: Transform
+ pos: -82.5,-35.5
+ parent: 2
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: HoS Office
+ - uid: 24315
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -88.5,-41.5
+ pos: -100.5,-35.5
parent: 2
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraSecurity
nameSet: True
- id: Permabrig Cell 4
- - uid: 26217
+ id: Detective Bedroom
+ - uid: 24316
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -84.5,-44.5
+ pos: -89.5,-37.5
parent: 2
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraSecurity
nameSet: True
- id: Permabrig
- - uid: 26219
+ id: Permabrig Hallway
+ - uid: 24317
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -84.5,-41.5
+ pos: -92.5,-42.5
parent: 2
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraSecurity
nameSet: True
- id: Permabrig Cell 5
- - uid: 26220
+ id: Cell 4
+ - uid: 24318
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -80.5,-41.5
+ pos: -88.5,-42.5
parent: 2
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraSecurity
nameSet: True
- id: Permabrig Cell 6
- - uid: 26221
+ id: Cell 5
+ - uid: 24319
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -83.5,-37.5
+ pos: -82.5,-37.5
parent: 2
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraSecurity
nameSet: True
- id: Permabrig Corridor
- - uid: 26222
+ id: Visitation
+ - uid: 24320
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -90.5,-41.5
+ rot: 3.141592653589793 rad
+ pos: -85.5,-44.5
parent: 2
- - uid: 26223
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Permabrig
+ - uid: 24321
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -92.5,-49.5
+ pos: -91.5,-50.5
parent: 2
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraSecurity
nameSet: True
- id: Permabrig Bathroom
+ id: Permabrig Restroom
- proto: SurveillanceCameraService
entities:
- uid: 23712
@@ -146565,6 +145211,17 @@ entities:
- SurveillanceCameraService
nameSet: True
id: Library
+ - uid: 23718
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -109.5,-30.5
+ parent: 2
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Newsroom
- uid: 23722
components:
- type: Transform
@@ -146619,29 +145276,28 @@ entities:
- SurveillanceCameraService
nameSet: True
id: Theatre
- - uid: 26224
+- proto: SurveillanceCameraSupply
+ entities:
+ - uid: 23760
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -66.5,-37.5
+ pos: -4.5,-20.5
parent: 2
- type: SurveillanceCamera
setupAvailableNetworks:
- - SurveillanceCameraService
+ - SurveillanceCameraSupply
nameSet: True
- id: Bar Outdoor
-- proto: SurveillanceCameraSupply
- entities:
- - uid: 23760
+ id: Evac Storage
+ - uid: 23786
components:
- type: Transform
- pos: -4.5,-20.5
+ pos: -88.5,7.5
parent: 2
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraSupply
nameSet: True
- id: Evac Storage
+ id: Warehouse
- uid: 23787
components:
- type: Transform
@@ -146739,22 +145395,12 @@ entities:
- SurveillanceCameraSupply
nameSet: True
id: QM Bedroom
- - uid: 26215
- components:
- - type: Transform
- pos: -88.5,7.5
- parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSupply
- nameSet: True
- id: Warehouse
- proto: SurveillanceCameraWirelessRouterEntertainment
entities:
- - uid: 14530
+ - uid: 15992
components:
- type: Transform
- pos: -99.5,2.5
+ pos: -111.5,-30.5
parent: 2
- proto: SurveillanceWirelessCameraAnchoredEntertainment
entities:
@@ -146825,17 +145471,17 @@ entities:
id: PlasmaFire TV
- proto: SurveillanceWirelessCameraMovableEntertainment
entities:
- - uid: 5639
+ - uid: 16003
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -93.5,-1.5
+ rot: 1.5707963267948966 rad
+ pos: -114.5,-33.5
parent: 2
- - uid: 6016
+ - uid: 16023
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -94.5,-0.5
+ pos: -113.5,-32.5
parent: 2
- uid: 16989
components:
@@ -146848,25 +145494,6 @@ entities:
- SurveillanceCameraEntertainment
nameSet: True
id: LiveLeak
-- proto: SyndieFlag
- entities:
- - uid: 2406
- components:
- - type: Transform
- pos: -13.5,19.5
- parent: 2
- - type: Contraband
- allowedJobs: []
- allowedDepartments:
- - Security
- severity: Syndicate
-- proto: SyndieHandyFlag
- entities:
- - uid: 18682
- components:
- - type: Transform
- pos: -13.48303,18.436016
- parent: 2
- proto: SynthesizerInstrument
entities:
- uid: 26036
@@ -146933,11 +145560,10 @@ entities:
rot: 1.5707963267948966 rad
pos: -139.5,-7.5
parent: 2
- - uid: 973
+ - uid: 1082
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -82.5,-47.5
+ pos: -81.5,-40.5
parent: 2
- uid: 1121
components:
@@ -146983,6 +145609,12 @@ entities:
- type: Transform
pos: -101.5,-66.5
parent: 2
+ - uid: 1674
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -75.5,-44.5
+ parent: 2
- uid: 1998
components:
- type: Transform
@@ -147026,28 +145658,17 @@ entities:
- type: Transform
pos: -36.5,-30.5
parent: 2
- - uid: 2548
+ - uid: 2546
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -96.5,-1.5
+ rot: -1.5707963267948966 rad
+ pos: -75.5,-43.5
parent: 2
- uid: 2595
components:
- type: Transform
pos: -88.5,-26.5
parent: 2
- - uid: 2613
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -113.5,-29.5
- parent: 2
- - uid: 2624
- components:
- - type: Transform
- pos: -97.5,-1.5
- parent: 2
- uid: 2647
components:
- type: Transform
@@ -147233,6 +145854,16 @@ entities:
rot: 1.5707963267948966 rad
pos: -34.5,-50.5
parent: 2
+ - uid: 4155
+ components:
+ - type: Transform
+ pos: -17.5,-54.5
+ parent: 2
+ - uid: 4156
+ components:
+ - type: Transform
+ pos: -17.5,-50.5
+ parent: 2
- uid: 4172
components:
- type: Transform
@@ -147260,11 +145891,15 @@ entities:
rot: -1.5707963267948966 rad
pos: -21.5,-48.5
parent: 2
- - uid: 4262
+ - uid: 4254
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,-70.5
+ pos: -54.5,-68.5
+ parent: 2
+ - uid: 4282
+ components:
+ - type: Transform
+ pos: -55.5,-68.5
parent: 2
- uid: 4291
components:
@@ -147520,6 +146155,31 @@ entities:
- type: Transform
pos: -90.5,-32.5
parent: 2
+ - uid: 6710
+ components:
+ - type: Transform
+ pos: -81.5,-39.5
+ parent: 2
+ - uid: 6711
+ components:
+ - type: Transform
+ pos: -84.5,-39.5
+ parent: 2
+ - uid: 6712
+ components:
+ - type: Transform
+ pos: -83.5,-39.5
+ parent: 2
+ - uid: 6716
+ components:
+ - type: Transform
+ pos: -80.5,-39.5
+ parent: 2
+ - uid: 6721
+ components:
+ - type: Transform
+ pos: -80.5,-40.5
+ parent: 2
- uid: 6731
components:
- type: Transform
@@ -147542,11 +146202,21 @@ entities:
- type: Transform
pos: -88.5,-25.5
parent: 2
+ - uid: 6854
+ components:
+ - type: Transform
+ pos: -84.5,-40.5
+ parent: 2
- uid: 6868
components:
- type: Transform
pos: -93.5,-29.5
parent: 2
+ - uid: 6893
+ components:
+ - type: Transform
+ pos: -83.5,-40.5
+ parent: 2
- uid: 6992
components:
- type: Transform
@@ -147558,17 +146228,6 @@ entities:
- type: Transform
pos: -93.5,-28.5
parent: 2
- - uid: 7109
- components:
- - type: Transform
- pos: -78.5,-74.5
- parent: 2
- - uid: 7121
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -98.5,-1.5
- parent: 2
- uid: 7328
components:
- type: Transform
@@ -147595,6 +146254,11 @@ entities:
rot: -1.5707963267948966 rad
pos: -124.5,-55.5
parent: 2
+ - uid: 7574
+ components:
+ - type: Transform
+ pos: -60.5,-31.5
+ parent: 2
- uid: 7598
components:
- type: Transform
@@ -147643,6 +146307,12 @@ entities:
- type: Transform
pos: -146.5,-45.5
parent: 2
+ - uid: 8159
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -61.5,-23.5
+ parent: 2
- uid: 8274
components:
- type: Transform
@@ -147753,11 +146423,15 @@ entities:
rot: 3.141592653589793 rad
pos: -36.5,-52.5
parent: 2
- - uid: 9028
+ - uid: 8981
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -89.5,-46.5
+ pos: -62.5,-31.5
+ parent: 2
+ - uid: 8983
+ components:
+ - type: Transform
+ pos: -61.5,-31.5
parent: 2
- uid: 9041
components:
@@ -147796,11 +146470,35 @@ entities:
- type: Transform
pos: -46.5,-24.5
parent: 2
+ - uid: 9343
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -62.5,-23.5
+ parent: 2
- uid: 9437
components:
- type: Transform
pos: -47.5,-24.5
parent: 2
+ - uid: 9461
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -85.5,-44.5
+ parent: 2
+ - uid: 9625
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -92.5,-42.5
+ parent: 2
+ - uid: 9626
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -88.5,-42.5
+ parent: 2
- uid: 9702
components:
- type: Transform
@@ -147837,17 +146535,34 @@ entities:
rot: -1.5707963267948966 rad
pos: -92.5,-47.5
parent: 2
+ - uid: 10171
+ components:
+ - type: Transform
+ pos: -89.5,-46.5
+ parent: 2
- uid: 10180
components:
- type: Transform
pos: -92.5,-19.5
parent: 2
+ - uid: 10203
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -85.5,-44.5
+ parent: 2
- uid: 10455
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -37.5,-46.5
parent: 2
+ - uid: 10906
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -60.5,-23.5
+ parent: 2
- uid: 11104
components:
- type: Transform
@@ -147866,20 +146581,11 @@ entities:
rot: -1.5707963267948966 rad
pos: -26.5,8.5
parent: 2
- - uid: 13831
- components:
- - type: Transform
- pos: -73.5,-44.5
- parent: 2
- - uid: 13965
- components:
- - type: Transform
- pos: -73.5,-46.5
- parent: 2
- - uid: 13967
+ - uid: 13560
components:
- type: Transform
- pos: -73.5,-45.5
+ rot: 1.5707963267948966 rad
+ pos: -88.5,-46.5
parent: 2
- uid: 14047
components:
@@ -147905,40 +146611,16 @@ entities:
rot: 1.5707963267948966 rad
pos: -66.5,-54.5
parent: 2
- - uid: 14209
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -113.5,-33.5
- parent: 2
- - uid: 14243
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -112.5,-29.5
- parent: 2
- - uid: 14245
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -111.5,-29.5
- parent: 2
- - uid: 14247
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -112.5,-33.5
- parent: 2
- - uid: 14251
+ - uid: 14657
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -111.5,-33.5
+ pos: -136.5,26.5
parent: 2
- - uid: 14657
+ - uid: 15011
components:
- type: Transform
- pos: -136.5,26.5
+ rot: 1.5707963267948966 rad
+ pos: -71.5,-42.5
parent: 2
- uid: 15332
components:
@@ -147946,23 +146628,15 @@ entities:
rot: 3.141592653589793 rad
pos: -35.5,0.5
parent: 2
- - uid: 15922
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-52.5
- parent: 2
- - uid: 16290
+ - uid: 16000
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-48.5
+ pos: -109.5,-29.5
parent: 2
- - uid: 16320
+ - uid: 16001
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -83.5,-47.5
+ pos: -109.5,-30.5
parent: 2
- uid: 16476
components:
@@ -147989,17 +146663,6 @@ entities:
- type: Transform
pos: -30.5,-65.5
parent: 2
- - uid: 16661
- components:
- - type: Transform
- pos: -88.5,-46.5
- parent: 2
- - uid: 16806
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -129.5,-29.5
- parent: 2
- uid: 16945
components:
- type: Transform
@@ -148016,12 +146679,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -96.5,35.5
parent: 2
- - uid: 17000
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -129.5,-28.5
- parent: 2
- uid: 17058
components:
- type: Transform
@@ -148074,23 +146731,17 @@ entities:
- type: Transform
pos: -91.5,-17.5
parent: 2
- - uid: 18291
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -101.5,30.5
- parent: 2
- - uid: 18620
+ - uid: 17825
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,-69.5
+ rot: -1.5707963267948966 rad
+ pos: -84.5,-44.5
parent: 2
- - uid: 18787
+ - uid: 18291
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -91.5,-61.5
+ rot: 1.5707963267948966 rad
+ pos: -101.5,30.5
parent: 2
- uid: 18788
components:
@@ -148140,16 +146791,6 @@ entities:
rot: 3.141592653589793 rad
pos: -92.5,25.5
parent: 2
- - uid: 19762
- components:
- - type: Transform
- pos: -84.5,-42.5
- parent: 2
- - uid: 19914
- components:
- - type: Transform
- pos: -80.5,-42.5
- parent: 2
- uid: 20302
components:
- type: Transform
@@ -148160,12 +146801,6 @@ entities:
- type: Transform
pos: -121.5,36.5
parent: 2
- - uid: 20504
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -70.5,-42.5
- parent: 2
- uid: 20632
components:
- type: Transform
@@ -148212,10 +146847,11 @@ entities:
rot: 3.141592653589793 rad
pos: -35.5,-46.5
parent: 2
- - uid: 21674
+ - uid: 21047
components:
- type: Transform
- pos: -88.5,-42.5
+ rot: 3.141592653589793 rad
+ pos: -74.5,-73.5
parent: 2
- uid: 22086
components:
@@ -148227,12 +146863,6 @@ entities:
- type: Transform
pos: -23.5,-4.5
parent: 2
- - uid: 22275
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,-18.5
- parent: 2
- uid: 22298
components:
- type: Transform
@@ -148266,6 +146896,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -2.5,-6.5
parent: 2
+ - uid: 22968
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,-6.5
+ parent: 2
- uid: 23295
components:
- type: Transform
@@ -148283,11 +146919,6 @@ entities:
rot: 3.141592653589793 rad
pos: -134.5,-1.5
parent: 2
- - uid: 23456
- components:
- - type: Transform
- pos: -121.5,-0.5
- parent: 2
- uid: 23704
components:
- type: Transform
@@ -148339,25 +146970,26 @@ entities:
- type: Transform
pos: -98.5,-24.5
parent: 2
- - uid: 26145
+ - uid: 25909
components:
- type: Transform
- pos: -138.5,23.5
+ rot: -1.5707963267948966 rad
+ pos: -75.5,-42.5
parent: 2
- - uid: 26146
+ - uid: 26055
components:
- type: Transform
- pos: -138.5,24.5
+ pos: -93.5,-61.5
parent: 2
- - uid: 26194
+ - uid: 26145
components:
- type: Transform
- pos: -74.5,-24.5
+ pos: -138.5,23.5
parent: 2
- - uid: 26195
+ - uid: 26146
components:
- type: Transform
- pos: -73.5,-24.5
+ pos: -138.5,24.5
parent: 2
- proto: TableCarpet
entities:
@@ -148399,28 +147031,17 @@ entities:
parent: 2
- proto: TableCounterMetal
entities:
- - uid: 9639
- components:
- - type: Transform
- pos: -132.5,-29.5
- parent: 2
- uid: 21479
components:
- type: Transform
pos: -112.5,36.5
parent: 2
- - uid: 24355
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -132.5,-28.5
- parent: 2
- proto: TableFancyBlue
entities:
- - uid: 22323
+ - uid: 23451
components:
- type: Transform
- pos: -68.5,-70.5
+ pos: -67.5,-69.5
parent: 2
- proto: TableFancyRed
entities:
@@ -148430,15 +147051,14 @@ entities:
rot: 1.5707963267948966 rad
pos: -119.5,26.5
parent: 2
-- proto: TableFancyWhite
+- proto: TableReinforced
entities:
- - uid: 8567
+ - uid: 321
components:
- type: Transform
- pos: -81.5,-67.5
+ rot: 1.5707963267948966 rad
+ pos: -39.5,-16.5
parent: 2
-- proto: TableReinforced
- entities:
- uid: 323
components:
- type: Transform
@@ -148510,11 +147130,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -111.5,-7.5
parent: 2
- - uid: 2410
- components:
- - type: Transform
- pos: -13.5,18.5
- parent: 2
- uid: 2514
components:
- type: Transform
@@ -148616,6 +147231,11 @@ entities:
rot: 1.5707963267948966 rad
pos: -38.5,-26.5
parent: 2
+ - uid: 3919
+ components:
+ - type: Transform
+ pos: -39.5,-26.5
+ parent: 2
- uid: 4543
components:
- type: Transform
@@ -148628,18 +147248,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -100.5,12.5
parent: 2
- - uid: 5625
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -93.5,0.5
- parent: 2
- - uid: 5642
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -95.5,0.5
- parent: 2
- uid: 5720
components:
- type: Transform
@@ -148655,12 +147263,6 @@ entities:
- type: Transform
pos: -111.5,-13.5
parent: 2
- - uid: 7117
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -94.5,0.5
- parent: 2
- uid: 7292
components:
- type: Transform
@@ -148697,16 +147299,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -119.5,-42.5
parent: 2
- - uid: 9336
- components:
- - type: Transform
- pos: -91.5,-40.5
- parent: 2
- - uid: 9345
- components:
- - type: Transform
- pos: -92.5,-40.5
- parent: 2
- uid: 10074
components:
- type: Transform
@@ -148719,21 +147311,29 @@ entities:
rot: 1.5707963267948966 rad
pos: -19.5,11.5
parent: 2
- - uid: 11247
- components:
- - type: Transform
- pos: -90.5,-40.5
- parent: 2
- uid: 11612
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -27.5,6.5
parent: 2
- - uid: 22697
+ - uid: 16013
components:
- type: Transform
- pos: -37.5,-26.5
+ rot: 3.141592653589793 rad
+ pos: -114.5,-31.5
+ parent: 2
+ - uid: 16029
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -113.5,-31.5
+ parent: 2
+ - uid: 16032
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -112.5,-31.5
parent: 2
- uid: 23881
components:
@@ -149296,12 +147896,6 @@ entities:
rot: 3.141592653589793 rad
pos: -60.5,-52.5
parent: 2
- - uid: 14544
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -60.5,-31.5
- parent: 2
- uid: 14795
components:
- type: Transform
@@ -149341,12 +147935,6 @@ entities:
- type: Transform
pos: -68.5,-37.5
parent: 2
- - uid: 16001
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -77.5,-33.5
- parent: 2
- uid: 16506
components:
- type: Transform
@@ -149374,58 +147962,28 @@ entities:
rot: 1.5707963267948966 rad
pos: -35.5,-42.5
parent: 2
- - uid: 17106
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -76.5,-33.5
- parent: 2
- uid: 17109
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -66.5,-29.5
parent: 2
- - uid: 17209
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -78.5,-33.5
- parent: 2
- - uid: 17797
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -62.5,-23.5
- parent: 2
- uid: 17860
components:
- type: Transform
pos: -70.5,-35.5
parent: 2
- - uid: 17990
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -61.5,-23.5
- parent: 2
- uid: 18195
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -54.5,-44.5
parent: 2
- - uid: 18623
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -66.5,-71.5
- parent: 2
- - uid: 19307
+ - uid: 19257
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -68.5,-40.5
+ rot: 3.141592653589793 rad
+ pos: -78.5,-31.5
parent: 2
- uid: 19768
components:
@@ -149438,36 +147996,12 @@ entities:
rot: 1.5707963267948966 rad
pos: -69.5,-26.5
parent: 2
- - uid: 20290
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -70.5,-71.5
- parent: 2
- uid: 20336
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -70.5,-37.5
parent: 2
- - uid: 20771
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -62.5,-31.5
- parent: 2
- - uid: 21049
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -61.5,-31.5
- parent: 2
- - uid: 21087
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -60.5,-23.5
- parent: 2
- uid: 21474
components:
- type: Transform
@@ -149495,6 +148029,28 @@ entities:
- type: Transform
pos: -119.5,-76.5
parent: 2
+ - uid: 23435
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -78.5,-29.5
+ parent: 2
+ - uid: 23453
+ components:
+ - type: Transform
+ pos: -69.5,-70.5
+ parent: 2
+ - uid: 23454
+ components:
+ - type: Transform
+ pos: -65.5,-70.5
+ parent: 2
+ - uid: 23667
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -78.5,-30.5
+ parent: 2
- uid: 23866
components:
- type: Transform
@@ -149555,16 +148111,22 @@ entities:
- type: Transform
pos: -57.5,-78.5
parent: 2
+ - type: ContainerContainer
+ containers:
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
- type: ApcPowerReceiver
powerLoad: 500
missingComponents:
- - Destructible
- - Machine
- WiresPanel
- EncryptionKeyHolder
- TelecomServer
- - ContainerContainer
- - Construction
- proto: TelecomServerCircuitboard
entities:
- uid: 4499
@@ -149581,10 +148143,10 @@ entities:
parent: 2
- proto: TelecomServerFilledCommand
entities:
- - uid: 22699
+ - uid: 4451
components:
- type: Transform
- pos: -84.5,1.5
+ pos: -84.5,2.5
parent: 2
- proto: TelecomServerFilledCommon
entities:
@@ -149616,10 +148178,10 @@ entities:
parent: 2
- proto: TelecomServerFilledSecurity
entities:
- - uid: 17190
+ - uid: 16461
components:
- type: Transform
- pos: -86.5,1.5
+ pos: -86.5,2.5
parent: 2
- proto: TelecomServerFilledService
entities:
@@ -149727,12 +148289,6 @@ entities:
- type: Transform
pos: -96.5,-36.5
parent: 2
- - uid: 6707
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-28.5
- parent: 2
- uid: 6842
components:
- type: Transform
@@ -149906,11 +148462,6 @@ entities:
- type: Transform
pos: -131.58072,-4.4554005
parent: 2
- - uid: 23223
- components:
- - type: Transform
- pos: -113.571075,-33.48745
- parent: 2
- uid: 24567
components:
- type: Transform
@@ -149921,7 +148472,7 @@ entities:
- uid: 16894
components:
- type: Transform
- pos: -95.494835,32.70732
+ pos: -95.55058,35.704193
parent: 2
- uid: 19748
components:
@@ -149935,25 +148486,8 @@ entities:
- type: Transform
pos: -72.002045,-0.3785391
parent: 2
-- proto: ToolboxMechanical
- entities:
- - uid: 22894
- components:
- - type: Transform
- pos: -66.50669,-71.42258
- parent: 2
- - uid: 23114
- components:
- - type: Transform
- pos: -70.53794,-71.40695
- parent: 2
- proto: ToolboxMechanicalFilled
entities:
- - uid: 4273
- components:
- - type: Transform
- pos: -113.43045,-33.284325
- parent: 2
- uid: 7813
components:
- type: Transform
@@ -149970,6 +148504,16 @@ entities:
- type: Transform
pos: -92.551056,25.64724
parent: 2
+ - uid: 23455
+ components:
+ - type: Transform
+ pos: -65.50171,-70.36417
+ parent: 2
+ - uid: 23456
+ components:
+ - type: Transform
+ pos: -69.56421,-70.37979
+ parent: 2
- uid: 24577
components:
- type: Transform
@@ -150042,10 +148586,10 @@ entities:
parent: 2
- proto: ToyFigurineThief
entities:
- - uid: 8496
+ - uid: 16400
components:
- type: Transform
- pos: -58.51475,-62.41395
+ pos: -73.4626,-53.38388
parent: 2
- proto: ToyFigurineWizardFake
entities:
@@ -150092,6 +148636,11 @@ entities:
- type: Transform
pos: -19.5,11.5
parent: 2
+ - uid: 25711
+ components:
+ - type: Transform
+ pos: -82.5,-45.5
+ parent: 2
- proto: TrainingBomb
entities:
- uid: 17799
@@ -150107,33 +148656,6 @@ entities:
parent: 7826
- type: Physics
canCollide: False
-- proto: trayScanner
- entities:
- - uid: 2532
- components:
- - type: Transform
- pos: -112.37078,-33.346825
- parent: 2
- - uid: 6785
- components:
- - type: Transform
- pos: -121.71341,-0.56357
- parent: 2
- - uid: 6788
- components:
- - type: Transform
- pos: -109.51924,-7.514839
- parent: 2
- - uid: 9644
- components:
- - type: Transform
- pos: -121.385284,-0.31356978
- parent: 2
- - uid: 22279
- components:
- - type: Transform
- pos: -116.77683,12.677293
- parent: 2
- proto: TreasureCoinGold
entities:
- uid: 21064
@@ -150298,9 +148820,9 @@ entities:
- Left: Forward
- Right: Reverse
- Middle: Off
- 20287:
- - Left: Forward
- - Right: Reverse
+ 7763:
+ - Left: Reverse
+ - Right: Forward
- Middle: Off
7315:
- Left: Forward
@@ -150504,30 +149026,6 @@ entities:
- Left: Open
- Right: Open
- Middle: Close
- 6054:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
- 6790:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
- 6794:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
- 6000:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
- 6743:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
- 6679:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
- type: Label
currentLabel: Cargo Conveyor
- type: NameModifier
@@ -150572,7 +149070,7 @@ entities:
parent: 2
- type: DeviceLinkSource
linkedPorts:
- 14781:
+ 22205:
- Left: Forward
- Right: Reverse
- Middle: Off
@@ -150742,6 +149240,11 @@ entities:
parent: 2
- proto: VendingMachineCigs
entities:
+ - uid: 4317
+ components:
+ - type: Transform
+ pos: -68.5,-49.5
+ parent: 2
- uid: 7699
components:
- type: Transform
@@ -150906,6 +149409,11 @@ entities:
- type: Transform
pos: -26.5,-46.5
parent: 2
+ - uid: 6261
+ components:
+ - type: Transform
+ pos: -17.5,-29.5
+ parent: 2
- uid: 19032
components:
- type: Transform
@@ -150988,14 +149496,14 @@ entities:
parent: 2
- proto: VendingMachineSeedsUnlocked
entities:
- - uid: 16324
+ - uid: 6761
components:
- type: Transform
- pos: -88.5,-50.5
+ pos: -84.5,-47.5
parent: 2
- proto: VendingMachineSustenance
entities:
- - uid: 6590
+ - uid: 7121
components:
- type: Transform
pos: -85.5,-47.5
@@ -151053,11 +149561,6 @@ entities:
- type: Transform
pos: -25.5,-0.5
parent: 2
- - uid: 14256
- components:
- - type: Transform
- pos: -109.5,-33.5
- parent: 2
- proto: VendingMachineViroDrobe
entities:
- uid: 4171
@@ -151089,13 +149592,6 @@ entities:
- type: Transform
pos: -108.5,-18.5
parent: 2
-- proto: ViolinInstrument
- entities:
- - uid: 25894
- components:
- - type: Transform
- pos: -62.509315,-34.466682
- parent: 2
- proto: WallmountTelescreen
entities:
- uid: 6641
@@ -151787,6 +150283,11 @@ entities:
- type: Transform
pos: -89.5,-4.5
parent: 2
+ - uid: 280
+ components:
+ - type: Transform
+ pos: -89.5,-0.5
+ parent: 2
- uid: 283
components:
- type: Transform
@@ -151807,12 +150308,6 @@ entities:
- type: Transform
pos: -36.5,-26.5
parent: 2
- - uid: 366
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -114.5,-32.5
- parent: 2
- uid: 393
components:
- type: Transform
@@ -152074,6 +150569,11 @@ entities:
- type: Transform
pos: -88.5,26.5
parent: 2
+ - uid: 778
+ components:
+ - type: Transform
+ pos: -101.5,-3.5
+ parent: 2
- uid: 779
components:
- type: Transform
@@ -152104,6 +150604,16 @@ entities:
- type: Transform
pos: -144.5,-13.5
parent: 2
+ - uid: 808
+ components:
+ - type: Transform
+ pos: -93.5,-60.5
+ parent: 2
+ - uid: 819
+ components:
+ - type: Transform
+ pos: -93.5,-58.5
+ parent: 2
- uid: 827
components:
- type: Transform
@@ -152279,22 +150789,11 @@ entities:
- type: Transform
pos: -85.5,36.5
parent: 2
- - uid: 986
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -109.5,-34.5
- parent: 2
- uid: 1001
components:
- type: Transform
pos: -47.5,-11.5
parent: 2
- - uid: 1020
- components:
- - type: Transform
- pos: -77.5,-34.5
- parent: 2
- uid: 1025
components:
- type: Transform
@@ -152471,6 +150970,11 @@ entities:
- type: Transform
pos: -26.5,-51.5
parent: 2
+ - uid: 1260
+ components:
+ - type: Transform
+ pos: -16.5,-52.5
+ parent: 2
- uid: 1262
components:
- type: Transform
@@ -152501,6 +151005,11 @@ entities:
- type: Transform
pos: -38.5,-36.5
parent: 2
+ - uid: 1280
+ components:
+ - type: Transform
+ pos: -16.5,-48.5
+ parent: 2
- uid: 1281
components:
- type: Transform
@@ -152536,6 +151045,11 @@ entities:
- type: Transform
pos: -21.5,-55.5
parent: 2
+ - uid: 1302
+ components:
+ - type: Transform
+ pos: -16.5,-51.5
+ parent: 2
- uid: 1306
components:
- type: Transform
@@ -152546,6 +151060,11 @@ entities:
- type: Transform
pos: -26.5,-55.5
parent: 2
+ - uid: 1308
+ components:
+ - type: Transform
+ pos: -16.5,-54.5
+ parent: 2
- uid: 1309
components:
- type: Transform
@@ -152662,6 +151181,11 @@ entities:
- type: Transform
pos: -45.5,-3.5
parent: 2
+ - uid: 1632
+ components:
+ - type: Transform
+ pos: -96.5,-62.5
+ parent: 2
- uid: 1637
components:
- type: Transform
@@ -152673,26 +151197,71 @@ entities:
- type: Transform
pos: -123.5,-58.5
parent: 2
+ - uid: 1646
+ components:
+ - type: Transform
+ pos: -101.5,-29.5
+ parent: 2
- uid: 1651
components:
- type: Transform
pos: -98.5,-25.5
parent: 2
+ - uid: 1693
+ components:
+ - type: Transform
+ pos: -99.5,-1.5
+ parent: 2
- uid: 1694
components:
- type: Transform
pos: -137.5,9.5
parent: 2
+ - uid: 1704
+ components:
+ - type: Transform
+ pos: -101.5,-21.5
+ parent: 2
- uid: 1708
components:
- type: Transform
pos: -20.5,9.5
parent: 2
+ - uid: 1718
+ components:
+ - type: Transform
+ pos: -98.5,-6.5
+ parent: 2
+ - uid: 1732
+ components:
+ - type: Transform
+ pos: -94.5,-6.5
+ parent: 2
+ - uid: 1738
+ components:
+ - type: Transform
+ pos: -94.5,1.5
+ parent: 2
- uid: 1744
components:
- type: Transform
pos: -138.5,27.5
parent: 2
+ - uid: 1765
+ components:
+ - type: Transform
+ pos: -97.5,1.5
+ parent: 2
+ - uid: 1801
+ components:
+ - type: Transform
+ pos: -91.5,0.5
+ parent: 2
+ - uid: 1804
+ components:
+ - type: Transform
+ pos: -91.5,-2.5
+ parent: 2
- uid: 1827
components:
- type: Transform
@@ -152743,6 +151312,16 @@ entities:
- type: Transform
pos: -107.5,-42.5
parent: 2
+ - uid: 1940
+ components:
+ - type: Transform
+ pos: -77.5,-49.5
+ parent: 2
+ - uid: 1941
+ components:
+ - type: Transform
+ pos: -77.5,-48.5
+ parent: 2
- uid: 1961
components:
- type: Transform
@@ -153096,16 +151675,6 @@ entities:
- type: Transform
pos: -89.5,-16.5
parent: 2
- - uid: 2590
- components:
- - type: Transform
- pos: -117.5,-33.5
- parent: 2
- - uid: 2594
- components:
- - type: Transform
- pos: -116.5,-29.5
- parent: 2
- uid: 2669
components:
- type: Transform
@@ -153181,6 +151750,21 @@ entities:
- type: Transform
pos: -110.5,-47.5
parent: 2
+ - uid: 3327
+ components:
+ - type: Transform
+ pos: -66.5,-68.5
+ parent: 2
+ - uid: 3329
+ components:
+ - type: Transform
+ pos: -67.5,-68.5
+ parent: 2
+ - uid: 3330
+ components:
+ - type: Transform
+ pos: -68.5,-68.5
+ parent: 2
- uid: 3738
components:
- type: Transform
@@ -153551,6 +152135,11 @@ entities:
- type: Transform
pos: -118.5,-1.5
parent: 2
+ - uid: 5625
+ components:
+ - type: Transform
+ pos: -88.5,-64.5
+ parent: 2
- uid: 5631
components:
- type: Transform
@@ -153571,11 +152160,6 @@ entities:
- type: Transform
pos: -135.5,1.5
parent: 2
- - uid: 5686
- components:
- - type: Transform
- pos: -79.5,-35.5
- parent: 2
- uid: 5690
components:
- type: Transform
@@ -153686,6 +152270,11 @@ entities:
- type: Transform
pos: -37.5,-70.5
parent: 2
+ - uid: 6117
+ components:
+ - type: Transform
+ pos: -86.5,-43.5
+ parent: 2
- uid: 6262
components:
- type: Transform
@@ -153726,6 +152315,11 @@ entities:
- type: Transform
pos: -75.5,-31.5
parent: 2
+ - uid: 6531
+ components:
+ - type: Transform
+ pos: -79.5,-35.5
+ parent: 2
- uid: 6532
components:
- type: Transform
@@ -153736,6 +152330,11 @@ entities:
- type: Transform
pos: -79.5,-25.5
parent: 2
+ - uid: 6552
+ components:
+ - type: Transform
+ pos: -88.5,-40.5
+ parent: 2
- uid: 6556
components:
- type: Transform
@@ -153751,6 +152350,11 @@ entities:
- type: Transform
pos: -87.5,-51.5
parent: 2
+ - uid: 6571
+ components:
+ - type: Transform
+ pos: -79.5,-47.5
+ parent: 2
- uid: 6574
components:
- type: Transform
@@ -153782,18 +152386,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -152.5,-42.5
parent: 2
- - uid: 6732
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -108.5,-29.5
- parent: 2
- - uid: 6737
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -113.5,-34.5
- parent: 2
- uid: 6753
components:
- type: Transform
@@ -153809,6 +152401,11 @@ entities:
- type: Transform
pos: -127.5,10.5
parent: 2
+ - uid: 6843
+ components:
+ - type: Transform
+ pos: -79.5,-39.5
+ parent: 2
- uid: 6914
components:
- type: Transform
@@ -153829,6 +152426,16 @@ entities:
- type: Transform
pos: -81.5,-36.5
parent: 2
+ - uid: 6973
+ components:
+ - type: Transform
+ pos: -77.5,-34.5
+ parent: 2
+ - uid: 6975
+ components:
+ - type: Transform
+ pos: -79.5,-34.5
+ parent: 2
- uid: 6990
components:
- type: Transform
@@ -153844,6 +152451,21 @@ entities:
- type: Transform
pos: -107.5,-51.5
parent: 2
+ - uid: 7024
+ components:
+ - type: Transform
+ pos: -79.5,-43.5
+ parent: 2
+ - uid: 7026
+ components:
+ - type: Transform
+ pos: -77.5,-44.5
+ parent: 2
+ - uid: 7045
+ components:
+ - type: Transform
+ pos: -77.5,-40.5
+ parent: 2
- uid: 7081
components:
- type: Transform
@@ -154724,18 +153346,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -68.5,-8.5
parent: 2
- - uid: 10173
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,-49.5
- parent: 2
- - uid: 10177
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,-53.5
- parent: 2
- uid: 10195
components:
- type: Transform
@@ -154802,6 +153412,11 @@ entities:
- type: Transform
pos: -35.5,-35.5
parent: 2
+ - uid: 13428
+ components:
+ - type: Transform
+ pos: -95.5,-68.5
+ parent: 2
- uid: 13627
components:
- type: Transform
@@ -154850,12 +153465,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -123.5,-33.5
parent: 2
- - uid: 13767
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,-54.5
- parent: 2
- uid: 13819
components:
- type: Transform
@@ -154908,16 +153517,6 @@ entities:
- type: Transform
pos: -142.5,-21.5
parent: 2
- - uid: 13997
- components:
- - type: Transform
- pos: -78.5,-34.5
- parent: 2
- - uid: 13998
- components:
- - type: Transform
- pos: -79.5,-36.5
- parent: 2
- uid: 14025
components:
- type: Transform
@@ -155033,6 +153632,16 @@ entities:
- type: Transform
pos: -123.5,-56.5
parent: 2
+ - uid: 16309
+ components:
+ - type: Transform
+ pos: -80.5,-82.5
+ parent: 2
+ - uid: 16343
+ components:
+ - type: Transform
+ pos: -84.5,-80.5
+ parent: 2
- uid: 16447
components:
- type: Transform
@@ -155131,6 +153740,11 @@ entities:
- type: Transform
pos: -31.5,-39.5
parent: 2
+ - uid: 17230
+ components:
+ - type: Transform
+ pos: -80.5,-81.5
+ parent: 2
- uid: 17234
components:
- type: Transform
@@ -155204,6 +153818,16 @@ entities:
rot: 1.5707963267948966 rad
pos: -125.5,-31.5
parent: 2
+ - uid: 19093
+ components:
+ - type: Transform
+ pos: -89.5,-60.5
+ parent: 2
+ - uid: 19283
+ components:
+ - type: Transform
+ pos: -92.5,-68.5
+ parent: 2
- uid: 19576
components:
- type: Transform
@@ -155290,12 +153914,6 @@ entities:
- type: Transform
pos: -136.5,-34.5
parent: 2
- - uid: 20282
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -113.5,-28.5
- parent: 2
- uid: 20343
components:
- type: Transform
@@ -155578,11 +154196,6 @@ entities:
- type: Transform
pos: -126.5,-68.5
parent: 2
- - uid: 23094
- components:
- - type: Transform
- pos: -84.5,-36.5
- parent: 2
- uid: 23099
components:
- type: Transform
@@ -155594,36 +154207,11 @@ entities:
rot: -1.5707963267948966 rad
pos: -125.5,-89.5
parent: 2
- - uid: 23102
- components:
- - type: Transform
- pos: -83.5,-36.5
- parent: 2
- uid: 23119
components:
- type: Transform
pos: -136.5,21.5
parent: 2
- - uid: 23129
- components:
- - type: Transform
- pos: -97.5,-35.5
- parent: 2
- - uid: 23130
- components:
- - type: Transform
- pos: -100.5,-33.5
- parent: 2
- - uid: 23135
- components:
- - type: Transform
- pos: -101.5,-35.5
- parent: 2
- - uid: 23209
- components:
- - type: Transform
- pos: -75.5,-33.5
- parent: 2
- uid: 23319
components:
- type: Transform
@@ -155713,6 +154301,24 @@ entities:
rot: -1.5707963267948966 rad
pos: -126.5,-88.5
parent: 2
+ - uid: 23719
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -78.5,-33.5
+ parent: 2
+ - uid: 23728
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -76.5,-33.5
+ parent: 2
+ - uid: 23737
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -77.5,-33.5
+ parent: 2
- uid: 23785
components:
- type: Transform
@@ -156338,12 +154944,6 @@ entities:
- type: Transform
pos: -81.5,-10.5
parent: 2
- - uid: 259
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -77.5,-39.5
- parent: 2
- uid: 262
components:
- type: Transform
@@ -156639,11 +155239,6 @@ entities:
- type: Transform
pos: -78.5,3.5
parent: 2
- - uid: 444
- components:
- - type: Transform
- pos: -82.5,-78.5
- parent: 2
- uid: 445
components:
- type: Transform
@@ -157304,6 +155899,11 @@ entities:
- type: Transform
pos: -73.5,-10.5
parent: 2
+ - uid: 762
+ components:
+ - type: Transform
+ pos: -92.5,-43.5
+ parent: 2
- uid: 765
components:
- type: Transform
@@ -157334,11 +155934,21 @@ entities:
- type: Transform
pos: -94.5,-36.5
parent: 2
+ - uid: 783
+ components:
+ - type: Transform
+ pos: -100.5,-3.5
+ parent: 2
- uid: 794
components:
- type: Transform
pos: -31.5,-0.5
parent: 2
+ - uid: 796
+ components:
+ - type: Transform
+ pos: -101.5,-25.5
+ parent: 2
- uid: 797
components:
- type: Transform
@@ -157429,11 +156039,111 @@ entities:
- type: Transform
pos: -97.5,-34.5
parent: 2
+ - uid: 874
+ components:
+ - type: Transform
+ pos: -99.5,-0.5
+ parent: 2
+ - uid: 879
+ components:
+ - type: Transform
+ pos: -99.5,0.5
+ parent: 2
+ - uid: 880
+ components:
+ - type: Transform
+ pos: -99.5,-4.5
+ parent: 2
+ - uid: 881
+ components:
+ - type: Transform
+ pos: -99.5,-5.5
+ parent: 2
+ - uid: 884
+ components:
+ - type: Transform
+ pos: -100.5,-29.5
+ parent: 2
+ - uid: 886
+ components:
+ - type: Transform
+ pos: -100.5,-25.5
+ parent: 2
+ - uid: 887
+ components:
+ - type: Transform
+ pos: -97.5,-6.5
+ parent: 2
+ - uid: 892
+ components:
+ - type: Transform
+ pos: -98.5,1.5
+ parent: 2
+ - uid: 894
+ components:
+ - type: Transform
+ pos: -93.5,1.5
+ parent: 2
- uid: 902
components:
- type: Transform
pos: -107.5,-60.5
parent: 2
+ - uid: 907
+ components:
+ - type: Transform
+ pos: -95.5,-6.5
+ parent: 2
+ - uid: 910
+ components:
+ - type: Transform
+ pos: -96.5,-6.5
+ parent: 2
+ - uid: 912
+ components:
+ - type: Transform
+ pos: -95.5,1.5
+ parent: 2
+ - uid: 914
+ components:
+ - type: Transform
+ pos: -96.5,1.5
+ parent: 2
+ - uid: 925
+ components:
+ - type: Transform
+ pos: -93.5,-6.5
+ parent: 2
+ - uid: 926
+ components:
+ - type: Transform
+ pos: -92.5,1.5
+ parent: 2
+ - uid: 930
+ components:
+ - type: Transform
+ pos: -91.5,-0.5
+ parent: 2
+ - uid: 932
+ components:
+ - type: Transform
+ pos: -91.5,-1.5
+ parent: 2
+ - uid: 935
+ components:
+ - type: Transform
+ pos: -91.5,-3.5
+ parent: 2
+ - uid: 937
+ components:
+ - type: Transform
+ pos: -91.5,-4.5
+ parent: 2
+ - uid: 938
+ components:
+ - type: Transform
+ pos: -91.5,-5.5
+ parent: 2
- uid: 943
components:
- type: Transform
@@ -157459,16 +156169,35 @@ entities:
- type: Transform
pos: -86.5,-30.5
parent: 2
- - uid: 967
+ - uid: 952
components:
- type: Transform
- pos: -110.5,-54.5
+ pos: -85.5,-43.5
parent: 2
- - uid: 974
+ - uid: 954
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -108.5,-34.5
+ pos: -85.5,-42.5
+ parent: 2
+ - uid: 957
+ components:
+ - type: Transform
+ pos: -85.5,-41.5
+ parent: 2
+ - uid: 959
+ components:
+ - type: Transform
+ pos: -85.5,-40.5
+ parent: 2
+ - uid: 961
+ components:
+ - type: Transform
+ pos: -89.5,-43.5
+ parent: 2
+ - uid: 967
+ components:
+ - type: Transform
+ pos: -110.5,-54.5
parent: 2
- uid: 979
components:
@@ -157495,10 +156224,20 @@ entities:
- type: Transform
pos: -85.5,-23.5
parent: 2
+ - uid: 1020
+ components:
+ - type: Transform
+ pos: -77.5,-50.5
+ parent: 2
+ - uid: 1024
+ components:
+ - type: Transform
+ pos: -77.5,-47.5
+ parent: 2
- uid: 1026
components:
- type: Transform
- pos: -78.5,-51.5
+ pos: -77.5,-46.5
parent: 2
- uid: 1027
components:
@@ -157628,8 +156367,7 @@ entities:
- uid: 1085
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -112.5,-28.5
+ pos: -90.5,-40.5
parent: 2
- uid: 1086
components:
@@ -157691,12 +156429,6 @@ entities:
- type: Transform
pos: -89.5,32.5
parent: 2
- - uid: 1151
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -114.5,-33.5
- parent: 2
- uid: 1161
components:
- type: Transform
@@ -157769,6 +156501,16 @@ entities:
- type: Transform
pos: -35.5,-17.5
parent: 2
+ - uid: 1257
+ components:
+ - type: Transform
+ pos: -16.5,-53.5
+ parent: 2
+ - uid: 1258
+ components:
+ - type: Transform
+ pos: -16.5,-50.5
+ parent: 2
- uid: 1261
components:
- type: Transform
@@ -157804,6 +156546,11 @@ entities:
- type: Transform
pos: -23.5,-47.5
parent: 2
+ - uid: 1282
+ components:
+ - type: Transform
+ pos: -16.5,-49.5
+ parent: 2
- uid: 1284
components:
- type: Transform
@@ -157899,6 +156646,11 @@ entities:
- type: Transform
pos: -132.5,-0.5
parent: 2
+ - uid: 1345
+ components:
+ - type: Transform
+ pos: -16.5,-55.5
+ parent: 2
- uid: 1346
components:
- type: Transform
@@ -158372,23 +157124,11 @@ entities:
- type: Transform
pos: -103.5,-61.5
parent: 2
- - uid: 1590
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -117.5,-29.5
- parent: 2
- uid: 1592
components:
- type: Transform
pos: -138.5,28.5
parent: 2
- - uid: 1594
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -114.5,-30.5
- parent: 2
- uid: 1622
components:
- type: Transform
@@ -158414,16 +157154,31 @@ entities:
- type: Transform
pos: -107.5,-13.5
parent: 2
+ - uid: 1652
+ components:
+ - type: Transform
+ pos: -79.5,-41.5
+ parent: 2
- uid: 1653
components:
- type: Transform
pos: -84.5,-51.5
parent: 2
+ - uid: 1655
+ components:
+ - type: Transform
+ pos: -79.5,-51.5
+ parent: 2
- uid: 1656
components:
- type: Transform
pos: -88.5,-30.5
parent: 2
+ - uid: 1661
+ components:
+ - type: Transform
+ pos: -79.5,-36.5
+ parent: 2
- uid: 1662
components:
- type: Transform
@@ -158459,6 +157214,16 @@ entities:
- type: Transform
pos: -89.5,-36.5
parent: 2
+ - uid: 1678
+ components:
+ - type: Transform
+ pos: -79.5,-42.5
+ parent: 2
+ - uid: 1679
+ components:
+ - type: Transform
+ pos: -77.5,-36.5
+ parent: 2
- uid: 1680
components:
- type: Transform
@@ -158484,16 +157249,36 @@ entities:
- type: Transform
pos: -95.5,-47.5
parent: 2
+ - uid: 1687
+ components:
+ - type: Transform
+ pos: -79.5,-49.5
+ parent: 2
+ - uid: 1689
+ components:
+ - type: Transform
+ pos: -79.5,-50.5
+ parent: 2
- uid: 1692
components:
- type: Transform
pos: -135.5,29.5
parent: 2
+ - uid: 1696
+ components:
+ - type: Transform
+ pos: -79.5,-46.5
+ parent: 2
- uid: 1699
components:
- type: Transform
pos: -87.5,-30.5
parent: 2
+ - uid: 1717
+ components:
+ - type: Transform
+ pos: -77.5,-53.5
+ parent: 2
- uid: 1719
components:
- type: Transform
@@ -158544,16 +157329,31 @@ entities:
- type: Transform
pos: -90.5,-51.5
parent: 2
+ - uid: 1745
+ components:
+ - type: Transform
+ pos: -78.5,-53.5
+ parent: 2
- uid: 1749
components:
- type: Transform
pos: -94.5,-53.5
parent: 2
+ - uid: 1753
+ components:
+ - type: Transform
+ pos: -79.5,-40.5
+ parent: 2
- uid: 1756
components:
- type: Transform
pos: -101.5,-36.5
parent: 2
+ - uid: 1758
+ components:
+ - type: Transform
+ pos: -79.5,-44.5
+ parent: 2
- uid: 1760
components:
- type: Transform
@@ -158569,6 +157369,11 @@ entities:
- type: Transform
pos: -99.5,-33.5
parent: 2
+ - uid: 1764
+ components:
+ - type: Transform
+ pos: -79.5,-48.5
+ parent: 2
- uid: 1769
components:
- type: Transform
@@ -158584,6 +157389,11 @@ entities:
- type: Transform
pos: -51.5,-78.5
parent: 2
+ - uid: 1776
+ components:
+ - type: Transform
+ pos: -97.5,-35.5
+ parent: 2
- uid: 1779
components:
- type: Transform
@@ -158619,6 +157429,11 @@ entities:
- type: Transform
pos: -85.5,-34.5
parent: 2
+ - uid: 1805
+ components:
+ - type: Transform
+ pos: -79.5,-38.5
+ parent: 2
- uid: 1806
components:
- type: Transform
@@ -158639,6 +157454,11 @@ entities:
- type: Transform
pos: -93.5,-44.5
parent: 2
+ - uid: 1820
+ components:
+ - type: Transform
+ pos: -79.5,-45.5
+ parent: 2
- uid: 1821
components:
- type: Transform
@@ -158719,6 +157539,21 @@ entities:
- type: Transform
pos: -106.5,-60.5
parent: 2
+ - uid: 1875
+ components:
+ - type: Transform
+ pos: -77.5,-37.5
+ parent: 2
+ - uid: 1876
+ components:
+ - type: Transform
+ pos: -77.5,-41.5
+ parent: 2
+ - uid: 1881
+ components:
+ - type: Transform
+ pos: -89.5,-42.5
+ parent: 2
- uid: 1885
components:
- type: Transform
@@ -158774,26 +157609,49 @@ entities:
- type: Transform
pos: -79.5,-20.5
parent: 2
+ - uid: 1965
+ components:
+ - type: Transform
+ pos: -77.5,-38.5
+ parent: 2
+ - uid: 1966
+ components:
+ - type: Transform
+ pos: -79.5,-37.5
+ parent: 2
+ - uid: 1967
+ components:
+ - type: Transform
+ pos: -77.5,-43.5
+ parent: 2
+ - uid: 1968
+ components:
+ - type: Transform
+ pos: -77.5,-45.5
+ parent: 2
- uid: 1969
components:
- type: Transform
pos: -94.5,-42.5
parent: 2
- - uid: 1991
+ - uid: 1970
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -114.5,-29.5
+ pos: -77.5,-42.5
parent: 2
- uid: 1996
components:
- type: Transform
pos: -96.5,-42.5
parent: 2
+ - uid: 1999
+ components:
+ - type: Transform
+ pos: -77.5,-39.5
+ parent: 2
- uid: 2000
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -89.5,-40.5
parent: 2
- uid: 2003
@@ -158801,6 +157659,11 @@ entities:
- type: Transform
pos: -84.5,-18.5
parent: 2
+ - uid: 2004
+ components:
+ - type: Transform
+ pos: -100.5,-33.5
+ parent: 2
- uid: 2005
components:
- type: Transform
@@ -158811,27 +157674,35 @@ entities:
- type: Transform
pos: -82.5,-36.5
parent: 2
+ - uid: 2009
+ components:
+ - type: Transform
+ pos: -84.5,-36.5
+ parent: 2
- uid: 2012
components:
- type: Transform
pos: -94.5,-40.5
parent: 2
+ - uid: 2025
+ components:
+ - type: Transform
+ pos: -89.5,-41.5
+ parent: 2
- uid: 2050
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -89.5,-39.5
+ pos: -83.5,-36.5
parent: 2
- uid: 2055
components:
- type: Transform
pos: -101.5,-34.5
parent: 2
- - uid: 2058
+ - uid: 2087
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -89.5,-41.5
+ pos: -101.5,-35.5
parent: 2
- uid: 2099
components:
@@ -158848,12 +157719,6 @@ entities:
- type: Transform
pos: -36.5,13.5
parent: 2
- - uid: 2127
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -115.5,-33.5
- parent: 2
- uid: 2130
components:
- type: Transform
@@ -159014,18 +157879,17 @@ entities:
rot: -1.5707963267948966 rad
pos: -138.5,6.5
parent: 2
- - uid: 2352
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -117.5,-30.5
- parent: 2
- uid: 2358
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -78.5,-25.5
parent: 2
+ - uid: 2366
+ components:
+ - type: Transform
+ pos: -86.5,-40.5
+ parent: 2
- uid: 2370
components:
- type: Transform
@@ -159042,6 +157906,11 @@ entities:
rot: -1.5707963267948966 rad
pos: -135.5,-29.5
parent: 2
+ - uid: 2403
+ components:
+ - type: Transform
+ pos: -92.5,-40.5
+ parent: 2
- uid: 2437
components:
- type: Transform
@@ -159054,29 +157923,11 @@ entities:
rot: 3.141592653589793 rad
pos: -135.5,19.5
parent: 2
- - uid: 2587
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -116.5,-33.5
- parent: 2
- uid: 2592
components:
- type: Transform
pos: -40.5,-70.5
parent: 2
- - uid: 2596
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -86.5,-39.5
- parent: 2
- - uid: 2610
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -117.5,-32.5
- parent: 2
- uid: 2618
components:
- type: Transform
@@ -159087,12 +157938,6 @@ entities:
- type: Transform
pos: -40.5,-73.5
parent: 2
- - uid: 2625
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -85.5,-40.5
- parent: 2
- uid: 2636
components:
- type: Transform
@@ -159288,6 +158133,11 @@ entities:
- type: Transform
pos: -19.5,21.5
parent: 2
+ - uid: 3428
+ components:
+ - type: Transform
+ pos: -77.5,-35.5
+ parent: 2
- uid: 3430
components:
- type: Transform
@@ -159459,12 +158309,6 @@ entities:
- type: Transform
pos: -6.5,-38.5
parent: 2
- - uid: 3760
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -69.5,-69.5
- parent: 2
- uid: 3765
components:
- type: Transform
@@ -159556,18 +158400,6 @@ entities:
- type: Transform
pos: -12.5,-44.5
parent: 2
- - uid: 4283
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -117.5,-31.5
- parent: 2
- - uid: 4284
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -115.5,-29.5
- parent: 2
- uid: 4322
components:
- type: Transform
@@ -159635,6 +158467,12 @@ entities:
- type: Transform
pos: -107.5,32.5
parent: 2
+ - uid: 4560
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -79.5,-53.5
+ parent: 2
- uid: 4566
components:
- type: Transform
@@ -159733,11 +158571,6 @@ entities:
- type: Transform
pos: -10.5,-55.5
parent: 2
- - uid: 5104
- components:
- - type: Transform
- pos: -79.5,-51.5
- parent: 2
- uid: 5168
components:
- type: Transform
@@ -159961,20 +158794,15 @@ entities:
rot: 3.141592653589793 rad
pos: -135.5,14.5
parent: 2
- - uid: 5726
- components:
- - type: Transform
- pos: -75.5,-50.5
- parent: 2
- - uid: 5750
+ - uid: 5753
components:
- type: Transform
- pos: -75.5,-51.5
+ pos: -83.5,-53.5
parent: 2
- - uid: 5753
+ - uid: 5754
components:
- type: Transform
- pos: -83.5,-53.5
+ pos: -88.5,-43.5
parent: 2
- uid: 5755
components:
@@ -160077,6 +158905,16 @@ entities:
- type: Transform
pos: -93.5,-53.5
parent: 2
+ - uid: 6020
+ components:
+ - type: Transform
+ pos: -77.5,-52.5
+ parent: 2
+ - uid: 6021
+ components:
+ - type: Transform
+ pos: -77.5,-51.5
+ parent: 2
- uid: 6134
components:
- type: Transform
@@ -160092,10 +158930,10 @@ entities:
- type: Transform
pos: -100.5,-67.5
parent: 2
- - uid: 6484
+ - uid: 6318
components:
- type: Transform
- pos: -79.5,-34.5
+ pos: -90.5,-43.5
parent: 2
- uid: 6521
components:
@@ -160267,6 +159105,11 @@ entities:
- type: Transform
pos: -85.5,-78.5
parent: 2
+ - uid: 6613
+ components:
+ - type: Transform
+ pos: -84.5,-81.5
+ parent: 2
- uid: 6614
components:
- type: Transform
@@ -160312,16 +159155,15 @@ entities:
- type: Transform
pos: -74.5,-79.5
parent: 2
- - uid: 6680
+ - uid: 6662
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -78.5,-43.5
+ pos: -84.5,-82.5
parent: 2
- uid: 6692
components:
- type: Transform
- pos: -100.5,-25.5
+ pos: -84.5,-79.5
parent: 2
- uid: 6697
components:
@@ -160338,32 +159180,11 @@ entities:
- type: Transform
pos: -68.5,-80.5
parent: 2
- - uid: 6719
- components:
- - type: Transform
- pos: -75.5,-34.5
- parent: 2
- - uid: 6728
- components:
- - type: Transform
- pos: -75.5,-49.5
- parent: 2
- - uid: 6730
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -111.5,-34.5
- parent: 2
- uid: 6735
components:
- type: Transform
pos: -66.5,-80.5
parent: 2
- - uid: 6738
- components:
- - type: Transform
- pos: -75.5,-53.5
- parent: 2
- uid: 6739
components:
- type: Transform
@@ -160399,51 +159220,11 @@ entities:
- type: Transform
pos: -70.5,-80.5
parent: 2
- - uid: 6808
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -89.5,-43.5
- parent: 2
- uid: 6811
components:
- type: Transform
pos: -50.5,-78.5
parent: 2
- - uid: 6816
- components:
- - type: Transform
- pos: -75.5,-42.5
- parent: 2
- - uid: 6818
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -80.5,-43.5
- parent: 2
- - uid: 6820
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -81.5,-42.5
- parent: 2
- - uid: 6824
- components:
- - type: Transform
- pos: -75.5,-43.5
- parent: 2
- - uid: 6826
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -84.5,-43.5
- parent: 2
- - uid: 6833
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -81.5,-39.5
- parent: 2
- uid: 6857
components:
- type: Transform
@@ -160506,6 +159287,16 @@ entities:
rot: 1.5707963267948966 rad
pos: -34.5,8.5
parent: 2
+ - uid: 7014
+ components:
+ - type: Transform
+ pos: -80.5,-80.5
+ parent: 2
+ - uid: 7016
+ components:
+ - type: Transform
+ pos: -80.5,-79.5
+ parent: 2
- uid: 7017
components:
- type: Transform
@@ -160896,36 +159687,6 @@ entities:
- type: Transform
pos: -35.5,-51.5
parent: 2
- - uid: 9366
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -82.5,-39.5
- parent: 2
- - uid: 9367
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -81.5,-41.5
- parent: 2
- - uid: 9373
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -84.5,-39.5
- parent: 2
- - uid: 9385
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -85.5,-42.5
- parent: 2
- - uid: 9387
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -88.5,-39.5
- parent: 2
- uid: 9784
components:
- type: Transform
@@ -160985,12 +159746,6 @@ entities:
- type: Transform
pos: -85.5,3.5
parent: 2
- - uid: 10183
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,-52.5
- parent: 2
- uid: 10451
components:
- type: Transform
@@ -161036,41 +159791,11 @@ entities:
- type: Transform
pos: -20.5,-67.5
parent: 2
- - uid: 11061
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -86.5,-43.5
- parent: 2
- - uid: 11066
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -81.5,-40.5
- parent: 2
- - uid: 11068
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -85.5,-43.5
- parent: 2
- uid: 11075
components:
- type: Transform
pos: -39.5,-39.5
parent: 2
- - uid: 11081
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -85.5,-41.5
- parent: 2
- - uid: 11083
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -81.5,-43.5
- parent: 2
- uid: 11110
components:
- type: Transform
@@ -161159,24 +159884,6 @@ entities:
- type: Transform
pos: -35.5,-34.5
parent: 2
- - uid: 13714
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -112.5,-34.5
- parent: 2
- - uid: 13721
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -110.5,-34.5
- parent: 2
- - uid: 13746
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,-50.5
- parent: 2
- uid: 13820
components:
- type: Transform
@@ -161187,27 +159894,6 @@ entities:
- type: Transform
pos: -142.5,-17.5
parent: 2
- - uid: 13990
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -76.5,-34.5
- parent: 2
- - uid: 13992
- components:
- - type: Transform
- pos: -77.5,-45.5
- parent: 2
- - uid: 13994
- components:
- - type: Transform
- pos: -77.5,-51.5
- parent: 2
- - uid: 13996
- components:
- - type: Transform
- pos: -77.5,-49.5
- parent: 2
- uid: 14026
components:
- type: Transform
@@ -161219,93 +159905,11 @@ entities:
rot: -1.5707963267948966 rad
pos: -137.5,-23.5
parent: 2
- - uid: 14187
- components:
- - type: Transform
- pos: -77.5,-41.5
- parent: 2
- - uid: 14188
- components:
- - type: Transform
- pos: -77.5,-40.5
- parent: 2
- - uid: 14190
- components:
- - type: Transform
- pos: -77.5,-42.5
- parent: 2
- - uid: 14191
- components:
- - type: Transform
- pos: -77.5,-46.5
- parent: 2
- - uid: 14192
- components:
- - type: Transform
- pos: -77.5,-50.5
- parent: 2
- - uid: 14193
- components:
- - type: Transform
- pos: -77.5,-47.5
- parent: 2
- - uid: 14194
- components:
- - type: Transform
- pos: -77.5,-48.5
- parent: 2
- - uid: 14195
- components:
- - type: Transform
- pos: -77.5,-44.5
- parent: 2
- - uid: 14196
- components:
- - type: Transform
- pos: -77.5,-43.5
- parent: 2
- uid: 14591
components:
- type: Transform
pos: -138.5,-23.5
parent: 2
- - uid: 14699
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,-51.5
- parent: 2
- - uid: 14700
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,-48.5
- parent: 2
- - uid: 15034
- components:
- - type: Transform
- pos: -75.5,-45.5
- parent: 2
- - uid: 15035
- components:
- - type: Transform
- pos: -75.5,-44.5
- parent: 2
- - uid: 15042
- components:
- - type: Transform
- pos: -77.5,-53.5
- parent: 2
- - uid: 15249
- components:
- - type: Transform
- pos: -75.5,-52.5
- parent: 2
- - uid: 15250
- components:
- - type: Transform
- pos: -75.5,-37.5
- parent: 2
- uid: 15271
components:
- type: Transform
@@ -161316,85 +159920,11 @@ entities:
- type: Transform
pos: -26.5,-58.5
parent: 2
- - uid: 15988
- components:
- - type: Transform
- pos: -76.5,-53.5
- parent: 2
- - uid: 15989
- components:
- - type: Transform
- pos: -78.5,-53.5
- parent: 2
- - uid: 15992
- components:
- - type: Transform
- pos: -75.5,-38.5
- parent: 2
- - uid: 16002
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -114.5,-34.5
- parent: 2
- - uid: 16240
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -88.5,1.5
- parent: 2
- - uid: 16242
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -88.5,0.5
- parent: 2
- uid: 16296
components:
- type: Transform
pos: -138.5,-22.5
parent: 2
- - uid: 16334
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -109.5,-28.5
- parent: 2
- - uid: 16402
- components:
- - type: Transform
- pos: -75.5,-46.5
- parent: 2
- - uid: 16417
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -89.5,-42.5
- parent: 2
- - uid: 16418
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -82.5,-43.5
- parent: 2
- - uid: 16422
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -85.5,-39.5
- parent: 2
- - uid: 16425
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -88.5,3.5
- parent: 2
- - uid: 16448
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -88.5,2.5
- parent: 2
- uid: 16564
components:
- type: Transform
@@ -161415,11 +159945,6 @@ entities:
- type: Transform
pos: -32.5,-43.5
parent: 2
- - uid: 16992
- components:
- - type: Transform
- pos: -79.5,-53.5
- parent: 2
- uid: 17027
components:
- type: Transform
@@ -161435,31 +159960,6 @@ entities:
- type: Transform
pos: -55.5,-76.5
parent: 2
- - uid: 17054
- components:
- - type: Transform
- pos: -75.5,-39.5
- parent: 2
- - uid: 17059
- components:
- - type: Transform
- pos: -75.5,-40.5
- parent: 2
- - uid: 17060
- components:
- - type: Transform
- pos: -75.5,-48.5
- parent: 2
- - uid: 17073
- components:
- - type: Transform
- pos: -75.5,-47.5
- parent: 2
- - uid: 17079
- components:
- - type: Transform
- pos: -75.5,-41.5
- parent: 2
- uid: 17084
components:
- type: Transform
@@ -161493,12 +159993,6 @@ entities:
- type: Transform
pos: -19.5,6.5
parent: 2
- - uid: 17124
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -88.5,-43.5
- parent: 2
- uid: 17132
components:
- type: Transform
@@ -161581,17 +160075,6 @@ entities:
- type: Transform
pos: -20.5,-66.5
parent: 2
- - uid: 17882
- components:
- - type: Transform
- pos: -100.5,-29.5
- parent: 2
- - uid: 17904
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -107.5,-30.5
- parent: 2
- uid: 18045
components:
- type: Transform
@@ -161610,28 +160093,30 @@ entities:
rot: 1.5707963267948966 rad
pos: -115.5,-13.5
parent: 2
- - uid: 18114
+ - uid: 18128
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -108.5,-32.5
+ pos: -93.5,-59.5
parent: 2
- - uid: 18119
+ - uid: 18135
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -107.5,-32.5
+ pos: -91.5,-60.5
parent: 2
- uid: 18149
components:
- type: Transform
pos: -34.5,-45.5
parent: 2
- - uid: 18207
+ - uid: 18367
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -93.5,-35.5
+ pos: -101.5,-1.5
+ parent: 2
+ - uid: 18368
+ components:
+ - type: Transform
+ pos: -100.5,-1.5
parent: 2
- uid: 18374
components:
@@ -161648,55 +160133,40 @@ entities:
- type: Transform
pos: -131.5,16.5
parent: 2
- - uid: 18626
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,-69.5
- parent: 2
- uid: 18685
components:
- type: Transform
pos: -26.5,3.5
parent: 2
- - uid: 18692
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -68.5,-69.5
- parent: 2
- uid: 18749
components:
- type: Transform
pos: -27.5,9.5
parent: 2
- - uid: 18760
+ - uid: 18834
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -111.5,-28.5
+ pos: -91.5,-58.5
parent: 2
- - uid: 18778
+ - uid: 18890
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -78.5,-39.5
+ pos: -91.5,-59.5
parent: 2
- - uid: 18781
+ - uid: 19163
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -80.5,-39.5
+ pos: -95.5,-61.5
parent: 2
- - uid: 18909
+ - uid: 19166
components:
- type: Transform
- pos: -82.5,2.5
+ pos: -94.5,-60.5
parent: 2
- - uid: 18979
+ - uid: 19167
components:
- type: Transform
- pos: -82.5,0.5
+ pos: -95.5,-60.5
parent: 2
- uid: 19168
components:
@@ -161733,6 +160203,11 @@ entities:
- type: Transform
pos: -88.5,-73.5
parent: 2
+ - uid: 19307
+ components:
+ - type: Transform
+ pos: -88.5,-61.5
+ parent: 2
- uid: 19320
components:
- type: Transform
@@ -161743,15 +160218,15 @@ entities:
- type: Transform
pos: -140.5,-21.5
parent: 2
- - uid: 19447
+ - uid: 19455
components:
- type: Transform
- pos: -82.5,1.5
+ pos: -137.5,-21.5
parent: 2
- - uid: 19455
+ - uid: 19487
components:
- type: Transform
- pos: -137.5,-21.5
+ pos: -88.5,-63.5
parent: 2
- uid: 19491
components:
@@ -161763,10 +160238,35 @@ entities:
- type: Transform
pos: -117.5,-7.5
parent: 2
- - uid: 19563
+ - uid: 19555
components:
- type: Transform
- pos: -97.5,-24.5
+ pos: -96.5,-64.5
+ parent: 2
+ - uid: 19559
+ components:
+ - type: Transform
+ pos: -96.5,-61.5
+ parent: 2
+ - uid: 19569
+ components:
+ - type: Transform
+ pos: -96.5,-66.5
+ parent: 2
+ - uid: 19570
+ components:
+ - type: Transform
+ pos: -96.5,-63.5
+ parent: 2
+ - uid: 19620
+ components:
+ - type: Transform
+ pos: -96.5,-67.5
+ parent: 2
+ - uid: 19621
+ components:
+ - type: Transform
+ pos: -96.5,-65.5
parent: 2
- uid: 19624
components:
@@ -161784,22 +160284,41 @@ entities:
rot: -1.5707963267948966 rad
pos: -102.5,31.5
parent: 2
- - uid: 20029
+ - uid: 20034
components:
- type: Transform
- pos: -97.5,-32.5
+ pos: -88.5,-65.5
+ parent: 2
+ - uid: 20036
+ components:
+ - type: Transform
+ pos: -88.5,-67.5
+ parent: 2
+ - uid: 20148
+ components:
+ - type: Transform
+ pos: -88.5,-62.5
+ parent: 2
+ - uid: 20222
+ components:
+ - type: Transform
+ pos: -88.5,-66.5
parent: 2
- uid: 20223
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -114.5,-28.5
+ pos: -91.5,-68.5
parent: 2
- uid: 20260
components:
- type: Transform
pos: -27.5,4.5
parent: 2
+ - uid: 20266
+ components:
+ - type: Transform
+ pos: -94.5,-68.5
+ parent: 2
- uid: 20267
components:
- type: Transform
@@ -161815,11 +160334,26 @@ entities:
- type: Transform
pos: -122.5,34.5
parent: 2
+ - uid: 20279
+ components:
+ - type: Transform
+ pos: -95.5,-67.5
+ parent: 2
+ - uid: 20280
+ components:
+ - type: Transform
+ pos: -93.5,-68.5
+ parent: 2
- uid: 20281
components:
- type: Transform
pos: -90.5,-71.5
parent: 2
+ - uid: 20282
+ components:
+ - type: Transform
+ pos: -89.5,-61.5
+ parent: 2
- uid: 20283
components:
- type: Transform
@@ -161840,6 +160374,26 @@ entities:
- type: Transform
pos: -90.5,-70.5
parent: 2
+ - uid: 20287
+ components:
+ - type: Transform
+ pos: -89.5,-68.5
+ parent: 2
+ - uid: 20289
+ components:
+ - type: Transform
+ pos: -90.5,-68.5
+ parent: 2
+ - uid: 20290
+ components:
+ - type: Transform
+ pos: -89.5,-67.5
+ parent: 2
+ - uid: 20291
+ components:
+ - type: Transform
+ pos: -90.5,-60.5
+ parent: 2
- uid: 20294
components:
- type: Transform
@@ -161943,24 +160497,6 @@ entities:
- type: Transform
pos: -23.5,9.5
parent: 2
- - uid: 20729
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -108.5,-30.5
- parent: 2
- - uid: 20772
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -108.5,-28.5
- parent: 2
- - uid: 20773
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -108.5,-33.5
- parent: 2
- uid: 20840
components:
- type: Transform
@@ -161986,15 +160522,16 @@ entities:
- type: Transform
pos: -14.5,-63.5
parent: 2
- - uid: 21665
+ - uid: 21397
components:
- type: Transform
- pos: -76.5,-36.5
+ pos: -99.5,-3.5
parent: 2
- - uid: 21668
+ - uid: 21419
components:
- type: Transform
- pos: -76.5,-35.5
+ rot: -1.5707963267948966 rad
+ pos: -92.5,0.5
parent: 2
- uid: 21803
components:
@@ -162055,6 +160592,12 @@ entities:
rot: 1.5707963267948966 rad
pos: -75.5,-28.5
parent: 2
+ - uid: 22120
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -75.5,-33.5
+ parent: 2
- uid: 22121
components:
- type: Transform
@@ -162081,11 +160624,6 @@ entities:
- type: Transform
pos: -103.5,33.5
parent: 2
- - uid: 22282
- components:
- - type: Transform
- pos: -97.5,-28.5
- parent: 2
- uid: 22322
components:
- type: Transform
@@ -162116,11 +160654,29 @@ entities:
rot: 3.141592653589793 rad
pos: -135.5,9.5
parent: 2
- - uid: 22811
+ - uid: 22683
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -89.5,-0.5
+ pos: -98.5,0.5
+ parent: 2
+ - uid: 22687
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -92.5,-5.5
+ parent: 2
+ - uid: 22796
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -98.5,-5.5
+ parent: 2
+ - uid: 22797
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -92.5,-6.5
parent: 2
- uid: 22814
components:
@@ -162166,11 +160722,6 @@ entities:
- type: Transform
pos: -137.5,29.5
parent: 2
- - uid: 23240
- components:
- - type: Transform
- pos: -75.5,-36.5
- parent: 2
- uid: 23462
components:
- type: Transform
@@ -162202,11 +160753,6 @@ entities:
- type: Transform
pos: -22.5,-70.5
parent: 2
- - uid: 23929
- components:
- - type: Transform
- pos: -82.5,3.5
- parent: 2
- uid: 23937
components:
- type: Transform
@@ -162235,12 +160781,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -82.5,6.5
parent: 2
- - uid: 24108
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -78.5,-36.5
- parent: 2
- uid: 24109
components:
- type: Transform
@@ -162271,12 +160811,6 @@ entities:
- type: Transform
pos: -26.5,-69.5
parent: 2
- - uid: 24335
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -78.5,-37.5
- parent: 2
- uid: 24362
components:
- type: Transform
@@ -162626,11 +161160,6 @@ entities:
- type: Transform
pos: -27.5,-16.5
parent: 2
- - uid: 1317
- components:
- - type: Transform
- pos: -99.5,-0.5
- parent: 2
- uid: 1358
components:
- type: Transform
@@ -162641,11 +161170,6 @@ entities:
- type: Transform
pos: -38.5,-48.5
parent: 2
- - uid: 1399
- components:
- - type: Transform
- pos: -92.5,-10.5
- parent: 2
- uid: 1408
components:
- type: Transform
@@ -162716,6 +161240,11 @@ entities:
- type: Transform
pos: -71.5,-54.5
parent: 2
+ - uid: 1516
+ components:
+ - type: Transform
+ pos: -72.5,-54.5
+ parent: 2
- uid: 1528
components:
- type: Transform
@@ -162766,12 +161295,6 @@ entities:
- type: Transform
pos: -21.5,-10.5
parent: 2
- - uid: 1661
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -48.5,-69.5
- parent: 2
- uid: 1664
components:
- type: Transform
@@ -162787,16 +161310,6 @@ entities:
- type: Transform
pos: -19.5,-10.5
parent: 2
- - uid: 1723
- components:
- - type: Transform
- pos: -94.5,-10.5
- parent: 2
- - uid: 1758
- components:
- - type: Transform
- pos: -94.5,-2.5
- parent: 2
- uid: 1767
components:
- type: Transform
@@ -162812,17 +161325,6 @@ entities:
- type: Transform
pos: -76.5,-15.5
parent: 2
- - uid: 1963
- components:
- - type: Transform
- pos: -98.5,-2.5
- parent: 2
- - uid: 2167
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -48.5,-74.5
- parent: 2
- uid: 2168
components:
- type: Transform
@@ -163003,6 +161505,11 @@ entities:
- type: Transform
pos: -127.5,-52.5
parent: 2
+ - uid: 2548
+ components:
+ - type: Transform
+ pos: -102.5,-36.5
+ parent: 2
- uid: 2554
components:
- type: Transform
@@ -163013,16 +161520,6 @@ entities:
- type: Transform
pos: -127.5,-51.5
parent: 2
- - uid: 2604
- components:
- - type: Transform
- pos: -88.5,-59.5
- parent: 2
- - uid: 2608
- components:
- - type: Transform
- pos: -90.5,-59.5
- parent: 2
- uid: 2677
components:
- type: Transform
@@ -163033,17 +161530,6 @@ entities:
- type: Transform
pos: -59.5,-21.5
parent: 2
- - uid: 3329
- components:
- - type: Transform
- pos: -57.5,-68.5
- parent: 2
- - uid: 3340
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -56.5,-68.5
- parent: 2
- uid: 3360
components:
- type: Transform
@@ -163064,6 +161550,16 @@ entities:
- type: Transform
pos: -105.5,-0.5
parent: 2
+ - uid: 3615
+ components:
+ - type: Transform
+ pos: -72.5,-51.5
+ parent: 2
+ - uid: 3616
+ components:
+ - type: Transform
+ pos: -71.5,-51.5
+ parent: 2
- uid: 3620
components:
- type: Transform
@@ -163141,6 +161637,11 @@ entities:
rot: 3.141592653589793 rad
pos: -16.5,-1.5
parent: 2
+ - uid: 4276
+ components:
+ - type: Transform
+ pos: -61.5,-68.5
+ parent: 2
- uid: 4557
components:
- type: Transform
@@ -163162,6 +161663,11 @@ entities:
- type: Transform
pos: -131.5,-41.5
parent: 2
+ - uid: 5112
+ components:
+ - type: Transform
+ pos: -61.5,-73.5
+ parent: 2
- uid: 5118
components:
- type: Transform
@@ -163198,6 +161704,11 @@ entities:
- type: Transform
pos: -98.5,-48.5
parent: 2
+ - uid: 7117
+ components:
+ - type: Transform
+ pos: -73.5,-54.5
+ parent: 2
- uid: 7512
components:
- type: Transform
@@ -163446,6 +161957,11 @@ entities:
- type: Transform
pos: -26.5,-41.5
parent: 2
+ - uid: 9516
+ components:
+ - type: Transform
+ pos: -113.5,-28.5
+ parent: 2
- uid: 9667
components:
- type: Transform
@@ -163516,6 +162032,11 @@ entities:
- type: Transform
pos: -107.5,-25.5
parent: 2
+ - uid: 11162
+ components:
+ - type: Transform
+ pos: -108.5,-32.5
+ parent: 2
- uid: 11184
components:
- type: Transform
@@ -163608,6 +162129,11 @@ entities:
- type: Transform
pos: -68.5,-59.5
parent: 2
+ - uid: 13540
+ components:
+ - type: Transform
+ pos: -108.5,-30.5
+ parent: 2
- uid: 13619
components:
- type: Transform
@@ -163635,6 +162161,11 @@ entities:
- type: Transform
pos: -31.5,-65.5
parent: 2
+ - uid: 14755
+ components:
+ - type: Transform
+ pos: -101.5,-0.5
+ parent: 2
- uid: 14801
components:
- type: Transform
@@ -163656,6 +162187,21 @@ entities:
- type: Transform
pos: -129.5,-55.5
parent: 2
+ - uid: 15227
+ components:
+ - type: Transform
+ pos: -73.5,-58.5
+ parent: 2
+ - uid: 15342
+ components:
+ - type: Transform
+ pos: -115.5,-34.5
+ parent: 2
+ - uid: 15343
+ components:
+ - type: Transform
+ pos: -112.5,-34.5
+ parent: 2
- uid: 15884
components:
- type: Transform
@@ -163666,6 +162212,11 @@ entities:
- type: Transform
pos: -87.5,13.5
parent: 2
+ - uid: 16038
+ components:
+ - type: Transform
+ pos: -57.5,-61.5
+ parent: 2
- uid: 16568
components:
- type: Transform
@@ -163738,10 +162289,10 @@ entities:
- type: Transform
pos: -123.5,23.5
parent: 2
- - uid: 23224
+ - uid: 23185
components:
- type: Transform
- pos: -92.5,-0.5
+ pos: -52.5,-72.5
parent: 2
- uid: 23337
components:
@@ -163818,21 +162369,11 @@ entities:
rot: 1.5707963267948966 rad
pos: -106.5,-21.5
parent: 2
- - uid: 811
- components:
- - type: Transform
- pos: -95.5,-58.5
- parent: 2
- uid: 821
components:
- type: Transform
pos: -71.5,-58.5
parent: 2
- - uid: 824
- components:
- - type: Transform
- pos: -95.5,-67.5
- parent: 2
- uid: 1003
components:
- type: Transform
@@ -163843,196 +162384,56 @@ entities:
- type: Transform
pos: -74.5,-20.5
parent: 2
- - uid: 1117
+ - uid: 1089
components:
- type: Transform
- pos: -100.5,-0.5
+ pos: -97.5,3.5
parent: 2
- uid: 1188
components:
- type: Transform
pos: -39.5,-69.5
parent: 2
- - uid: 1195
- components:
- - type: Transform
- pos: -95.5,-60.5
- parent: 2
- uid: 1218
components:
- type: Transform
pos: -94.5,3.5
parent: 2
- - uid: 1302
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -66.5,-67.5
- parent: 2
- - uid: 1422
- components:
- - type: Transform
- pos: -99.5,-1.5
- parent: 2
- - uid: 1632
- components:
- - type: Transform
- pos: -95.5,-65.5
- parent: 2
- - uid: 1678
- components:
- - type: Transform
- pos: -95.5,-66.5
- parent: 2
- - uid: 1704
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -108.5,-35.5
- parent: 2
- - uid: 1706
- components:
- - type: Transform
- pos: -96.5,-67.5
- parent: 2
- uid: 1709
components:
- type: Transform
pos: -99.5,3.5
parent: 2
- - uid: 1718
- components:
- - type: Transform
- pos: -72.5,-43.5
- parent: 2
- uid: 1752
components:
- type: Transform
pos: -107.5,-21.5
parent: 2
- - uid: 1946
- components:
- - type: Transform
- pos: -99.5,-2.5
- parent: 2
- - uid: 1960
- components:
- - type: Transform
- pos: -97.5,-2.5
- parent: 2
- - uid: 1964
- components:
- - type: Transform
- pos: -95.5,-2.5
- parent: 2
- - uid: 1966
- components:
- - type: Transform
- pos: -100.5,2.5
- parent: 2
- - uid: 2015
- components:
- - type: Transform
- pos: -72.5,-47.5
- parent: 2
- - uid: 2025
- components:
- - type: Transform
- pos: -72.5,-46.5
- parent: 2
- - uid: 2366
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -108.5,-37.5
- parent: 2
- - uid: 2368
+ - uid: 1956
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -108.5,-36.5
+ pos: -89.5,0.5
parent: 2
- - uid: 2371
+ - uid: 2131
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -107.5,-36.5
+ pos: -89.5,2.5
parent: 2
- - uid: 2523
+ - uid: 2377
components:
- type: Transform
- pos: -72.5,-45.5
+ pos: -89.5,1.5
parent: 2
- uid: 2541
components:
- type: Transform
pos: -66.5,-34.5
parent: 2
- - uid: 2560
- components:
- - type: Transform
- pos: -72.5,-44.5
- parent: 2
- - uid: 2582
- components:
- - type: Transform
- pos: -95.5,-64.5
- parent: 2
- - uid: 2583
- components:
- - type: Transform
- pos: -95.5,-63.5
- parent: 2
- - uid: 2584
- components:
- - type: Transform
- pos: -95.5,-62.5
- parent: 2
- - uid: 2622
- components:
- - type: Transform
- pos: -93.5,-2.5
- parent: 2
- - uid: 2623
- components:
- - type: Transform
- pos: -92.5,-2.5
- parent: 2
- - uid: 2645
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -99.5,-67.5
- parent: 2
- - uid: 2646
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -98.5,-67.5
- parent: 2
- - uid: 2651
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -97.5,-67.5
- parent: 2
- - uid: 3314
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -71.5,-78.5
- parent: 2
- - uid: 3727
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -76.5,-62.5
- parent: 2
- uid: 3729
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -71.5,-76.5
+ pos: -95.5,-58.5
parent: 2
- uid: 3730
components:
@@ -164040,48 +162441,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -95.5,-54.5
parent: 2
- - uid: 3741
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -76.5,-60.5
- parent: 2
- - uid: 3752
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -65.5,-71.5
- parent: 2
- - uid: 3753
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -70.5,-70.5
- parent: 2
- - uid: 3757
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -70.5,-69.5
- parent: 2
- - uid: 3758
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -65.5,-72.5
- parent: 2
- - uid: 3761
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -71.5,-70.5
- parent: 2
- - uid: 3764
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -71.5,-71.5
- parent: 2
- uid: 3817
components:
- type: Transform
@@ -164100,18 +162459,6 @@ entities:
rot: 3.141592653589793 rad
pos: -71.5,-32.5
parent: 2
- - uid: 3961
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -76.5,-63.5
- parent: 2
- - uid: 3965
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -76.5,-61.5
- parent: 2
- uid: 3994
components:
- type: Transform
@@ -164124,24 +162471,6 @@ entities:
rot: 3.141592653589793 rad
pos: -16.5,-5.5
parent: 2
- - uid: 4090
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -66.5,-69.5
- parent: 2
- - uid: 4097
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -76.5,-64.5
- parent: 2
- - uid: 4249
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -58.5,-63.5
- parent: 2
- uid: 4547
components:
- type: Transform
@@ -164154,11 +162483,10 @@ entities:
rot: 3.141592653589793 rad
pos: -71.5,-34.5
parent: 2
- - uid: 4561
+ - uid: 4632
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -108.5,-38.5
+ pos: -99.5,4.5
parent: 2
- uid: 4655
components:
@@ -164166,24 +162494,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -103.5,21.5
parent: 2
- - uid: 4827
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -57.5,-63.5
- parent: 2
- uid: 5741
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -96.5,26.5
parent: 2
- - uid: 6886
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -75.5,-58.5
- parent: 2
- uid: 7084
components:
- type: Transform
@@ -164229,11 +162545,6 @@ entities:
- type: Transform
pos: -39.5,-10.5
parent: 2
- - uid: 7115
- components:
- - type: Transform
- pos: -72.5,-36.5
- parent: 2
- uid: 7116
components:
- type: Transform
@@ -164369,28 +162680,6 @@ entities:
- type: Transform
pos: -97.5,8.5
parent: 2
- - uid: 7481
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -71.5,-73.5
- parent: 2
- - uid: 7488
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -71.5,-75.5
- parent: 2
- - uid: 7489
- components:
- - type: Transform
- pos: -72.5,-41.5
- parent: 2
- - uid: 7490
- components:
- - type: Transform
- pos: -72.5,-40.5
- parent: 2
- uid: 7514
components:
- type: Transform
@@ -164406,28 +162695,6 @@ entities:
- type: Transform
pos: -103.5,19.5
parent: 2
- - uid: 7537
- components:
- - type: Transform
- pos: -72.5,-39.5
- parent: 2
- - uid: 7543
- components:
- - type: Transform
- pos: -72.5,-42.5
- parent: 2
- - uid: 7574
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -71.5,-74.5
- parent: 2
- - uid: 7575
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -71.5,-72.5
- parent: 2
- uid: 7678
components:
- type: Transform
@@ -164479,12 +162746,6 @@ entities:
- type: Transform
pos: -31.5,-27.5
parent: 2
- - uid: 8500
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -66.5,-68.5
- parent: 2
- uid: 8520
components:
- type: Transform
@@ -164736,6 +162997,12 @@ entities:
- type: Transform
pos: -48.5,-17.5
parent: 2
+ - uid: 9295
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -75.5,-36.5
+ parent: 2
- uid: 9307
components:
- type: Transform
@@ -164746,12 +163013,6 @@ entities:
- type: Transform
pos: -70.5,-17.5
parent: 2
- - uid: 9311
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -71.5,-64.5
- parent: 2
- uid: 9313
components:
- type: Transform
@@ -164807,11 +163068,6 @@ entities:
- type: Transform
pos: -73.5,-15.5
parent: 2
- - uid: 9453
- components:
- - type: Transform
- pos: -100.5,3.5
- parent: 2
- uid: 9463
components:
- type: Transform
@@ -164837,11 +163093,6 @@ entities:
- type: Transform
pos: -56.5,-25.5
parent: 2
- - uid: 9483
- components:
- - type: Transform
- pos: -100.5,0.5
- parent: 2
- uid: 9508
components:
- type: Transform
@@ -165042,6 +163293,11 @@ entities:
- type: Transform
pos: -32.5,3.5
parent: 2
+ - uid: 9731
+ components:
+ - type: Transform
+ pos: -74.5,-59.5
+ parent: 2
- uid: 9734
components:
- type: Transform
@@ -165247,6 +163503,16 @@ entities:
- type: Transform
pos: -27.5,-5.5
parent: 2
+ - uid: 9952
+ components:
+ - type: Transform
+ pos: -108.5,-29.5
+ parent: 2
+ - uid: 9953
+ components:
+ - type: Transform
+ pos: -112.5,-28.5
+ parent: 2
- uid: 9954
components:
- type: Transform
@@ -165397,6 +163663,11 @@ entities:
- type: Transform
pos: -76.5,-16.5
parent: 2
+ - uid: 11164
+ components:
+ - type: Transform
+ pos: -107.5,-28.5
+ parent: 2
- uid: 11169
components:
- type: Transform
@@ -165412,6 +163683,16 @@ entities:
- type: Transform
pos: -87.5,-7.5
parent: 2
+ - uid: 11247
+ components:
+ - type: Transform
+ pos: -113.5,-34.5
+ parent: 2
+ - uid: 11269
+ components:
+ - type: Transform
+ pos: -111.5,-34.5
+ parent: 2
- uid: 11271
components:
- type: Transform
@@ -165590,11 +163871,6 @@ entities:
- type: Transform
pos: -29.5,-61.5
parent: 2
- - uid: 12452
- components:
- - type: Transform
- pos: -92.5,0.5
- parent: 2
- uid: 12551
components:
- type: Transform
@@ -165611,6 +163887,11 @@ entities:
- type: Transform
pos: -56.5,-54.5
parent: 2
+ - uid: 12694
+ components:
+ - type: Transform
+ pos: -73.5,-51.5
+ parent: 2
- uid: 12708
components:
- type: Transform
@@ -165624,7 +163905,7 @@ entities:
- uid: 12857
components:
- type: Transform
- pos: -92.5,2.5
+ pos: -74.5,-51.5
parent: 2
- uid: 12860
components:
@@ -165722,12 +164003,6 @@ entities:
- type: Transform
pos: -92.5,26.5
parent: 2
- - uid: 14189
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -65.5,-64.5
- parent: 2
- uid: 14300
components:
- type: Transform
@@ -165740,6 +164015,11 @@ entities:
rot: 3.141592653589793 rad
pos: -71.5,-28.5
parent: 2
+ - uid: 14488
+ components:
+ - type: Transform
+ pos: -114.5,-34.5
+ parent: 2
- uid: 14497
components:
- type: Transform
@@ -165750,12 +164030,6 @@ entities:
- type: Transform
pos: -17.5,-16.5
parent: 2
- - uid: 14533
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -92.5,1.5
- parent: 2
- uid: 14576
components:
- type: Transform
@@ -165777,22 +164051,11 @@ entities:
rot: -1.5707963267948966 rad
pos: -31.5,3.5
parent: 2
- - uid: 14731
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -65.5,-78.5
- parent: 2
- - uid: 14733
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -65.5,-77.5
- parent: 2
- - uid: 14768
+ - uid: 14654
components:
- type: Transform
- pos: -92.5,-1.5
+ rot: 1.5707963267948966 rad
+ pos: -72.5,-36.5
parent: 2
- uid: 14830
components:
@@ -165880,6 +164143,11 @@ entities:
- type: Transform
pos: -57.5,-17.5
parent: 2
+ - uid: 15987
+ components:
+ - type: Transform
+ pos: -74.5,-54.5
+ parent: 2
- uid: 15994
components:
- type: Transform
@@ -165900,20 +164168,10 @@ entities:
- type: Transform
pos: -60.5,-21.5
parent: 2
- - uid: 15998
+ - uid: 16096
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -56.5,-63.5
- parent: 2
- - uid: 16012
- components:
- - type: Transform
- pos: -95.5,-61.5
- parent: 2
- - uid: 16015
- components:
- - type: Transform
pos: -95.5,-59.5
parent: 2
- uid: 16107
@@ -165936,6 +164194,11 @@ entities:
- type: Transform
pos: -37.5,-53.5
parent: 2
+ - uid: 16115
+ components:
+ - type: Transform
+ pos: -77.5,-54.5
+ parent: 2
- uid: 16120
components:
- type: Transform
@@ -165986,12 +164249,6 @@ entities:
- type: Transform
pos: -47.5,-62.5
parent: 2
- - uid: 16172
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -90.5,1.5
- parent: 2
- uid: 16185
components:
- type: Transform
@@ -166007,23 +164264,11 @@ entities:
- type: Transform
pos: -52.5,-62.5
parent: 2
- - uid: 16211
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -90.5,0.5
- parent: 2
- uid: 16215
components:
- type: Transform
pos: -43.5,-62.5
parent: 2
- - uid: 16225
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -90.5,-0.5
- parent: 2
- uid: 16228
components:
- type: Transform
@@ -166064,6 +164309,16 @@ entities:
- type: Transform
pos: -56.5,-51.5
parent: 2
+ - uid: 16278
+ components:
+ - type: Transform
+ pos: -109.5,-28.5
+ parent: 2
+ - uid: 16279
+ components:
+ - type: Transform
+ pos: -108.5,-28.5
+ parent: 2
- uid: 16280
components:
- type: Transform
@@ -166084,11 +164339,32 @@ entities:
- type: Transform
pos: -92.5,13.5
parent: 2
+ - uid: 16301
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -74.5,-39.5
+ parent: 2
- uid: 16306
components:
- type: Transform
pos: -91.5,13.5
parent: 2
+ - uid: 16307
+ components:
+ - type: Transform
+ pos: -111.5,-28.5
+ parent: 2
+ - uid: 16317
+ components:
+ - type: Transform
+ pos: -114.5,-28.5
+ parent: 2
+ - uid: 16319
+ components:
+ - type: Transform
+ pos: -115.5,-28.5
+ parent: 2
- uid: 16321
components:
- type: Transform
@@ -166124,6 +164400,26 @@ entities:
- type: Transform
pos: -118.5,28.5
parent: 2
+ - uid: 16329
+ components:
+ - type: Transform
+ pos: -73.5,-62.5
+ parent: 2
+ - uid: 16336
+ components:
+ - type: Transform
+ pos: -73.5,-61.5
+ parent: 2
+ - uid: 16341
+ components:
+ - type: Transform
+ pos: -73.5,-63.5
+ parent: 2
+ - uid: 16344
+ components:
+ - type: Transform
+ pos: -73.5,-64.5
+ parent: 2
- uid: 16349
components:
- type: Transform
@@ -166149,6 +164445,11 @@ entities:
- type: Transform
pos: -99.5,6.5
parent: 2
+ - uid: 16354
+ components:
+ - type: Transform
+ pos: -110.5,-34.5
+ parent: 2
- uid: 16355
components:
- type: Transform
@@ -166169,12 +164470,6 @@ entities:
- type: Transform
pos: -97.5,-48.5
parent: 2
- - uid: 16424
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -90.5,2.5
- parent: 2
- uid: 16469
components:
- type: Transform
@@ -166215,6 +164510,11 @@ entities:
- type: Transform
pos: -101.5,-48.5
parent: 2
+ - uid: 16535
+ components:
+ - type: Transform
+ pos: -108.5,-34.5
+ parent: 2
- uid: 16536
components:
- type: Transform
@@ -166316,6 +164616,11 @@ entities:
- type: Transform
pos: -21.5,-28.5
parent: 2
+ - uid: 16572
+ components:
+ - type: Transform
+ pos: -19.5,-28.5
+ parent: 2
- uid: 16573
components:
- type: Transform
@@ -166426,6 +164731,12 @@ entities:
- type: Transform
pos: -65.5,-17.5
parent: 2
+ - uid: 16794
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -73.5,-36.5
+ parent: 2
- uid: 16799
components:
- type: Transform
@@ -166547,7 +164858,7 @@ entities:
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -72.5,-64.5
+ pos: -74.5,-36.5
parent: 2
- uid: 17014
components:
@@ -166624,11 +164935,21 @@ entities:
- type: Transform
pos: -60.5,-59.5
parent: 2
+ - uid: 17106
+ components:
+ - type: Transform
+ pos: -108.5,-33.5
+ parent: 2
- uid: 17107
components:
- type: Transform
pos: -61.5,-63.5
parent: 2
+ - uid: 17111
+ components:
+ - type: Transform
+ pos: -74.5,-58.5
+ parent: 2
- uid: 17113
components:
- type: Transform
@@ -166644,12 +164965,6 @@ entities:
- type: Transform
pos: -23.5,-68.5
parent: 2
- - uid: 17126
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -75.5,-54.5
- parent: 2
- uid: 17139
components:
- type: Transform
@@ -166730,28 +165045,55 @@ entities:
- type: Transform
pos: -59.5,-64.5
parent: 2
+ - uid: 17232
+ components:
+ - type: Transform
+ pos: -109.5,-34.5
+ parent: 2
- uid: 17233
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -75.5,-64.5
+ pos: -115.5,-33.5
parent: 2
- uid: 17235
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -75.5,-59.5
+ pos: -115.5,-32.5
parent: 2
- uid: 17256
components:
- type: Transform
pos: -59.5,-17.5
parent: 2
- - uid: 17345
+ - uid: 17400
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -70.5,-64.5
+ pos: -115.5,-30.5
+ parent: 2
+ - uid: 17402
+ components:
+ - type: Transform
+ pos: -115.5,-29.5
+ parent: 2
+ - uid: 17403
+ components:
+ - type: Transform
+ pos: -115.5,-31.5
+ parent: 2
+ - uid: 17407
+ components:
+ - type: Transform
+ pos: -74.5,-53.5
+ parent: 2
+ - uid: 17408
+ components:
+ - type: Transform
+ pos: -77.5,-59.5
+ parent: 2
+ - uid: 17409
+ components:
+ - type: Transform
+ pos: -77.5,-58.5
parent: 2
- uid: 17414
components:
@@ -166764,11 +165106,10 @@ entities:
- type: Transform
pos: -46.5,-65.5
parent: 2
- - uid: 17843
+ - uid: 17518
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -69.5,-64.5
+ pos: -74.5,-64.5
parent: 2
- uid: 18150
components:
@@ -166794,17 +165135,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -111.5,29.5
parent: 2
- - uid: 18627
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -65.5,-75.5
- parent: 2
- - uid: 18629
- components:
- - type: Transform
- pos: -69.5,-34.5
- parent: 2
- uid: 18727
components:
- type: Transform
@@ -166833,12 +165163,6 @@ entities:
rot: 3.141592653589793 rad
pos: -90.5,31.5
parent: 2
- - uid: 19170
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -65.5,-74.5
- parent: 2
- uid: 19313
components:
- type: Transform
@@ -166887,12 +165211,6 @@ entities:
- type: Transform
pos: -67.5,-22.5
parent: 2
- - uid: 19775
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -65.5,-76.5
- parent: 2
- uid: 19794
components:
- type: Transform
@@ -166916,33 +165234,10 @@ entities:
rot: 3.141592653589793 rad
pos: -13.5,-2.5
parent: 2
- - uid: 20036
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -65.5,-73.5
- parent: 2
- - uid: 20330
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -66.5,-79.5
- parent: 2
- - uid: 20346
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -65.5,-79.5
- parent: 2
- - uid: 20500
- components:
- - type: Transform
- pos: -72.5,-37.5
- parent: 2
- - uid: 20802
+ - uid: 20299
components:
- type: Transform
- pos: -96.5,-2.5
+ pos: -89.5,3.5
parent: 2
- uid: 21011
components:
@@ -167033,18 +165328,6 @@ entities:
- type: Transform
pos: -26.5,13.5
parent: 2
- - uid: 21663
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -65.5,-70.5
- parent: 2
- - uid: 21666
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -66.5,-70.5
- parent: 2
- uid: 21723
components:
- type: Transform
@@ -167106,11 +165389,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -97.5,21.5
parent: 2
- - uid: 22803
- components:
- - type: Transform
- pos: -72.5,-50.5
- parent: 2
- uid: 22935
components:
- type: Transform
@@ -167122,47 +165400,16 @@ entities:
rot: 1.5707963267948966 rad
pos: -97.5,19.5
parent: 2
- - uid: 23092
- components:
- - type: Transform
- pos: -72.5,-48.5
- parent: 2
- - uid: 23106
- components:
- - type: Transform
- pos: -72.5,-49.5
- parent: 2
- - uid: 23107
+ - uid: 23160
components:
- type: Transform
- pos: -72.5,-53.5
+ pos: -74.5,-52.5
parent: 2
- uid: 23196
components:
- type: Transform
pos: -44.5,-23.5
parent: 2
- - uid: 23214
- components:
- - type: Transform
- pos: -72.5,-54.5
- parent: 2
- - uid: 23216
- components:
- - type: Transform
- pos: -72.5,-51.5
- parent: 2
- - uid: 23217
- components:
- - type: Transform
- pos: -71.5,-51.5
- parent: 2
- - uid: 23271
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -73.5,-36.5
- parent: 2
- uid: 23291
components:
- type: Transform
@@ -167210,12 +165457,6 @@ entities:
rot: 3.141592653589793 rad
pos: -13.5,3.5
parent: 2
- - uid: 23466
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -76.5,-59.5
- parent: 2
- uid: 23502
components:
- type: Transform
@@ -167315,6 +165556,11 @@ entities:
- type: Transform
pos: -121.5,23.5
parent: 2
+ - uid: 24454
+ components:
+ - type: Transform
+ pos: -82.5,3.5
+ parent: 2
- uid: 24470
components:
- type: Transform
@@ -167349,13 +165595,6 @@ entities:
- type: Transform
pos: -44.5,-49.5
parent: 2
-- proto: WardrobeEngineeringFilled
- entities:
- - uid: 25781
- components:
- - type: Transform
- pos: -131.5,-8.5
- parent: 2
- proto: WardrobeGeneticsFilled
entities:
- uid: 4196
@@ -167370,15 +165609,15 @@ entities:
- type: Transform
pos: -68.5,-52.5
parent: 2
- - uid: 20777
+ - uid: 2575
components:
- type: Transform
- pos: -69.5,-79.5
+ pos: -68.5,-78.5
parent: 2
- - uid: 20778
+ - uid: 22478
components:
- type: Transform
- pos: -67.5,-79.5
+ pos: -66.5,-78.5
parent: 2
- proto: WardrobeMixedFilled
entities:
@@ -167394,20 +165633,30 @@ entities:
parent: 2
- proto: WardrobePrisonFilled
entities:
- - uid: 19354
+ - uid: 6499
components:
- type: Transform
- pos: -86.5,-40.5
+ pos: -86.5,-41.5
parent: 2
- - uid: 21390
+ - uid: 6725
components:
- type: Transform
- pos: -82.5,-40.5
+ pos: -90.5,-41.5
parent: 2
- - uid: 21420
+ - uid: 6824
components:
- type: Transform
- pos: -78.5,-40.5
+ pos: -100.5,-26.5
+ parent: 2
+ - uid: 7036
+ components:
+ - type: Transform
+ pos: -100.5,-22.5
+ parent: 2
+ - uid: 7038
+ components:
+ - type: Transform
+ pos: -100.5,-30.5
parent: 2
- proto: WardrobeRoboticsFilled
entities:
@@ -167622,10 +165871,15 @@ entities:
- type: Transform
pos: -32.5,5.5
parent: 2
- - uid: 17043
+ - uid: 20727
components:
- type: Transform
- pos: -75.5,-63.5
+ pos: -74.5,-62.5
+ parent: 2
+ - uid: 20730
+ components:
+ - type: Transform
+ pos: -67.5,-64.5
parent: 2
- uid: 22008
components:
@@ -167688,11 +165942,6 @@ entities:
parent: 2
- proto: WeaponCapacitorRecharger
entities:
- - uid: 4277
- components:
- - type: Transform
- pos: -111.5,-29.5
- parent: 2
- uid: 6673
components:
- type: Transform
@@ -167720,12 +165969,6 @@ entities:
- type: Transform
pos: -88.5,-25.5
parent: 2
- - uid: 14543
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -26.5,8.5
- parent: 2
- uid: 22082
components:
- type: Transform
@@ -167763,15 +166006,10 @@ entities:
- uid: 14639
components:
- type: Transform
- pos: -77.588585,-33.179184
+ pos: -78.498375,-30.215405
parent: 2
- proto: WeaponTurretSyndicateBroken
entities:
- - uid: 2407
- components:
- - type: Transform
- pos: -14.5,18.5
- parent: 2
- uid: 22789
components:
- type: Transform
@@ -167811,11 +166049,6 @@ entities:
parent: 2
- proto: WeldingFuelTankFull
entities:
- - uid: 2544
- components:
- - type: Transform
- pos: -22.5,-69.5
- parent: 2
- uid: 4390
components:
- type: Transform
@@ -167826,11 +166059,6 @@ entities:
- type: Transform
pos: -107.5,-17.5
parent: 2
- - uid: 7464
- components:
- - type: Transform
- pos: -84.5,-74.5
- parent: 2
- uid: 8270
components:
- type: Transform
@@ -167841,10 +166069,10 @@ entities:
- type: Transform
pos: -115.5,-12.5
parent: 2
- - uid: 14769
+ - uid: 20729
components:
- type: Transform
- pos: -67.5,-64.5
+ pos: -61.5,-64.5
parent: 2
- uid: 21005
components:
@@ -167904,28 +166132,28 @@ entities:
canCollide: False
- proto: Windoor
entities:
- - uid: 2013
+ - uid: 2967
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -53.5,-71.5
+ pos: -49.5,-8.5
parent: 2
- - uid: 2059
+ - uid: 16005
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -53.5,-72.5
+ pos: -111.5,-29.5
parent: 2
- - uid: 2967
+ - uid: 18341
components:
- type: Transform
- pos: -49.5,-8.5
+ rot: -1.5707963267948966 rad
+ pos: -50.5,-60.5
parent: 2
- - uid: 18341
+ - uid: 23113
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -50.5,-60.5
+ pos: -56.5,-71.5
parent: 2
- proto: WindoorHydroponicsLocked
entities:
@@ -167939,23 +166167,11 @@ entities:
lastSignals:
DoorStatus: True
- type: Door
- secondsUntilStateChange: -192828.02
+ secondsUntilStateChange: -169098.02
state: Opening
- type: Airlock
autoClose: False
- - uid: 23283
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -56.5,-23.5
- parent: 2
- - uid: 23313
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -56.5,-21.5
- parent: 2
- - uid: 23429
+ - uid: 9345
components:
- type: Transform
rot: 1.5707963267948966 rad
@@ -168049,17 +166265,6 @@ entities:
rot: 3.141592653589793 rad
pos: -38.5,-26.5
parent: 2
- - uid: 22702
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -37.5,-26.5
- parent: 2
- - uid: 23992
- components:
- - type: Transform
- pos: -37.5,-16.5
- parent: 2
- proto: WindoorSecureEngineeringLocked
entities:
- uid: 5724
@@ -168182,20 +166387,6 @@ entities:
rot: 3.141592653589793 rad
pos: -49.5,-56.5
parent: 2
-- proto: WindoorServiceLocked
- entities:
- - uid: 14529
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -96.5,-0.5
- parent: 2
- - uid: 14531
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -96.5,2.5
- parent: 2
- proto: WindoorTheatreLocked
entities:
- uid: 3372
@@ -168231,11 +166422,6 @@ entities:
- type: Transform
pos: -31.5,-49.5
parent: 2
- - uid: 809
- components:
- - type: Transform
- pos: -104.5,-0.5
- parent: 2
- uid: 1265
components:
- type: Transform
@@ -168361,12 +166547,6 @@ entities:
- type: Transform
pos: -31.5,13.5
parent: 2
- - uid: 14197
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -104.5,-21.5
- parent: 2
- uid: 14570
components:
- type: Transform
@@ -168377,17 +166557,10 @@ entities:
- type: Transform
pos: -64.5,-36.5
parent: 2
- - uid: 15921
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -105.5,-36.5
- parent: 2
- - uid: 16354
+ - uid: 16408
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -101.5,-21.5
+ pos: -74.5,-56.5
parent: 2
- uid: 17183
components:
@@ -168395,22 +166568,6 @@ entities:
rot: 3.141592653589793 rad
pos: -61.5,-17.5
parent: 2
- - uid: 18600
- components:
- - type: Transform
- pos: -72.5,-56.5
- parent: 2
- - uid: 20548
- components:
- - type: Transform
- pos: -101.5,-0.5
- parent: 2
- - uid: 23215
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -102.5,-36.5
- parent: 2
- uid: 23418
components:
- type: Transform
@@ -168443,149 +166600,143 @@ entities:
parent: 2
- proto: WindowDirectional
entities:
- - uid: 886
+ - uid: 2532
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -48.5,-70.5
+ rot: 3.141592653589793 rad
+ pos: -57.5,-68.5
parent: 2
- - uid: 887
+ - uid: 2534
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -48.5,-73.5
+ rot: -1.5707963267948966 rad
+ pos: -61.5,-70.5
parent: 2
- - uid: 893
+ - uid: 2581
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -48.5,-72.5
+ rot: -1.5707963267948966 rad
+ pos: -61.5,-69.5
parent: 2
- - uid: 894
+ - uid: 2582
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -48.5,-71.5
- parent: 2
- - uid: 1805
- components:
- - type: Transform
- pos: -50.5,-74.5
+ pos: -56.5,-70.5
parent: 2
- - uid: 2361
+ - uid: 2615
components:
- type: Transform
- pos: -53.5,-70.5
+ rot: 1.5707963267948966 rad
+ pos: -56.5,-73.5
parent: 2
- - uid: 2563
+ - uid: 2630
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,-73.5
+ pos: -56.5,-70.5
parent: 2
- - uid: 7751
+ - uid: 2640
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -53.5,-74.5
+ pos: -56.5,-73.5
parent: 2
- - uid: 9113
+ - uid: 2642
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -50.5,-58.5
+ pos: -61.5,-71.5
parent: 2
- - uid: 9114
+ - uid: 2651
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,-59.5
+ rot: 3.141592653589793 rad
+ pos: -56.5,-72.5
parent: 2
- - uid: 9115
+ - uid: 4095
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,-61.5
+ rot: 1.5707963267948966 rad
+ pos: -56.5,-72.5
parent: 2
- - uid: 14855
+ - uid: 4249
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -53.5,-69.5
+ pos: -60.5,-68.5
parent: 2
- - uid: 15245
+ - uid: 4256
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -53.5,-70.5
+ rot: 3.141592653589793 rad
+ pos: -56.5,-68.5
parent: 2
- - uid: 15622
+ - uid: 4260
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -51.5,-69.5
+ pos: -58.5,-68.5
parent: 2
- - uid: 16396
+ - uid: 4275
components:
- type: Transform
- pos: -53.5,-74.5
+ pos: -57.5,-73.5
parent: 2
- - uid: 16409
+ - uid: 4280
components:
- type: Transform
- pos: -52.5,-74.5
+ pos: -59.5,-73.5
parent: 2
- - uid: 16412
+ - uid: 4283
components:
- type: Transform
- pos: -51.5,-74.5
+ pos: -60.5,-73.5
parent: 2
- - uid: 16751
+ - uid: 4621
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -53.5,-73.5
+ rot: 3.141592653589793 rad
+ pos: -59.5,-68.5
parent: 2
- - uid: 16753
+ - uid: 5104
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -49.5,-69.5
+ rot: 1.5707963267948966 rad
+ pos: -56.5,-68.5
parent: 2
- - uid: 16754
+ - uid: 5110
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -53.5,-69.5
+ pos: -61.5,-72.5
parent: 2
- - uid: 16771
+ - uid: 5426
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -50.5,-69.5
+ rot: 1.5707963267948966 rad
+ pos: -56.5,-69.5
parent: 2
- - uid: 16772
+ - uid: 5686
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,-69.5
+ pos: -58.5,-73.5
parent: 2
- - uid: 20804
+ - uid: 9113
components:
- type: Transform
- pos: -49.5,-74.5
+ rot: -1.5707963267948966 rad
+ pos: -50.5,-58.5
parent: 2
- - uid: 26200
+ - uid: 9114
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -77.5,-38.5
+ rot: -1.5707963267948966 rad
+ pos: -50.5,-59.5
parent: 2
- - uid: 26201
+ - uid: 9115
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -77.5,-38.5
+ rot: -1.5707963267948966 rad
+ pos: -50.5,-61.5
parent: 2
- proto: WindowFrostedDirectional
entities:
@@ -168607,23 +166758,23 @@ entities:
rot: -1.5707963267948966 rad
pos: -41.5,-37.5
parent: 2
- - uid: 5643
+ - uid: 9528
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -96.5,-1.5
+ rot: -1.5707963267948966 rad
+ pos: -111.5,-32.5
parent: 2
- - uid: 14204
+ - uid: 15988
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -96.5,1.5
+ rot: -1.5707963267948966 rad
+ pos: -111.5,-31.5
parent: 2
- - uid: 14205
+ - uid: 15989
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -96.5,0.5
+ rot: -1.5707963267948966 rad
+ pos: -111.5,-30.5
parent: 2
- uid: 22301
components:
@@ -168637,6 +166788,12 @@ entities:
parent: 2
- proto: WindowReinforcedDirectional
entities:
+ - uid: 259
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -119.5,-63.5
+ parent: 2
- uid: 2069
components:
- type: Transform
@@ -168649,6 +166806,12 @@ entities:
rot: 3.141592653589793 rad
pos: -111.5,-7.5
parent: 2
+ - uid: 2161
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -56.5,-21.5
+ parent: 2
- uid: 2255
components:
- type: Transform
@@ -168667,6 +166830,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -119.5,-55.5
parent: 2
+ - uid: 2480
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -120.5,-56.5
+ parent: 2
- uid: 2830
components:
- type: Transform
@@ -168766,6 +166935,22 @@ entities:
rot: 3.141592653589793 rad
pos: -92.5,-24.5
parent: 2
+ - uid: 3924
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -39.5,-26.5
+ parent: 2
+ - uid: 3925
+ components:
+ - type: Transform
+ pos: -39.5,-16.5
+ parent: 2
+ - uid: 3926
+ components:
+ - type: Transform
+ pos: -37.5,-16.5
+ parent: 2
- uid: 4005
components:
- type: Transform
@@ -168782,6 +166967,23 @@ entities:
- type: Transform
pos: -111.5,-13.5
parent: 2
+ - uid: 6120
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -83.5,-40.5
+ parent: 2
+ - uid: 6484
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -81.5,-40.5
+ parent: 2
+ - uid: 6726
+ components:
+ - type: Transform
+ pos: -80.5,-39.5
+ parent: 2
- uid: 7298
components:
- type: Transform
@@ -168804,6 +167006,23 @@ entities:
- type: Transform
pos: -121.5,-48.5
parent: 2
+ - uid: 7379
+ components:
+ - type: Transform
+ pos: -111.5,-57.5
+ parent: 2
+ - uid: 7421
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -121.5,-60.5
+ parent: 2
+ - uid: 7469
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -121.5,-62.5
+ parent: 2
- uid: 7530
components:
- type: Transform
@@ -168902,6 +167121,21 @@ entities:
rot: 3.141592653589793 rad
pos: -118.5,-58.5
parent: 2
+ - uid: 7617
+ components:
+ - type: Transform
+ pos: -118.5,-57.5
+ parent: 2
+ - uid: 7625
+ components:
+ - type: Transform
+ pos: -117.5,-57.5
+ parent: 2
+ - uid: 7634
+ components:
+ - type: Transform
+ pos: -116.5,-57.5
+ parent: 2
- uid: 7644
components:
- type: Transform
@@ -168919,38 +167153,65 @@ entities:
- type: Transform
pos: -119.5,-56.5
parent: 2
+ - uid: 8065
+ components:
+ - type: Transform
+ pos: -115.5,-57.5
+ parent: 2
+ - uid: 8145
+ components:
+ - type: Transform
+ pos: -114.5,-57.5
+ parent: 2
- uid: 8153
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -101.5,12.5
parent: 2
+ - uid: 8168
+ components:
+ - type: Transform
+ pos: -113.5,-57.5
+ parent: 2
- uid: 8553
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -95.5,26.5
parent: 2
- - uid: 9388
+ - uid: 9515
components:
- type: Transform
- pos: -90.5,-40.5
+ rot: 1.5707963267948966 rad
+ pos: -31.5,-18.5
parent: 2
- - uid: 9390
+ - uid: 9643
components:
- type: Transform
- pos: -92.5,-40.5
+ pos: -83.5,-39.5
parent: 2
- - uid: 9454
+ - uid: 9645
components:
- type: Transform
- pos: -91.5,-40.5
+ pos: -84.5,-39.5
parent: 2
- - uid: 9515
+ - uid: 10202
+ components:
+ - type: Transform
+ pos: -81.5,-39.5
+ parent: 2
+ - uid: 10205
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -80.5,-40.5
+ parent: 2
+ - uid: 11097
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -31.5,-18.5
+ pos: -56.5,-23.5
parent: 2
- uid: 11135
components:
@@ -168958,23 +167219,199 @@ entities:
rot: 3.141592653589793 rad
pos: -99.5,12.5
parent: 2
- - uid: 16709
+ - uid: 11171
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -120.5,-55.5
+ parent: 2
+ - uid: 13558
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -91.5,-41.5
+ pos: -84.5,-40.5
parent: 2
- - uid: 18201
+ - uid: 13595
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -120.5,-55.5
+ parent: 2
+ - uid: 13616
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -120.5,-59.5
+ parent: 2
+ - uid: 13656
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -120.5,-59.5
+ parent: 2
+ - uid: 13709
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -119.5,-59.5
+ parent: 2
+ - uid: 13721
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -121.5,-59.5
+ parent: 2
+ - uid: 13882
+ components:
+ - type: Transform
+ pos: -112.5,-57.5
+ parent: 2
+ - uid: 13965
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -92.5,-41.5
+ pos: -111.5,-57.5
parent: 2
- - uid: 20563
+ - uid: 13966
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -90.5,-41.5
+ pos: -112.5,-57.5
+ parent: 2
+ - uid: 13967
+ components:
+ - type: Transform
+ pos: -119.5,-57.5
+ parent: 2
+ - uid: 13968
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -113.5,-57.5
+ parent: 2
+ - uid: 13990
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -117.5,-57.5
+ parent: 2
+ - uid: 13992
+ components:
+ - type: Transform
+ pos: -121.5,-57.5
+ parent: 2
+ - uid: 13994
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -115.5,-57.5
+ parent: 2
+ - uid: 13996
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -119.5,-57.5
+ parent: 2
+ - uid: 13997
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -122.5,-57.5
+ parent: 2
+ - uid: 13998
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -121.5,-57.5
+ parent: 2
+ - uid: 14020
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -114.5,-57.5
+ parent: 2
+ - uid: 14021
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -116.5,-57.5
+ parent: 2
+ - uid: 14023
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -118.5,-57.5
+ parent: 2
+ - uid: 14049
+ components:
+ - type: Transform
+ pos: -122.5,-57.5
+ parent: 2
+ - uid: 14092
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -119.5,-61.5
+ parent: 2
+ - uid: 14096
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -119.5,-62.5
+ parent: 2
+ - uid: 14110
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -121.5,-61.5
+ parent: 2
+ - uid: 16459
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -120.5,-56.5
+ parent: 2
+ - uid: 17345
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -119.5,-60.5
+ parent: 2
+ - uid: 20346
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -120.5,-60.5
+ parent: 2
+ - uid: 20413
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -120.5,-62.5
+ parent: 2
+ - uid: 20414
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -120.5,-61.5
+ parent: 2
+ - uid: 20417
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -120.5,-61.5
+ parent: 2
+ - uid: 20418
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -120.5,-62.5
+ parent: 2
+ - uid: 22521
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -120.5,-60.5
parent: 2
- uid: 24314
components:
@@ -168988,6 +167425,24 @@ entities:
rot: 1.5707963267948966 rad
pos: -19.5,11.5
parent: 2
+ - uid: 24907
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -121.5,-63.5
+ parent: 2
+ - uid: 24910
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -120.5,-63.5
+ parent: 2
+ - uid: 24913
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -120.5,-63.5
+ parent: 2
- uid: 26076
components:
- type: Transform
@@ -169009,23 +167464,60 @@ entities:
parent: 2
- proto: WoodenSupport
entities:
+ - uid: 4985
+ components:
+ - type: Transform
+ pos: -101.5,-7.5
+ parent: 2
+ - uid: 4986
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -106.5,-35.5
+ parent: 2
+ - uid: 4987
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -101.5,3.5
+ parent: 2
- uid: 4988
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -105.5,-2.5
parent: 2
+ - uid: 6546
+ components:
+ - type: Transform
+ pos: -75.5,-67.5
+ parent: 2
- uid: 6553
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -102.5,-58.5
parent: 2
- - uid: 7487
+ - uid: 6596
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -75.5,-72.5
+ rot: 1.5707963267948966 rad
+ pos: -85.5,-58.5
+ parent: 2
+ - uid: 8544
+ components:
+ - type: Transform
+ pos: -50.5,-64.5
+ parent: 2
+ - uid: 9240
+ components:
+ - type: Transform
+ pos: -95.5,-11.5
+ parent: 2
+ - uid: 9242
+ components:
+ - type: Transform
+ pos: -83.5,-73.5
parent: 2
- uid: 9287
components:
@@ -169048,11 +167540,10 @@ entities:
- type: Transform
pos: -25.5,-11.5
parent: 2
- - uid: 22122
+ - uid: 23717
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -97.5,-11.5
+ pos: -53.5,-68.5
parent: 2
- uid: 24626
components:
@@ -169060,6 +167551,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -13.5,-46.5
parent: 2
+ - uid: 24663
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -107.5,-30.5
+ parent: 2
- uid: 25646
components:
- type: Transform
@@ -169088,11 +167585,42 @@ entities:
- type: Transform
pos: -15.5,-49.5
parent: 2
+ - uid: 9243
+ components:
+ - type: Transform
+ pos: -77.5,-69.5
+ parent: 2
+ - uid: 9442
+ components:
+ - type: Transform
+ pos: -71.5,-77.5
+ parent: 2
+ - uid: 15160
+ components:
+ - type: Transform
+ pos: -70.5,-66.5
+ parent: 2
- uid: 19561
components:
- type: Transform
pos: -18.5,-15.5
parent: 2
+ - uid: 19774
+ components:
+ - type: Transform
+ pos: -75.5,-72.5
+ parent: 2
+ - uid: 22358
+ components:
+ - type: Transform
+ pos: -73.5,-75.5
+ parent: 2
+ - uid: 24439
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -102.5,-29.5
+ parent: 2
- uid: 24552
components:
- type: Transform
@@ -169107,12 +167635,6 @@ entities:
parent: 2
- proto: WoodenSupportWall
entities:
- - uid: 307
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,-11.5
- parent: 2
- uid: 432
components:
- type: Transform
@@ -169131,28 +167653,22 @@ entities:
rot: -1.5707963267948966 rad
pos: -50.5,-15.5
parent: 2
- - uid: 1006
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -38.5,-11.5
- parent: 2
- uid: 1038
components:
- type: Transform
pos: -105.5,-18.5
parent: 2
- - uid: 1153
+ - uid: 1179
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -100.5,-4.5
+ rot: 1.5707963267948966 rad
+ pos: -98.5,-54.5
parent: 2
- - uid: 1179
+ - uid: 1317
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -98.5,-54.5
+ pos: -101.5,-6.5
parent: 2
- uid: 1790
components:
@@ -169187,22 +167703,16 @@ entities:
rot: 1.5707963267948966 rad
pos: -134.5,-16.5
parent: 2
- - uid: 6504
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,-66.5
- parent: 2
- - uid: 6508
+ - uid: 4764
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,-65.5
+ rot: -1.5707963267948966 rad
+ pos: -102.5,-33.5
parent: 2
- - uid: 8480
+ - uid: 18196
components:
- type: Transform
- pos: -83.5,-58.5
+ pos: -53.5,-64.5
parent: 2
- uid: 19871
components:
@@ -169210,6 +167720,11 @@ entities:
rot: 1.5707963267948966 rad
pos: -102.5,-48.5
parent: 2
+ - uid: 23297
+ components:
+ - type: Transform
+ pos: -53.5,-65.5
+ parent: 2
- uid: 25448
components:
- type: Transform
@@ -169221,6 +167736,11 @@ entities:
rot: 1.5707963267948966 rad
pos: -106.5,-53.5
parent: 2
+ - uid: 25450
+ components:
+ - type: Transform
+ pos: -81.5,-58.5
+ parent: 2
- uid: 25954
components:
- type: Transform
diff --git a/Resources/Prototypes/Actions/types.yml b/Resources/Prototypes/Actions/types.yml
index 89c8e56b78a..a9ac169d3cd 100644
--- a/Resources/Prototypes/Actions/types.yml
+++ b/Resources/Prototypes/Actions/types.yml
@@ -328,15 +328,3 @@
itemIconStyle: NoItem
useDelay: 1 # emote spam
event: !type:ToggleActionEvent
-
-- type: entity
- id: FakeMindShieldToggleAction
- name: action-name-toggle-fake-mindshield
- description: action-description-toggle-fake-mindshield
- components:
- - type: InstantAction
- icon: { sprite: Interface/Actions/actions_fakemindshield.rsi, state: icon }
- iconOn: { sprite: Interface/Actions/actions_fakemindshield.rsi, state: icon-on }
- itemIconStyle: NoItem
- useDelay: 1
- event: !type:FakeMindShieldToggleEvent
diff --git a/Resources/Prototypes/Atmospherics/gases.yml b/Resources/Prototypes/Atmospherics/gases.yml
index 253ee17a447..b6c83091c51 100644
--- a/Resources/Prototypes/Atmospherics/gases.yml
+++ b/Resources/Prototypes/Atmospherics/gases.yml
@@ -99,4 +99,4 @@
gasMolesVisible: 0.6
color: 3a758c
reagent: Frezon
- pricePerMole: 1
+ pricePerMole: 0.3
diff --git a/Resources/Prototypes/Catalog/Fills/Crates/engineering.yml b/Resources/Prototypes/Catalog/Fills/Crates/engineering.yml
index f433d6a617a..9f88d768da4 100644
--- a/Resources/Prototypes/Catalog/Fills/Crates/engineering.yml
+++ b/Resources/Prototypes/Catalog/Fills/Crates/engineering.yml
@@ -58,7 +58,7 @@
id: CrateEngineeringCableMV
parent: CrateElectrical
name: MV cable crate
- description: 3 coils of MV cables.
+ description: 3 coils of LV cables.
components:
- type: StorageFill
contents:
diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml
index 2ae3ea210be..e87e6a9d19f 100644
--- a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml
+++ b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml
@@ -367,8 +367,6 @@
prob: 0.5
- id: ClothingOuterCoatHoSGreatcoat # Corvax-Resprite
- id: BookBusido # Corvax-Books
- - id: DrinkHosFlask
-
# Hardsuit table, used for suit storage as well
- type: entityTable
diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/condiments.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/condiments.yml
index d0304bd4ad6..70924a1e6e7 100644
--- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/condiments.yml
+++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/condiments.yml
@@ -3,7 +3,7 @@
startingInventory:
FoodCondimentPacketAstrotame: 5
FoodCondimentPacketBbq: 5
- FoodCondimentPacketColdsauce: 5
+ FoodCondimentPacketFrostoil: 5
FoodCondimentPacketHorseradish: 5
FoodCondimentPacketHotsauce: 5
FoodCondimentPacketKetchup: 5
@@ -17,4 +17,4 @@
SpoonPlastic: 10
KnifePlastic: 10
FoodPlatePlastic: 10
- FoodPlateSmallPlastic: 10
+ FoodPlateSmallPlastic: 10
\ No newline at end of file
diff --git a/Resources/Prototypes/Catalog/spellbook_catalog.yml b/Resources/Prototypes/Catalog/spellbook_catalog.yml
index 3246117e718..d5a9b0f1b9a 100644
--- a/Resources/Prototypes/Catalog/spellbook_catalog.yml
+++ b/Resources/Prototypes/Catalog/spellbook_catalog.yml
@@ -64,20 +64,6 @@
- !type:ListingLimitedStockCondition
stock: 1
-# Taking an Eldritch spell, good proof of concept and a way to celebrate everything magic.
-- type: listing
- id: SpellbookVoidApplause
- name: spellbook-voidapplause-name
- description: spellbook-voidapplause-desc
- productAction: ActionVoidApplause
- cost:
- WizCoin: 1
- categories:
- - SpellbookUtility
- conditions:
- - !type:ListingLimitedStockCondition
- stock: 1
-
- type: listing
id: SpellbookCharge
name: spellbook-charge-name
diff --git a/Resources/Prototypes/Catalog/thief_toolbox_sets.yml b/Resources/Prototypes/Catalog/thief_toolbox_sets.yml
index 62e9a01edc0..f9ea34b3899 100644
--- a/Resources/Prototypes/Catalog/thief_toolbox_sets.yml
+++ b/Resources/Prototypes/Catalog/thief_toolbox_sets.yml
@@ -17,7 +17,6 @@
- ClothingShoesChameleon
- BarberScissors
- ChameleonProjector
- - FakeMindShieldImplanter
- AgentIDCard
- type: thiefBackpackSet
@@ -63,7 +62,6 @@
- RadioJammer
- TraitorCodePaper
- Emag
- - AccessBreaker
- Lighter
- CigPackSyndicate
- Telecrystal10 #The thief cannot use them, but it may induce communication with traitors
diff --git a/Resources/Prototypes/Catalog/uplink_catalog.yml b/Resources/Prototypes/Catalog/uplink_catalog.yml
index 078fcd6d905..95fe3729ea8 100644
--- a/Resources/Prototypes/Catalog/uplink_catalog.yml
+++ b/Resources/Prototypes/Catalog/uplink_catalog.yml
@@ -867,29 +867,16 @@
# Disruption
-- type: listing
- id: UplinkAccessBreaker
- name: uplink-access-breaker-name
- description: uplink-access-breaker-desc
- productEntity: AccessBreaker
- discountCategory: veryRareDiscounts
- discountDownTo:
- Telecrystal: 3
- cost:
- Telecrystal: 5
- categories:
- - UplinkDisruption
-
- type: listing
id: UplinkEmag
name: uplink-emag-name
description: uplink-emag-desc
productEntity: Emag
- discountCategory: rareDiscounts
+ discountCategory: veryRareDiscounts
discountDownTo:
- Telecrystal: 2
+ Telecrystal: 5
cost:
- Telecrystal: 4
+ Telecrystal: 8
categories:
- UplinkDisruption
@@ -1343,20 +1330,6 @@
categories:
- UplinkImplants
-- type: listing
- id: UplinkRadioImplanter
- name: uplink-radio-implanter-name
- description: uplink-radio-implanter-desc
- icon: { sprite: /Textures/Objects/Devices/encryption_keys.rsi, state: synd_label }
- productEntity: RadioImplanter
- discountCategory: usualDiscounts
- discountDownTo:
- Telecrystal: 1
- cost:
- Telecrystal: 2
- categories:
- - UplinkImplants
-
- type: listing
id: UplinkMicroBombImplanter
name: uplink-micro-bomb-implanter-name
@@ -1451,20 +1424,6 @@
components:
- SurplusBundle
-- type: listing
- id: UplinkFakeMindshield
- name: uplink-fake-mindshield-name
- description: uplink-fake-mindshield-desc
- icon: { sprite: Interface/Actions/actions_fakemindshield.rsi, state: icon-on }
- productEntity: FakeMindShieldImplanter
- discountDownTo:
- Telecrystal: 2
- cost:
- Telecrystal: 4
- categories:
- - UplinkImplants
-
-
# Wearables
- type: listing
diff --git a/Resources/Prototypes/Datasets/Names/borg.yml b/Resources/Prototypes/Datasets/Names/borg.yml
index 647e6bf83fe..2bc8410b188 100644
--- a/Resources/Prototypes/Datasets/Names/borg.yml
+++ b/Resources/Prototypes/Datasets/Names/borg.yml
@@ -39,9 +39,3 @@
- Милаха-Бот
- Самоделкин
- Близняшка
- - S.A.U.L
- - Honker
- - Clanker
- - Is-The-Robot
- - 9 of 7
- - Dank bot
diff --git a/Resources/Prototypes/Datasets/damage_force_say.yml b/Resources/Prototypes/Datasets/damage_force_say.yml
deleted file mode 100644
index a3d2c28f56c..00000000000
--- a/Resources/Prototypes/Datasets/damage_force_say.yml
+++ /dev/null
@@ -1,17 +0,0 @@
-- type: localizedDataset
- id: ForceSayStringDataset
- values:
- prefix: damage-force-say-
- count: 7
-
-- type: localizedDataset
- id: ForceSaySleepDataset
- values:
- prefix: damage-force-say-sleep-
- count: 1
-
-- type: localizedDataset
- id: ForceSayNumbDataset
- values:
- prefix: damage-force-say-numb-
- count: 5
diff --git a/Resources/Prototypes/Entities/Clothing/Belt/belts.yml b/Resources/Prototypes/Entities/Clothing/Belt/belts.yml
index c593ffe66f4..d98317e59a3 100644
--- a/Resources/Prototypes/Entities/Clothing/Belt/belts.yml
+++ b/Resources/Prototypes/Entities/Clothing/Belt/belts.yml
@@ -33,7 +33,6 @@
- GPS
- WeldingMask
components:
- - StationMap
- SprayPainter
- NetworkConfigurator
- RCD
@@ -113,7 +112,6 @@
- Multitool
- AppraisalTool
components:
- - StationMap
- SprayPainter
- NetworkConfigurator
- RCD
diff --git a/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml b/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml
index 7cb1109332e..ec79eaf8c94 100644
--- a/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml
+++ b/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml
@@ -136,41 +136,6 @@
radius: 7
energy: 3
-- type: entity
- parent: ClothingHeadHardsuitWithLightBase
- id: ClothingHeadHelmetHardsuitGoliath
- name: goliath hardsuit helmet
- description: A sturdy hardsuit helmet, infused with a goliath's hide and an eerie, unblinking eye cut from its mass.
- components:
- - type: Sprite
- sprite: Clothing/Head/Hardsuits/goliathhelm.rsi
- layers:
- - state: icon
- - state: icon-unshaded
- shader: unshaded
- - state: light-overlay
- visible: false
- shader: unshaded
- map: [ "light" ]
- - type: HandheldLight
- addPrefix: false
- - type: ToggleableLightVisuals
- clothingVisuals:
- head:
- - state: equipped-head-light
- shader: unshaded
- - type: Clothing
- clothingVisuals:
- head:
- - state: equipped-head
- - state: equipped-head-unshaded
- shader: unshaded
- - type: PointLight
- radius: 6
- - type: PressureProtection
- highPressureMultiplier: 0.72
- lowPressureMultiplier: 1000
-
- type: entity
parent: ClothingHeadHardsuitBase
id: ClothingHeadHelmetHardsuitMaxim
diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml
index 063da2760ce..86717e30172 100644
--- a/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml
+++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml
@@ -129,11 +129,6 @@
- type: HeldSpeedModifier
- type: ToggleableClothing
clothingPrototype: ClothingHeadHelmetHardsuitSpatio
- - type: Tag
- tags:
- - Hardsuit
- - WhitelistChameleon
- - HardsuitSpatio
#Salvage Hardsuit
- type: entity
@@ -167,42 +162,6 @@
- type: ToggleableClothing
clothingPrototype: ClothingHeadHelmetHardsuitSalvage
-#Goliath Hardsuit
-- type: entity
- parent: [ClothingOuterHardsuitBase, BaseCargoContraband]
- id: ClothingOuterHardsuitGoliath
- name: goliath hardsuit
- description: A lightweight hardsuit, adorned with a patchwork of thick, chitinous goliath hide.
- components:
- - type: Sprite
- sprite: Clothing/OuterClothing/Hardsuits/goliath.rsi
- - type: Clothing
- sprite: Clothing/OuterClothing/Hardsuits/goliath.rsi
- - type: PressureProtection
- highPressureMultiplier: 0.5
- lowPressureMultiplier: 1000
- - type: ExplosionResistance
- damageCoefficient: 0.3
- - type: Armor
- modifiers:
- coefficients:
- Blunt: 0.7
- Slash: 0.7
- Piercing: 0.5
- Heat: 0.7 #Goliath hide gets grilled instead of you
- Radiation: 0.3
- Caustic: 0.8
- - type: ClothingSpeedModifier
- walkModifier: 0.8
- sprintModifier: 0.8
- - type: HeldSpeedModifier
- - type: ToggleableClothing
- clothingPrototype: ClothingHeadHelmetHardsuitGoliath
- - type: Construction
- graph: HardsuitGoliath
- node: hardsuitGoliath
-
-#Maxim Hardsuit
- type: entity
parent: [ClothingOuterHardsuitBase, BaseCargoContraband]
id: ClothingOuterHardsuitMaxim
diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/vests.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/vests.yml
index 16debab47bf..accd24dd3cc 100644
--- a/Resources/Prototypes/Entities/Clothing/OuterClothing/vests.yml
+++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/vests.yml
@@ -61,17 +61,8 @@
components:
- type: Sprite
sprite: Clothing/OuterClothing/Vests/hazard.rsi
- layers:
- - state: icon
- - state: icon-unshaded
- shader: unshaded
- type: Clothing
sprite: Clothing/OuterClothing/Vests/hazard.rsi
- clothingVisuals:
- outerClothing:
- - state: equipped-OUTERCLOTHING
- - state: equipped-OUTERCLOTHING-unshaded
- shader: unshaded
- type: Tag
tags:
- HiViz
diff --git a/Resources/Prototypes/Entities/Effects/eldritch.yml b/Resources/Prototypes/Entities/Effects/eldritch.yml
deleted file mode 100644
index 196fe288e70..00000000000
--- a/Resources/Prototypes/Entities/Effects/eldritch.yml
+++ /dev/null
@@ -1,25 +0,0 @@
-- type: entity
- id: EffectVoidBlink
- name: void blink
- categories: [ HideSpawnMenu ]
- save: false
- components:
- # TODO: PointLight is temp until I can make a shader & overlay for negative light or until this can support it
- - type: PointLight
- radius: 3
- energy: 1
- softness: 10
- color: "#301934"
- - type: Transform
- noRot: true
- - type: Sprite
- sprite: Objects/Magic/Eldritch/eldritch_actions.rsi
- drawdepth: Effects
- noRot: true
- layers:
- - state: "voidblink"
- - type: TimedDespawn
- lifetime: 1
- - type: Tag
- tags:
- - HideContextMenu
diff --git a/Resources/Prototypes/Entities/Effects/puddle.yml b/Resources/Prototypes/Entities/Effects/puddle.yml
index fe42c4a79e6..64937f399b0 100644
--- a/Resources/Prototypes/Entities/Effects/puddle.yml
+++ b/Resources/Prototypes/Entities/Effects/puddle.yml
@@ -101,7 +101,7 @@
layers:
- sprite: Fluids/wet_floor_sparkles.rsi
state: sparkles
- drawdepth: Puddles
+ drawdepth: FloorObjects
color: "#FFFFFF80"
- type: entity
@@ -120,7 +120,7 @@
layers:
- sprite: Fluids/puddle.rsi
state: splat0
- drawdepth: Puddles
+ drawdepth: FloorObjects
color: "#FFFFFF80"
- type: Physics
bodyType: Static
diff --git a/Resources/Prototypes/Entities/Markers/atmos_blocker.yml b/Resources/Prototypes/Entities/Markers/atmos_blocker.yml
index 4f00247684b..011e49696e4 100644
--- a/Resources/Prototypes/Entities/Markers/atmos_blocker.yml
+++ b/Resources/Prototypes/Entities/Markers/atmos_blocker.yml
@@ -86,7 +86,7 @@
- type: entity
name: Atmos Fix Freezer Marker
id: AtmosFixFreezerMarker
- description: "Change air temp to 235K, for freezer with a bit of wiggle room to get set up."
+ description: "Change air temp to 235K, for freezer with a big of wiggle room to get set up."
parent: MarkerBase
components:
- type: Sprite
diff --git a/Resources/Prototypes/Entities/Markers/construction_ghost.yml b/Resources/Prototypes/Entities/Markers/construction_ghost.yml
index 2f0b6c87c8a..04a8a095023 100644
--- a/Resources/Prototypes/Entities/Markers/construction_ghost.yml
+++ b/Resources/Prototypes/Entities/Markers/construction_ghost.yml
@@ -7,7 +7,4 @@
color: '#3F38'
- type: ConstructionGhost
- type: Clickable
- - type: InteractionOutline
- - type: GuideHelp
- guides:
- - Construction
+ - type: InteractionOutline
\ No newline at end of file
diff --git a/Resources/Prototypes/Entities/Markers/marker_base.yml b/Resources/Prototypes/Entities/Markers/marker_base.yml
index a7c841ffd19..ecd4cf50042 100644
--- a/Resources/Prototypes/Entities/Markers/marker_base.yml
+++ b/Resources/Prototypes/Entities/Markers/marker_base.yml
@@ -9,9 +9,6 @@
- type: Marker
- type: Clickable
- type: InteractionOutline
- - type: Tag
- tags:
- - ForceFixRotations
- type: Sprite
drawdepth: Overdoors
sprite: Markers/cross.rsi
diff --git a/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml b/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml
index 9ba69e52f92..7abbdb75bea 100644
--- a/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml
+++ b/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml
@@ -167,6 +167,7 @@
- cell_slot
- type: Lock
locked: true
+ breakOnEmag: false
unlockOnClick: false
- type: ActivatableUIRequiresLock
- type: LockedWiresPanel
diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/asteroid.yml b/Resources/Prototypes/Entities/Mobs/NPCs/asteroid.yml
index dcc8c4fbb8d..270e20e5c52 100644
--- a/Resources/Prototypes/Entities/Mobs/NPCs/asteroid.yml
+++ b/Resources/Prototypes/Entities/Mobs/NPCs/asteroid.yml
@@ -90,7 +90,6 @@
- id: FoodMeatGoliath
amount: 3
- id: MaterialGoliathHide1
- amount: 3
- type: entity
id: ActionGoliathTentacle
diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml b/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml
index 1037b2e904c..de2c4f92b27 100644
--- a/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml
+++ b/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml
@@ -368,7 +368,6 @@
pack: MedibotAds
- type: Inventory
templateId: medibot
- - type: DoAfter
- type: entity
parent:
diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/condiments.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/condiments.yml
index c7de98b4a44..bbe5cf244b2 100644
--- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/condiments.yml
+++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/condiments.yml
@@ -140,7 +140,7 @@
- type: entity
parent: BaseFoodCondimentPacket
- id: FoodCondimentPacketColdsauce
+ id: FoodCondimentPacketFrostoil
name: coldsauce
description: Coldsauce. Leaves the tongue numb in its passage.
components:
@@ -149,7 +149,7 @@
food:
maxVol: 10
reagents:
- - ReagentId: Coldsauce
+ - ReagentId: Frostoil
Quantity: 10
- type: Icon
state: packet-frostoil
@@ -375,7 +375,7 @@
solutions:
food:
reagents:
- - ReagentId: Coldsauce
+ - ReagentId: Frostoil
Quantity: 30
- type: Sprite
layers:
diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml
index d9ba703e34a..93ca57dcbb6 100644
--- a/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml
+++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml
@@ -1386,7 +1386,7 @@
reagents:
- ReagentId: Nutriment
Quantity: 4
- - ReagentId: FrostOil
+ - ReagentId: Frostoil
Quantity: 10
- ReagentId: Vitamin
Quantity: 4
diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/cigarette.yml b/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/cigarette.yml
index 818e56a37a7..146fac039d0 100644
--- a/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/cigarette.yml
+++ b/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/cigarette.yml
@@ -132,7 +132,7 @@
- type: entity
id: CigaretteDylovene
parent: SoakedCigarette
- name: Urinal Cake Dissolver
+ name: Urinal Cake Disolver
components:
- type: SolutionContainerManager
solutions:
diff --git a/Resources/Prototypes/Entities/Objects/Devices/Electronics/power_electronics.yml b/Resources/Prototypes/Entities/Objects/Devices/Electronics/power_electronics.yml
index c1ef5f497f9..e15d1a22a5c 100644
--- a/Resources/Prototypes/Entities/Objects/Devices/Electronics/power_electronics.yml
+++ b/Resources/Prototypes/Entities/Objects/Devices/Electronics/power_electronics.yml
@@ -77,7 +77,7 @@
components:
- type: Sprite
sprite: Objects/Misc/module.rsi
- state: engineering
+ state: generic
- type: StaticPrice
price: 85
- type: Tag
diff --git a/Resources/Prototypes/Entities/Objects/Devices/flatpack.yml b/Resources/Prototypes/Entities/Objects/Devices/flatpack.yml
index 4facfd91b3a..82d43cf7d82 100644
--- a/Resources/Prototypes/Entities/Objects/Devices/flatpack.yml
+++ b/Resources/Prototypes/Entities/Objects/Devices/flatpack.yml
@@ -64,9 +64,7 @@
- type: StaticPrice
price: 500
- type: GuideHelp
- guides:
- - AME
- - Power
+ guides: [ AME, Power ]
- type: StealTarget
stealGroup: AmePartFlatpack
@@ -82,9 +80,7 @@
layers:
- state: singularity-generator
- type: GuideHelp
- guides:
- - SingularityEngine
- - Power
+ guides: [ Singularity, Power ]
- type: entity
parent: BaseFlatpack
@@ -98,9 +94,7 @@
layers:
- state: radiation-collector
- type: GuideHelp
- guides:
- - SingularityEngine
- - Power
+ guides: [ Singularity, Power ]
- type: entity
parent: BaseFlatpack
@@ -114,9 +108,7 @@
layers:
- state: containment-field-generator
- type: GuideHelp
- guides:
- - SingularityEngine
- - Power
+ guides: [ Singularity, Power ]
- type: entity
parent: BaseFlatpack
@@ -130,9 +122,7 @@
layers:
- state: emitter
- type: GuideHelp
- guides:
- - SingularityEngine
- - Power
+ guides: [ Singularity, Power ]
- type: entity
parent: BaseFlatpack
@@ -146,9 +136,7 @@
layers:
- state: tesla-generator
- type: GuideHelp
- guides:
- - TeslaEngine
- - Power
+ guides: [ Power ] # TODO add tesla guide
- type: entity
parent: BaseFlatpack
@@ -162,9 +150,7 @@
layers:
- state: tesla-coil
- type: GuideHelp
- guides:
- - TeslaEngine
- - Power
+ guides: [ Power ] # TODO add tesla guide
- type: entity
parent: BaseFlatpack
@@ -178,9 +164,7 @@
layers:
- state: grounding-rod
- type: GuideHelp
- guides:
- - TeslaEngine
- - Power
+ guides: [ Power ] # TODO add tesla guide
- type: entity
parent: BaseFlatpack
diff --git a/Resources/Prototypes/Entities/Objects/Devices/holoprojectors.yml b/Resources/Prototypes/Entities/Objects/Devices/holoprojectors.yml
index cb96147f142..1c4b1d48eef 100644
--- a/Resources/Prototypes/Entities/Objects/Devices/holoprojectors.yml
+++ b/Resources/Prototypes/Entities/Objects/Devices/holoprojectors.yml
@@ -66,12 +66,7 @@
tags:
- HolofanProjector
- type: StaticPrice
- price: 62
- - type: GuideHelp
- guides:
- - AtmosTools
- - Fires
- - Spacing
+ price: 60
- type: entity
parent: HolofanProjector
diff --git a/Resources/Prototypes/Entities/Objects/Materials/Sheets/metal.yml b/Resources/Prototypes/Entities/Objects/Materials/Sheets/metal.yml
index bc9202324d3..82b9f62837a 100644
--- a/Resources/Prototypes/Entities/Objects/Materials/Sheets/metal.yml
+++ b/Resources/Prototypes/Entities/Objects/Materials/Sheets/metal.yml
@@ -30,9 +30,6 @@
solutions:
steel:
canReact: false
- - type: GuideHelp
- guides:
- - ExpandingRepairingStation
- type: entity
parent: SheetMetalBase
diff --git a/Resources/Prototypes/Entities/Objects/Materials/parts.yml b/Resources/Prototypes/Entities/Objects/Materials/parts.yml
index 1106ce057c8..700c08e096a 100644
--- a/Resources/Prototypes/Entities/Objects/Materials/parts.yml
+++ b/Resources/Prototypes/Entities/Objects/Materials/parts.yml
@@ -68,9 +68,6 @@
Quantity: 4.5
- ReagentId: Carbon
Quantity: 0.5
- - type: GuideHelp
- guides:
- - ExpandingRepairingStation
- type: entity
parent: PartRodMetal
diff --git a/Resources/Prototypes/Entities/Objects/Materials/scrap.yml b/Resources/Prototypes/Entities/Objects/Materials/scrap.yml
index c4ec20465ee..734111af6dc 100644
--- a/Resources/Prototypes/Entities/Objects/Materials/scrap.yml
+++ b/Resources/Prototypes/Entities/Objects/Materials/scrap.yml
@@ -77,9 +77,7 @@
- state: metal-1
map: [ "base" ]
- type: Item
- size: Large
- shape:
- - 0,0,4,4 # 5x5
+ size: Ginormous
heldPrefix: metal
- type: MultiHandedItem
- type: RandomSprite
@@ -137,9 +135,7 @@
junk-airlock-1: ""
junk-airlock-2: ""
- type: Item
- size: Large
- shape:
- - 0,0,4,4 # 5x5
+ size: Ginormous
heldPrefix: "airlock"
- type: MultiHandedItem
- type: PhysicalComposition
@@ -277,9 +273,7 @@
layers:
- state: junk-firelock-1
- type: Item
- size: Large
- shape:
- - 0,0,4,4 # 5x5
+ size: Ginormous
heldPrefix: firelock-1
- type: MultiHandedItem
- type: PhysicalComposition
@@ -296,9 +290,7 @@
layers:
- state: junk-firelock-2
- type: Item
- size: Large
- shape:
- - 0,0,4,4 # 5x5
+ size: Ginormous
heldPrefix: firelock-2
- type: MultiHandedItem
- type: PhysicalComposition
diff --git a/Resources/Prototypes/Entities/Objects/Misc/arabianlamp.yml b/Resources/Prototypes/Entities/Objects/Misc/arabianlamp.yml
index ee40316e62d..791a0d09453 100644
--- a/Resources/Prototypes/Entities/Objects/Misc/arabianlamp.yml
+++ b/Resources/Prototypes/Entities/Objects/Misc/arabianlamp.yml
@@ -7,10 +7,10 @@
- type: Appearance
- type: AccessReader
access: [ [ "CentralCommand" ] ]
- breakOnAccessBreaker: false
+ breakOnEmag: false
- type: Lock
lockOnClick: false
- breakOnAccessBreaker: false
+ breakOnEmag: false
- type: EntityStorage
capacity: 1 # Its smol.
itemCanStoreMobs: false # just leaving this here explicitly since I know at some point someone will want to use this to hold a mob. This also prevents it from becoming His Grace.
diff --git a/Resources/Prototypes/Entities/Objects/Misc/implanters.yml b/Resources/Prototypes/Entities/Objects/Misc/implanters.yml
index d40f48dc7d9..beffe8959a6 100644
--- a/Resources/Prototypes/Entities/Objects/Misc/implanters.yml
+++ b/Resources/Prototypes/Entities/Objects/Misc/implanters.yml
@@ -179,14 +179,6 @@
- type: Implanter
implant: FreedomImplant
-- type: entity
- id: RadioImplanter
- suffix: radio Syndicate
- parent: BaseImplantOnlyImplanterSyndi
- components:
- - type: Implanter
- implant: RadioImplant
-
- type: entity
id: UplinkImplanter
suffix: uplink
@@ -253,14 +245,6 @@
- type: Implanter
implant: DeathAcidifierImplant
-- type: entity
- id: FakeMindShieldImplanter
- suffix: fake mindshield
- parent: BaseImplantOnlyImplanterSyndi
- components:
- - type: Implanter
- implant: FakeMindShieldImplant
-
# Security and Command implanters
- type: entity
@@ -270,13 +254,3 @@
components:
- type: Implanter
implant: MindShieldImplant
-
-# Centcomm implanters
-
-- type: entity
- id: RadioImplanterCentcomm
- suffix: radio Centcomm
- parent: BaseImplantOnlyImplanter
- components:
- - type: Implanter
- implant: RadioImplantCentcomm
diff --git a/Resources/Prototypes/Entities/Objects/Misc/kudzu.yml b/Resources/Prototypes/Entities/Objects/Misc/kudzu.yml
index c688c7cadc1..21b710a6180 100644
--- a/Resources/Prototypes/Entities/Objects/Misc/kudzu.yml
+++ b/Resources/Prototypes/Entities/Objects/Misc/kudzu.yml
@@ -116,7 +116,7 @@
parent: Kudzu
components:
- type: Sprite
- drawdepth: HighFloorObjects
+ drawdepth: FloorObjects
sprite: Objects/Misc/kudzuflower.rsi
state: kudzu_11
- type: Kudzu
@@ -247,10 +247,8 @@
solutions:
food:
reagents:
- - ReagentId: Razorium
- Quantity: 2
- ReagentId: Protein
- Quantity: 1
+ Quantity: 2
- type: Respirator
damage:
types:
@@ -258,9 +256,6 @@
damageRecovery:
types:
Asphyxiation: -0.25
- - type: Tag
- tags:
- - Meat
- type: entity
name: dark haze
diff --git a/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml b/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml
index c4e27017692..28788e9a137 100644
--- a/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml
+++ b/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml
@@ -142,18 +142,6 @@
components:
- Cuffable # useless if you cant be cuffed
-- type: entity
- parent: BaseSubdermalImplant
- id: RadioImplant
- name: radio implant
- description: This implant grants access to the Syndicate channel without a headset.
- categories: [ HideSpawnMenu ]
- components:
- - type: SubdermalImplant
- - type: RadioImplant
- radioChannels:
- - Syndicate
-
- type: entity
parent: [ BaseSubdermalImplant, StorePresetUplink ]
id: UplinkImplant
@@ -323,17 +311,6 @@
- Dead
- type: Rattle
-- type: entity
- parent: BaseSubdermalImplant
- id: FakeMindShieldImplant
- name: fake mindshield implant
- description: This implant allows the implanter to produce a fake signal that NT security huds use to identify individuals implanted with a mindshield.
- categories: [ HideSpawnMenu ]
- components:
- - type: SubdermalImplant
- implantAction: FakeMindShieldToggleAction
- - type: FakeMindShieldImplant
-
# Sec and Command implants
- type: entity
@@ -348,17 +325,3 @@
- type: Tag
tags:
- MindShield
-
-# Centcomm implants
-
-- type: entity
- parent: BaseSubdermalImplant
- id: RadioImplantCentcomm
- name: radio implant
- description: This implant grants access to the Centcomm channel without a headset. Only authorized for Centcomm employees.
- categories: [ HideSpawnMenu ]
- components:
- - type: SubdermalImplant
- - type: RadioImplant
- radioChannels:
- - CentCom
diff --git a/Resources/Prototypes/Entities/Objects/Misc/tiles.yml b/Resources/Prototypes/Entities/Objects/Misc/tiles.yml
index 37a77acff1f..90322689589 100644
--- a/Resources/Prototypes/Entities/Objects/Misc/tiles.yml
+++ b/Resources/Prototypes/Entities/Objects/Misc/tiles.yml
@@ -40,9 +40,6 @@
damage:
types:
Blunt: 5
- - type: GuideHelp
- guides:
- - ExpandingRepairingStation
- type: entity
name: steel dark checker tile
@@ -1551,23 +1548,6 @@
- type: Stack
stackType: FloorTileAstroSnow
-- type: entity
- id: FloorTileItemAstroAsteroidSand
- parent: FloorTileItemBase
- name: asteroid astro-sand
- description: Fake sand. Luckily, it's not as coarse as the real thing.
- components:
- - type: Sprite
- state: asteroid
- - type: Item
- heldPrefix: asteroid
- - type: FloorTile
- outputs:
- - Plating
- - FloorAstroAsteroidSand
- - type: Stack
- stackType: FloorTileAstroAsteroidSand
-
- type: entity
name: large wood floor
parent: FloorTileItemBase
diff --git a/Resources/Prototypes/Entities/Objects/Shields/shields.yml b/Resources/Prototypes/Entities/Objects/Shields/shields.yml
index 4251cc38e9d..777959675a9 100644
--- a/Resources/Prototypes/Entities/Objects/Shields/shields.yml
+++ b/Resources/Prototypes/Entities/Objects/Shields/shields.yml
@@ -84,10 +84,10 @@
Slash: 1
- type: entity
- name: ablative shield
+ name: riot laser shield
parent: [ BaseShield, BaseRestrictedContraband ]
id: RiotLaserShield
- description: An ablative shield built for withstanding lasers, but not much else.
+ description: A riot shield built for withstanding lasers, but not much else.
components:
- type: Sprite
state: riot_laser-icon
@@ -104,10 +104,10 @@
Heat: 1
- type: entity
- name: ballistic shield
+ name: riot bullet shield
parent: [ BaseShield, BaseRestrictedContraband ]
id: RiotBulletShield
- description: A ballistic shield built for protecting against firearms, but not much else.
+ description: A ballistic riot shield built for withstanding bullets, but not much else.
components:
- type: Sprite
state: riot_bullet-icon
diff --git a/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml b/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml
index af6d2f6db35..edfbd1e49c5 100644
--- a/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml
+++ b/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml
@@ -585,7 +585,7 @@
id: BorgModuleOperative
parent: [ BaseBorgModuleSyndicate, BaseProviderBorgModule, BaseSyndicateContraband ]
name: operative cyborg module
- description: A module that comes with a crowbar, an Emag, an Access Breaker and a syndicate pinpointer.
+ description: A module that comes with a crowbar, an Emag and a syndicate pinpointer.
components:
- type: Sprite
layers:
@@ -595,7 +595,6 @@
items:
- Crowbar
- Emag
- - AccessBreaker
- PinpointerSyndicateNuclear
# Corvax-HiddenDesc-Start
- type: HiddenDescription
diff --git a/Resources/Prototypes/Entities/Objects/Specific/atmos.yml b/Resources/Prototypes/Entities/Objects/Specific/atmos.yml
index 7a575b984e3..c67e7ff8c31 100644
--- a/Resources/Prototypes/Entities/Objects/Specific/atmos.yml
+++ b/Resources/Prototypes/Entities/Objects/Specific/atmos.yml
@@ -32,9 +32,3 @@
materialComposition:
Steel: 400
Glass: 100
- - type: GuideHelp
- guides:
- - AtmosTools
- - PipeNetworks
- - Pipes
- - GasCanisters
diff --git a/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml b/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml
index 3cd26821c98..5230e009181 100644
--- a/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml
+++ b/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml
@@ -567,8 +567,7 @@
sprite: Objects/Specific/Chemistry/pills.rsi
- type: Pill
- type: Food
- delay: 0.6
- forceFeedDelay: 2
+ forceFeedDelay: 1
transferAmount: null
eatMessage: food-swallow
useSound: /Audio/Items/pill.ogg
diff --git a/Resources/Prototypes/Entities/Objects/Tools/access_breaker.yml b/Resources/Prototypes/Entities/Objects/Tools/access_breaker.yml
deleted file mode 100644
index 15c1beba8ed..00000000000
--- a/Resources/Prototypes/Entities/Objects/Tools/access_breaker.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-- type: entity
- parent: [BaseItem, BaseSyndicateContraband]
- id: AccessBreakerUnlimited
- suffix: Unlimited
- name: authentication disruptor
- description: A hacked access configurator, specialized to unlock and erase access from digital locks.
- components:
- - type: Emag
- emagType: Access
- - type: Sprite
- sprite: Objects/Tools/access_breaker.rsi
- state: icon
- - type: Item
- sprite: Objects/Tools/access_breaker.rsi
-
-- type: entity
- parent: AccessBreakerUnlimited
- id: AccessBreaker
- suffix: Limited
- components:
- - type: LimitedCharges
- - type: AutoRecharge
diff --git a/Resources/Prototypes/Entities/Objects/Tools/cable_coils.yml b/Resources/Prototypes/Entities/Objects/Tools/cable_coils.yml
index 4c24117caab..3fddd6b2884 100644
--- a/Resources/Prototypes/Entities/Objects/Tools/cable_coils.yml
+++ b/Resources/Prototypes/Entities/Objects/Tools/cable_coils.yml
@@ -29,10 +29,16 @@
- type: PhysicalComposition
materialComposition:
Steel: 15
- - type: GuideHelp
- guides:
- - VoltageNetworks
- - Power
+ # FIXME: Used isnt actually implemented so its still unlimited.
+ # Uncomment this when its implemented, and make sure it handles StackComponent right
+ #- type: Hemostat # Shitmed
+ # speed: 0.15
+ #- type: SurgeryTool # Shitmed
+ # used: true
+ # startSound:
+ # path: /Audio/_Shitmed/Medical/Surgery/retractor1.ogg
+ # endSound:
+ # path: /Audio/_Shitmed/Medical/Surgery/hemostat1.ogg
- type: entity
id: CableHVStack
diff --git a/Resources/Prototypes/Entities/Objects/Tools/emag.yml b/Resources/Prototypes/Entities/Objects/Tools/emag.yml
index 8d3d4f948d0..1b63f0c392e 100644
--- a/Resources/Prototypes/Entities/Objects/Tools/emag.yml
+++ b/Resources/Prototypes/Entities/Objects/Tools/emag.yml
@@ -3,7 +3,7 @@
id: EmagUnlimited
suffix: Unlimited
name: cryptographic sequencer
- description: The all-in-one hacking solution. Friend of any syndicate. The iconic EMAG.
+ description: The all-in-one hacking solution. The thinking man's lockpick. The iconic EMAG.
components:
- type: Emag
- type: Sprite
diff --git a/Resources/Prototypes/Entities/Objects/Tools/tools.yml b/Resources/Prototypes/Entities/Objects/Tools/tools.yml
index 841ab2ebd34..0974fed1760 100644
--- a/Resources/Prototypes/Entities/Objects/Tools/tools.yml
+++ b/Resources/Prototypes/Entities/Objects/Tools/tools.yml
@@ -148,9 +148,6 @@
Steel: 100
- type: StaticPrice
price: 22
- - type: GuideHelp
- guides:
- - Construction
- type: entity
name: multitool
@@ -199,12 +196,6 @@
Plastic: 100
- type: StaticPrice
price: 56
- - type: GuideHelp
- guides:
- - Networking
- - WirePanels
- - Airlocks
- - InspectingPower
- type: entity
name: network configurator
@@ -255,7 +246,7 @@
price: 56
- type: GuideHelp
guides:
- - Networking
+ - NetworkConfigurator
#Power tools
#Later on these should switch probably switch damage when changing the tool behavior.
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/magic.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/magic.yml
index 4c3fd937e03..cd736a33d08 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/magic.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/magic.yml
@@ -98,10 +98,10 @@
stateLocked: cursed_door
stateUnlocked: decursed_door
- type: Lock
- breakOnAccessBreaker: false
+ breakOnEmag: false
- type: AccessReader
access: [["Wizard"]]
- breakOnAccessBreaker: false
+ breakOnEmag: false
- type: Projectile
deleteOnCollide: false
onlyCollideWhenShot: true
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Shotguns/shotguns.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Shotguns/shotguns.yml
index b5d9ac02b7a..d75cdc54c79 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Shotguns/shotguns.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Shotguns/shotguns.yml
@@ -48,7 +48,8 @@
# Don't parent to BaseWeaponShotgun because it differs significantly
parent: [BaseItem, BaseGunWieldable, BaseSyndicateContraband]
id: WeaponShotgunBulldog
- description: An automatic magazine-fed shotgun for close-quarters combat. Kicks like a mule on steroids. Uses .50 shotgun shells.
+ description: It's a magazine-fed shotgun designed for close quarters combat. Uses .50 shotgun shells.
+ categories: [ HideSpawnMenu ]
components:
- type: Sprite
sprite: Objects/Weapons/Guns/Shotguns/bulldog.rsi
@@ -116,7 +117,7 @@
sprite: Objects/Weapons/Guns/Shotguns/db_shotgun_inhands_64x.rsi
- type: GunRequiresWield #remove when inaccuracy on spreads is fixed
- type: Gun
- fireRate: 3
+ fireRate: 2
- type: BallisticAmmoProvider
capacity: 2
- type: Construction
@@ -138,8 +139,9 @@
name: Enforcer
parent: [BaseWeaponShotgun, BaseGunWieldable, BaseRestrictedContraband]
id: WeaponShotgunEnforcer
- description: A premium semi-automatic shotgun, and the pride of all security forces. Uses .50 shotgun shells.
- components: # intend for Enforcer to have wider choke for semi-auto function
+ description: A premium combat shotgun based on the Kammerer design, featuring an upgraded clip capacity. .50 shotgun shells.
+ categories: [ HideSpawnMenu ]
+ components:
- type: Sprite
sprite: Objects/Weapons/Guns/Shotguns/enforcer.rsi
- type: Clothing
@@ -168,8 +170,9 @@
name: Kammerer
parent: [BaseWeaponShotgun, BaseGunWieldable, BaseRestrictedContraband]
id: WeaponShotgunKammerer
- description: An old yet faithful design, and a favorite among irregular forces of many worlds. Uses .50 shotgun shells.
- components: # intend for Kammerer to have tighter choke for slower fire rate and/or manual cycling
+ categories: [ HideSpawnMenu ]
+ description: When an old Remington design meets modern materials, this is the result. A favourite weapon of militia forces throughout many worlds. Uses .50 shotgun shells.
+ components:
- type: Item
size: Normal
shape:
@@ -182,8 +185,7 @@
- type: GunRequiresWield #remove when inaccuracy on spreads is fixed
- type: BallisticAmmoProvider
capacity: 4
- - type: Gun
- fireRate: 1
+ - type: Gun # Corvax-Guns
soundGunshot:
path: /Audio/Corvax/Weapons/Guns/Gunshots/shotgun_alt.ogg
- type: Tag
@@ -195,7 +197,7 @@
parent: [ BaseWeaponShotgun, BaseSecurityBartenderContraband ]
id: WeaponShotgunSawn
description: Groovy! Uses .50 shotgun shells.
- components: # needs to be super inaccurate because you don't need to wield it
+ components:
- type: Sprite
sprite: Objects/Weapons/Guns/Shotguns/sawn.rsi
- type: Clothing
@@ -204,7 +206,7 @@
size: Small
sprite: Objects/Weapons/Guns/Shotguns/sawn_inhands_64x.rsi
- type: Gun
- fireRate: 3
+ fireRate: 4
soundGunshot: # Corvax-Guns
path: /Audio/Corvax/Weapons/Guns/Gunshots/shotgun_sawed.ogg
- type: BallisticAmmoProvider
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Snipers/snipers.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Snipers/snipers.yml
index 5347fffdd7c..9cb0b630b7e 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Snipers/snipers.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Snipers/snipers.yml
@@ -67,10 +67,6 @@
capacity: 5
proto: CartridgeAntiMateriel
- type: Telescope # WD EDIT
- - type: CursorOffsetRequiresWield
- - type: EyeCursorOffset
- maxOffset: 3
- pvsIncrease: 0.3
- type: entity
name: musket
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/security.yml b/Resources/Prototypes/Entities/Objects/Weapons/security.yml
index 57550d30ad6..edbe58f584f 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/security.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/security.yml
@@ -36,7 +36,7 @@
Blunt: 7
bluntStaminaDamageFactor: 2.0
angle: 60
- animation: WeaponArcThrust
+ animation: WeaponArcSlash
- type: StaminaDamageOnHit
damage: 35
sound: /Audio/Weapons/egloves.ogg
diff --git a/Resources/Prototypes/Entities/Stations/base.yml b/Resources/Prototypes/Entities/Stations/base.yml
index 4c3d7acb7ca..897bf758ba4 100644
--- a/Resources/Prototypes/Entities/Stations/base.yml
+++ b/Resources/Prototypes/Entities/Stations/base.yml
@@ -78,16 +78,6 @@
#- /Maps/Corvax/Ruins/corvax_ussp_debris.yml
#- /Maps/Corvax/Ruins/corvax_ussp_asteroid.yml
# Corvax-Mapping-End
- - /Maps/Ruins/chunked_tcomms.yml
- - /Maps/Ruins/biodome_satellite.yml
- - /Maps/Ruins/derelict.yml
- - /Maps/Ruins/djstation.yml
- - /Maps/Ruins/empty_flagship.yml
- - /Maps/Ruins/old_ai_sat.yml
- - /Maps/Ruins/ruined_prison_ship.yml
- - /Maps/Ruins/syndicate_dropship.yml
- - /Maps/Ruins/whiteship_ancient.yml
- - /Maps/Ruins/whiteship_bluespacejumper.yml
- /Maps/Ruins/wrecklaimer.yml
#vgroid: !type:DungeonSpawnGroup
# minimumDistance: 300
diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml
index b811d0f6673..07a73963b34 100644
--- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml
+++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml
@@ -175,11 +175,6 @@
# This tag is used to nagivate the Airlock construction graph. It's needed because the construction graph is shared between Airlock, AirlockGlass, and HighSecDoor
- type: PryUnpowered
- type: BlockWeather
- - type: GuideHelp
- guides:
- - Airlocks
- - WirePanels
- - Networking
placement:
mode: SnapgridCenter
diff --git a/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml b/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml
index a8820b4fc69..a4cb78e67b7 100644
--- a/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml
+++ b/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml
@@ -23,9 +23,6 @@
cost: 4
delay: 6
fx: EffectRCDDeconstruct6
- - type: Tag
- tags:
- - ForceFixRotations # Allow fixrotations to target these
- type: Destructible
thresholds:
- trigger:
@@ -119,11 +116,6 @@
enabled: false
castShadows: false
- type: NavMapDoor
- - type: GuideHelp
- guides:
- - FireAndGasControl
- - Fires
- - Spacing
- type: entity
id: Firelock
@@ -195,9 +187,6 @@
- GlassAirlockLayer
- type: Occluder
enabled: false
- - type: Tag
- tags:
- - ForceNoFixRotations # Prevent fixrotations from targeting these, since the base Firelock is targeted
- type: Door
occludes: false
- type: Physics
diff --git a/Resources/Prototypes/Entities/Structures/Doors/SecretDoor/secret_door.yml b/Resources/Prototypes/Entities/Structures/Doors/SecretDoor/secret_door.yml
index f4e7829d52b..14d99f3adf7 100644
--- a/Resources/Prototypes/Entities/Structures/Doors/SecretDoor/secret_door.yml
+++ b/Resources/Prototypes/Entities/Structures/Doors/SecretDoor/secret_door.yml
@@ -65,7 +65,6 @@
tags:
- Structure
- Wall
- - ForceNoFixRotations # Don't want the fixrotations command to target these
- type: ContainerContainer
containers:
battery-container: !type:Container
diff --git a/Resources/Prototypes/Entities/Structures/Doors/Shutter/blast_door.yml b/Resources/Prototypes/Entities/Structures/Doors/Shutter/blast_door.yml
index d61f6dd21c9..ef25bea8c8f 100644
--- a/Resources/Prototypes/Entities/Structures/Doors/Shutter/blast_door.yml
+++ b/Resources/Prototypes/Entities/Structures/Doors/Shutter/blast_door.yml
@@ -22,10 +22,6 @@
crushDamage:
types:
Blunt: 25 # yowch
- openSound:
- path: /Audio/Machines/blastdoor.ogg
- closeSound:
- path: /Audio/Machines/blastdoor.ogg
- type: Occluder
- type: Appearance
- type: RadiationBlocker
@@ -43,11 +39,6 @@
- board
- type: StaticPrice
price: 500
- - type: InteractionPopup
- interactSuccessString: comp-window-knock
- messagePerceivedByOthers: comp-window-knock
- interactSuccessSound:
- path: /Audio/Effects/glass_knock.ogg
- type: entity
id: BlastDoorOpen
diff --git a/Resources/Prototypes/Entities/Structures/Doors/Shutter/shutters.yml b/Resources/Prototypes/Entities/Structures/Doors/Shutter/shutters.yml
index 588de4cdf02..77f5cf68e82 100644
--- a/Resources/Prototypes/Entities/Structures/Doors/Shutter/shutters.yml
+++ b/Resources/Prototypes/Entities/Structures/Doors/Shutter/shutters.yml
@@ -34,9 +34,6 @@
containers:
board: !type:Container
- type: NavMapDoor
- - type: Tag
- tags:
- - ForceNoFixRotations # Don't want the fixrotations command to target these
- type: Door
openDrawDepth: BlastDoors
closedDrawDepth: BlastDoors
@@ -52,9 +49,9 @@
types:
Blunt: 5 # getting shutters closed on you probably doesn't hurt that much
openSound:
- path: /Audio/Machines/shutter.ogg
+ path: /Audio/Machines/blastdoor.ogg
closeSound:
- path: /Audio/Machines/shutter.ogg
+ path: /Audio/Machines/blastdoor.ogg
- type: Weldable
time: 3
- type: Appearance
@@ -97,10 +94,10 @@
lastSignals:
DoorStatus: false
- type: InteractionPopup
- interactSuccessString: shutter-rattle
- messagePerceivedByOthers: shutter-rattle
+ interactSuccessString: comp-window-knock
+ messagePerceivedByOthers: comp-window-knock
interactSuccessSound:
- collection: FenceRattle
+ path: /Audio/Effects/glass_knock.ogg
- type: BlockWeather
- type: entity
diff --git a/Resources/Prototypes/Entities/Structures/Furniture/Tables/base_structuretables.yml b/Resources/Prototypes/Entities/Structures/Furniture/Tables/base_structuretables.yml
index f6a193a91d0..fd0628dddf7 100644
--- a/Resources/Prototypes/Entities/Structures/Furniture/Tables/base_structuretables.yml
+++ b/Resources/Prototypes/Entities/Structures/Furniture/Tables/base_structuretables.yml
@@ -37,9 +37,6 @@
footstepSoundCollection:
collection: FootstepHull
- type: RequireProjectileTarget
- - type: Tag
- tags:
- - ForceFixRotations
- type: entity
id: CounterBase
diff --git a/Resources/Prototypes/Entities/Structures/Furniture/carpets.yml b/Resources/Prototypes/Entities/Structures/Furniture/carpets.yml
index 77a0b2df1d9..e6b04766189 100644
--- a/Resources/Prototypes/Entities/Structures/Furniture/carpets.yml
+++ b/Resources/Prototypes/Entities/Structures/Furniture/carpets.yml
@@ -14,9 +14,7 @@
key: full
base: carpet_
- type: Tag
- tags:
- - Carpet
- - ForceFixRotations
+ tags: [ Carpet ]
- type: Physics
canCollide: false
- type: Fixtures
@@ -24,12 +22,12 @@
damageContainer: Inorganic
- type: Destructible
thresholds:
- - trigger:
- !type:DamageTrigger
- damage: 10
+ - trigger:
+ !type:DamageTrigger
+ damage: 10
behaviors:
- - !type:DoActsBehavior
- acts: [ "Destruction" ]
+ - !type:DoActsBehavior
+ acts: [ "Destruction" ]
- type: Butcherable
butcheringType: Knife
butcherDelay: 2
diff --git a/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml b/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml
index 7a933dde22f..eb3fc532178 100644
--- a/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml
+++ b/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml
@@ -48,10 +48,6 @@
type: AtmosAlertsComputerBoundUserInterface
enum.WiresUiKey.Key:
type: WiresBoundUserInterface
- - type: GuideHelp
- guides:
- - AtmosphericAlertsComputer
- - DeviceMonitoringAndControl
- type: entity
parent: BaseComputerAiAccess
@@ -85,10 +81,6 @@
type: AtmosMonitoringConsoleBoundUserInterface
enum.WiresUiKey.Key:
type: WiresBoundUserInterface
- - type: GuideHelp
- guides:
- - AtmosphericNetworkMonitor
- - DeviceMonitoringAndControl
- type: entity
parent: BaseComputer
@@ -156,9 +148,6 @@
board: !type:Container
ents: []
disk_slot: !type:ContainerSlot {}
- - type: GuideHelp
- guides:
- - ShuttleCraft
- type: entity
parent: BaseComputerShuttle
@@ -621,7 +610,7 @@
color: "#3c5eb5"
- type: Tag
tags:
- - AccessBreakerImmune
+ - EmagImmune
- type: ItemSlots
- type: ContainerContainer
containers:
@@ -752,10 +741,6 @@
radius: 1.5
energy: 1.6
color: "#e6e227"
- - type: GuideHelp
- guides:
- - SolarPanels
- - Power
- type: entity
parent: BaseComputerAiAccess
diff --git a/Resources/Prototypes/Entities/Structures/Machines/artifact_analyzer.yml b/Resources/Prototypes/Entities/Structures/Machines/artifact_analyzer.yml
index 7d1719a7083..741e0a39711 100644
--- a/Resources/Prototypes/Entities/Structures/Machines/artifact_analyzer.yml
+++ b/Resources/Prototypes/Entities/Structures/Machines/artifact_analyzer.yml
@@ -7,7 +7,7 @@
- type: Sprite
noRot: true
sprite: Structures/Machines/artifact_analyzer.rsi
- drawdepth: HighFloorObjects
+ drawdepth: FloorObjects
layers:
- state: icon
- state: unshaded
diff --git a/Resources/Prototypes/Entities/Structures/Machines/fatextractor.yml b/Resources/Prototypes/Entities/Structures/Machines/fatextractor.yml
index 770a17a8ff7..96de462b79c 100644
--- a/Resources/Prototypes/Entities/Structures/Machines/fatextractor.yml
+++ b/Resources/Prototypes/Entities/Structures/Machines/fatextractor.yml
@@ -35,7 +35,7 @@
visible: false
map: ["enum.FatExtractorVisualLayers.Smoke"]
- type: Lock
- breakOnAccessBreaker: false
+ breakOnEmag: false
- type: GenericVisualizer
visuals:
enum.StorageVisuals.Open:
diff --git a/Resources/Prototypes/Entities/Structures/Machines/fax_machine.yml b/Resources/Prototypes/Entities/Structures/Machines/fax_machine.yml
index e10c18ad362..daf20fad3c6 100644
--- a/Resources/Prototypes/Entities/Structures/Machines/fax_machine.yml
+++ b/Resources/Prototypes/Entities/Structures/Machines/fax_machine.yml
@@ -102,7 +102,6 @@
responsePings: false
notifyAdmins: true
- type: Emagged
- emagType: Interaction
- type: entity
parent: FaxMachineBase
diff --git a/Resources/Prototypes/Entities/Structures/Machines/holopad.yml b/Resources/Prototypes/Entities/Structures/Machines/holopad.yml
index c95609c55ab..421d2809d4a 100644
--- a/Resources/Prototypes/Entities/Structures/Machines/holopad.yml
+++ b/Resources/Prototypes/Entities/Structures/Machines/holopad.yml
@@ -22,7 +22,7 @@
- type: StationAiVision
- type: Sprite
sprite: Structures/Machines/holopad.rsi
- drawdepth: HighFloorObjects
+ drawdepth: FloorObjects
snapCardinals: true
layers:
- state: base
diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml
index 693c31a1c86..373e09f0c48 100644
--- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml
+++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml
@@ -357,7 +357,6 @@
- FauxTileJungleAstroGrass
- FauxTileAstroIce
- FauxTileAstroSnow
- - FauxTileAstroAsteroidSand
- OreBagOfHolding
- DeviceQuantumSpinInverter
- EnergyDomeDirectionalTurtle # cats-shield energy_barrier
diff --git a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/binary.yml b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/binary.yml
index 9b381094ce9..0081680cf03 100644
--- a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/binary.yml
+++ b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/binary.yml
@@ -75,10 +75,7 @@
path: /Audio/Ambience/Objects/gas_pump.ogg
- type: AtmosMonitoringConsoleDevice
navMapBlip: GasFlowRegulator
- - type: GuideHelp
- guides:
- - Pumps
-
+
- type: entity
parent: GasBinaryBase
id: GasVolumePump
@@ -137,10 +134,7 @@
- type: WiredNetworkConnection
- type: AtmosMonitoringConsoleDevice
navMapBlip: GasFlowRegulator
- - type: GuideHelp
- guides:
- - Pumps
-
+
- type: entity
parent: GasBinaryBase
id: GasPassiveGate
@@ -171,10 +165,7 @@
path: /Audio/Ambience/Objects/gas_hiss.ogg
- type: AtmosMonitoringConsoleDevice
navMapBlip: GasValve
- - type: GuideHelp
- guides:
- - PassiveGate
-
+
- type: entity
parent: GasBinaryBase
id: GasValve
@@ -224,10 +215,7 @@
path: /Audio/Ambience/Objects/gas_hiss.ogg
- type: AtmosMonitoringConsoleDevice
navMapBlip: GasValve
- - type: GuideHelp
- guides:
- - ManualValve
-
+
- type: entity
parent: GasBinaryBase
id: SignalControlledValve
@@ -288,10 +276,7 @@
path: /Audio/Ambience/Objects/gas_hiss.ogg
- type: AtmosMonitoringConsoleDevice
navMapBlip: GasValve
- - type: GuideHelp
- guides:
- - SignalValve
-
+
- type: entity
parent: GasBinaryBase
id: GasPort
@@ -322,10 +307,7 @@
node: port
- type: AtmosMonitoringConsoleDevice
navMapBlip: GasVentOpening
- - type: GuideHelp
- guides:
- - GasCanisters
-
+
- type: entity
parent: GasVentPump
id: GasDualPortVentPump
@@ -383,10 +365,7 @@
enabled: true
- type: AtmosMonitoringConsoleDevice
navMapBlip: GasVentOpening
- - type: GuideHelp
- guides:
- - AirVent
-
+
- type: entity
parent: [ BaseMachine, ConstructibleMachine ]
id: GasRecycler
@@ -451,7 +430,7 @@
board: GasRecyclerMachineCircuitboard
- type: AtmosMonitoringConsoleDevice
navMapBlip: GasValve
-
+
- type: entity
parent: GasBinaryBase
id: HeatExchanger
@@ -493,9 +472,6 @@
node: radiator
- type: AtmosMonitoringConsoleDevice
navMapBlip: Thermoregulator
- - type: GuideHelp
- guides:
- - Radiators
- type: entity
parent: HeatExchanger
diff --git a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/gas_pipe_sensor.yml b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/gas_pipe_sensor.yml
index 57574f7f7de..22b56908ea8 100644
--- a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/gas_pipe_sensor.yml
+++ b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/gas_pipe_sensor.yml
@@ -2,7 +2,7 @@
parent: [AirSensorBase, GasPipeBase]
id: GasPipeSensor
name: gas pipe sensor
- description: Reports on the status of the gas in the attached pipe network.
+ description: Reports on the status of the gas in the attached pipe network.
placement:
mode: SnapgridCenter
components:
@@ -16,8 +16,8 @@
- map: ["base"]
state: base
- map: [ "enum.PowerDeviceVisualLayers.Powered" ]
- state: lights
- shader: unshaded
+ state: lights
+ shader: unshaded
- type: Appearance
- type: GenericVisualizer
visuals:
@@ -34,7 +34,7 @@
- type: ExtensionCableReceiver
- type: Construction
graph: GasPipeSensor
- node: sensor
+ node: sensor
- type: NodeContainer
nodes:
monitored:
@@ -44,38 +44,34 @@
- type: Tag
tags:
- AirSensor
- - Unstackable
- - type: GuideHelp
- guides:
- - AtmosphericNetworkMonitor
- - DeviceMonitoringAndControl
+ - Unstackable
- type: entity
- parent: GasPipeSensor
- id: GasPipeSensorDistribution
+ parent: GasPipeSensor
+ id: GasPipeSensorDistribution
suffix: Distribution
components:
- type: Label
currentLabel: gas-pipe-sensor-distribution-loop
- type: entity
- parent: GasPipeSensor
- id: GasPipeSensorWaste
+ parent: GasPipeSensor
+ id: GasPipeSensorWaste
suffix: Waste
components:
- type: Label
currentLabel: gas-pipe-sensor-waste-loop
- type: entity
- parent: GasPipeSensor
- id: GasPipeSensorMixedAir
+ parent: GasPipeSensor
+ id: GasPipeSensorMixedAir
suffix: Mixed air
components:
- type: Label
currentLabel: gas-pipe-sensor-mixed-air
- type: entity
- parent: GasPipeSensor
+ parent: GasPipeSensor
id: GasPipeSensorTEGHot
suffix: TEG hot
components:
@@ -83,9 +79,9 @@
currentLabel: gas-pipe-sensor-teg-hot-loop
- type: entity
- parent: GasPipeSensor
+ parent: GasPipeSensor
id: GasPipeSensorTEGCold
suffix: TEG cold
components:
- type: Label
- currentLabel: gas-pipe-sensor-teg-cold-loop
+ currentLabel: gas-pipe-sensor-teg-cold-loop
\ No newline at end of file
diff --git a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/miners.yml b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/miners.yml
index 9637c55bc76..5562715fdb2 100644
--- a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/miners.yml
+++ b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/miners.yml
@@ -32,9 +32,6 @@
- type: GasMiner
maxExternalPressure: 300
spawnAmount: 400
- - type: GuideHelp
- guides:
- - GasMiningAndStorage
- type: entity
name: O2 gas miner
diff --git a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/pipes.yml b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/pipes.yml
index 54f4d356c34..96d1fd78fdb 100644
--- a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/pipes.yml
+++ b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/pipes.yml
@@ -94,10 +94,6 @@
- type: Construction
graph: GasPipe
node: half
- - type: GuideHelp
- guides:
- - Pipes
- - PipeNetworks
- type: entity
# backmen - Allow device-on-pipe stacking
@@ -132,10 +128,6 @@
Blunt: 8
soundHit:
collection: MetalThud # this NEEDS to changed to the metal pipe falling sound effect on april first every year
- - type: GuideHelp
- guides:
- - Pipes
- - PipeNetworks
- type: entity
# backmen - Allow device-on-pipe stacking
@@ -177,10 +169,6 @@
damage:
types:
Blunt: 8 # Woe, pipe be upon ye!
- - type: GuideHelp
- guides:
- - Pipes
- - PipeNetworks
- type: entity
# backmen - Allow device-on-pipe stacking
@@ -218,10 +206,6 @@
Blunt: 10
soundHit:
collection: MetalThud
- - type: GuideHelp
- guides:
- - Pipes
- - PipeNetworks
- type: entity
# backmen - Allow device-on-pipe stacking
@@ -258,10 +242,6 @@
Blunt: 10
soundHit:
collection: MetalThud
- - type: GuideHelp
- guides:
- - Pipes
- - PipeNetworks
- type: entity
id: GasPipeBroken
@@ -288,7 +268,3 @@
behaviors:
- !type:DoActsBehavior
acts: ["Destruction"]
- - type: GuideHelp
- guides:
- - Pipes
- - PipeNetworks
diff --git a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/portable.yml b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/portable.yml
index 832a23e8ac4..eae848c7aa9 100644
--- a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/portable.yml
+++ b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/portable.yml
@@ -95,9 +95,6 @@
max: 2
- !type:DoActsBehavior
acts: [ "Destruction" ]
- - type: GuideHelp
- guides:
- - PortableScrubber
- type: entity
id: SpaceHeater
@@ -183,9 +180,6 @@
max: 3
- !type:DoActsBehavior
acts: [ "Destruction" ]
- - type: GuideHelp
- guides:
- - Thermomachines
- type: entity
parent: SpaceHeater
diff --git a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/trinary.yml b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/trinary.yml
index 06656d01775..bde7136850f 100644
--- a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/trinary.yml
+++ b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/trinary.yml
@@ -72,10 +72,7 @@
path: /Audio/Ambience/Objects/gas_hiss.ogg
- type: AtmosMonitoringConsoleDevice
navMapBlip: GasFlowRegulator
- - type: GuideHelp
- guides:
- - MixingAndFiltering
-
+
- type: entity
parent: GasFilter
id: GasFilterFlipped
@@ -165,10 +162,7 @@
path: /Audio/Ambience/Objects/gas_hiss.ogg
- type: AtmosMonitoringConsoleDevice
navMapBlip: GasFlowRegulator
- - type: GuideHelp
- guides:
- - MixingAndFiltering
-
+
- type: entity
parent: GasMixer
id: GasMixerFlipped
@@ -216,7 +210,7 @@
parent: GasPipeBase
id: PressureControlledValve
name: pneumatic valve
- description: A bidirectional valve controlled by pressure. Opens if the output pipe is lower than the pressure of the control pipe by 101.325 kPa.
+ description: Valve controlled by pressure.
placement:
mode: SnapgridCenter
components:
@@ -268,9 +262,4 @@
graph: GasTrinary
node: pneumaticvalve
- type: AtmosMonitoringConsoleDevice
- navMapBlip: GasFlowRegulator
- - type: GuideHelp
- guides:
- - PneumaticValve
- - Pumps
- - Valves
+ navMapBlip: GasFlowRegulator
\ No newline at end of file
diff --git a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/unary.yml b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/unary.yml
index be30da01c32..d7c9d6dbde5 100644
--- a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/unary.yml
+++ b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/unary.yml
@@ -70,11 +70,7 @@
- type: Weldable
- type: AtmosMonitoringConsoleDevice
navMapBlip: GasVentOpening
- - type: GuideHelp
- guides:
- - AirVent
- - DeviceMonitoringAndControl
-
+
- type: entity
parent: GasUnaryBase
id: GasPassiveVent
@@ -100,10 +96,7 @@
node: passivevent
- type: AtmosMonitoringConsoleDevice
navMapBlip: GasVentOpening
- - type: GuideHelp
- guides:
- - PassiveVent
-
+
- type: entity
parent: [GasUnaryBase, AirSensorBase]
id: GasVentScrubber
@@ -154,11 +147,7 @@
- type: Weldable
- type: AtmosMonitoringConsoleDevice
navMapBlip: GasVentScrubber
- - type: GuideHelp
- guides:
- - AirScrubber
- - DeviceMonitoringAndControl
-
+
- type: entity
parent: GasUnaryBase
id: GasOutletInjector
@@ -199,10 +188,7 @@
- enum.LightLayers.Unshaded
- type: AtmosMonitoringConsoleDevice
navMapBlip: GasVentOpening
- - type: GuideHelp
- guides:
- - AirInjector
-
+
- type: entity
parent: [ BaseMachinePowered, ConstructibleMachine ]
id: BaseGasThermoMachine
@@ -249,10 +235,7 @@
- type: PowerSwitch
- type: AtmosMonitoringConsoleDevice
navMapBlip: Thermoregulator
- - type: GuideHelp
- guides:
- - Thermomachines
-
+
- type: entity
parent: BaseGasThermoMachine
id: GasThermoMachineFreezer
@@ -460,6 +443,3 @@
- type: PowerSwitch
- type: AtmosMonitoringConsoleDevice
navMapBlip: Thermoregulator
- - type: GuideHelp
- guides:
- - GasCondensing
diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/PA/base_particleaccelerator.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/PA/base_particleaccelerator.yml
index d5b7e3667d7..01c85a184e9 100644
--- a/Resources/Prototypes/Entities/Structures/Power/Generation/PA/base_particleaccelerator.yml
+++ b/Resources/Prototypes/Entities/Structures/Power/Generation/PA/base_particleaccelerator.yml
@@ -26,8 +26,7 @@
- type: Pullable
- type: Clickable
- type: GuideHelp
- guides:
- - SingularityTeslaEngine
+ guides: [ Singularity, Power ]
- type: Appearance
- type: entity
diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/PA/particles.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/PA/particles.yml
index 0a36d91e38d..9d3ce9c931f 100644
--- a/Resources/Prototypes/Entities/Structures/Power/Generation/PA/particles.yml
+++ b/Resources/Prototypes/Entities/Structures/Power/Generation/PA/particles.yml
@@ -46,10 +46,8 @@
Level1: {state: particle1}
Level2: {state: particle2}
Level3: {state: particle3}
- - type: GuideHelp # why does this even have a guidebook link in the first place
- guides:
- - SingularityTeslaEngine
- - Power
+ - type: GuideHelp
+ guides: [ Singularity, Power ]
- type: entity
name: anti particles
diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/collector.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/collector.yml
index 6b8de781b84..3742c037ff5 100644
--- a/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/collector.yml
+++ b/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/collector.yml
@@ -68,9 +68,7 @@
- type: Rotatable
- type: Pullable
- type: GuideHelp
- guides:
- - SingularityEngine
- - Power
+ guides: [ Singularity, Power ]
- type: ContainerContainer
containers:
gas_tank: !type:ContainerSlot {}
diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/containment.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/containment.yml
index 610ab426214..096aeb2a8b1 100644
--- a/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/containment.yml
+++ b/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/containment.yml
@@ -65,10 +65,7 @@
True: { visible: true }
False: { visible: false }
- type: GuideHelp
- guides:
- - SingularityTeslaEngine
- - SingularityEngine
- - Power
+ guides: [ Singularity, Power ]
- type: entity
@@ -103,7 +100,6 @@
throwForce: 50
- type: SyncSprite
- type: GuideHelp
- guides:
- - SingularityTeslaEngine
- - SingularityEngine
- - Power
+ guides: [ Singularity, Power ]
+
+
diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/emitter.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/emitter.yml
index 9cd60a6de67..77e3d172f46 100644
--- a/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/emitter.yml
+++ b/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/emitter.yml
@@ -91,8 +91,7 @@
- type: Machine
board: EmitterCircuitboard
- type: GuideHelp
- guides:
- - SingularityTeslaEngine
+ guides: [ Singularity, Power ]
- type: DeviceNetwork
deviceNetId: Wireless
receiveFrequencyId: BasicDevice
diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/generator.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/generator.yml
index 8f902f85855..45a40bf0faf 100644
--- a/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/generator.yml
+++ b/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/generator.yml
@@ -32,7 +32,5 @@
- type: Anchorable
- type: Pullable
- type: GuideHelp
- guides:
- - SingularityEngine
- - Power
+ guides: [ Singularity, Power ]
diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/singularity.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/singularity.yml
index 461b17efbb6..bf2c6cfcc0c 100644
--- a/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/singularity.yml
+++ b/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/singularity.yml
@@ -61,11 +61,8 @@
enabled: true
radius: 10
- type: Appearance
- - type: GuideHelp # Always strive to be helpful in trying times.
- guides:
- - SingularityEngine
- - SingularityTeslaEngine
- - Power
+ - type: GuideHelp
+ guides: [ Singularity, Power ] # uhhh.. I would hoped they'd have read the manual before ever getting in viewing distance...
- type: WarpPoint
follow: true
location: singularity
diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/coil.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/coil.yml
index fbb1d8c1b0b..dc2ad1687a5 100644
--- a/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/coil.yml
+++ b/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/coil.yml
@@ -101,10 +101,7 @@
SheetSteel1:
min: 2
max: 4
- - type: GuideHelp
- guides:
- - TeslaEngine
- - SingularityTeslaEngine
+ #- type: GuideHelp # TODO - add Tesla Guide
- type: entity
id: TeslaGroundingRod
@@ -187,7 +184,5 @@
SheetSteel1:
min: 2
max: 4
- - type: GuideHelp
- guides:
- - TeslaEngine
- - SingularityTeslaEngine
+ #- type: GuideHelp # TODO - add Tesla Guide
+
diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/energyball.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/energyball.yml
index 909601e0666..558504d5797 100644
--- a/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/energyball.yml
+++ b/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/energyball.yml
@@ -108,11 +108,6 @@
interactSuccessString: petting-success-tesla
interactFailureString: petting-failure-tesla
interactSuccessSpawn: EffectHearts
- - type: GuideHelp # For the curious among the brave.
- guides:
- - TeslaEngine
- - SingularityTeslaEngine
- - Power
- type: entity
id: TeslaMiniEnergyBall
diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/generator.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/generator.yml
index 27b2c5c5a88..bdd90f2f16a 100644
--- a/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/generator.yml
+++ b/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/generator.yml
@@ -25,8 +25,5 @@
layer:
- Opaque
- type: Anchorable
- - type: GuideHelp
- guides:
- - TeslaEngine
- - Power
+ #- type: GuideHelp # TODO - add Tesla Guide
diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/ame.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/ame.yml
index 550dddc8476..ecc5f20420b 100644
--- a/Resources/Prototypes/Entities/Structures/Power/Generation/ame.yml
+++ b/Resources/Prototypes/Entities/Structures/Power/Generation/ame.yml
@@ -98,9 +98,7 @@
containers:
fuelSlot: !type:ContainerSlot
- type: GuideHelp
- guides:
- - AME
- - Power
+ guides: [ AME, Power ]
- type: Electrified
onHandInteract: false
onInteractUsing: false
@@ -203,9 +201,7 @@
graph: AmeShielding
node: ameShielding
- type: GuideHelp
- guides:
- - AME
- - Power
+ guides: [ AME, Power ]
- type: Electrified
onHandInteract: false
onInteractUsing: false
diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/generators.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/generators.yml
index 2be509e8e64..6d483bd9ced 100644
--- a/Resources/Prototypes/Entities/Structures/Power/Generation/generators.yml
+++ b/Resources/Prototypes/Entities/Structures/Power/Generation/generators.yml
@@ -87,9 +87,6 @@
onBump: false
requirePower: true
highVoltageNode: output
- - type: GuideHelp
- guides:
- - ShuttleCraft
# Base Wallmount Generator
@@ -143,9 +140,6 @@
supplyRampRate: 500
supplyRampTolerance: 500
- type: WallMount
- - type: GuideHelp
- guides:
- - ShuttleCraft
# Construction Frames
@@ -231,9 +225,6 @@
- type: ContainerContainer
containers:
board: !type:Container
- - type: GuideHelp
- guides:
- - ShuttleCraft
# RTG - no fuel requirement
diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/portable_generator.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/portable_generator.yml
index a7b55841e50..c822e0c0b31 100644
--- a/Resources/Prototypes/Entities/Structures/Power/Generation/portable_generator.yml
+++ b/Resources/Prototypes/Entities/Structures/Power/Generation/portable_generator.yml
@@ -75,9 +75,7 @@
- !type:DoActsBehavior
acts: ["Destruction"]
- type: GuideHelp
- guides:
- - PortableGenerator
- - Power
+ guides: [ PortableGenerator, Power ]
# Core functionality
- type: PortableGenerator
diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/solar.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/solar.yml
index f64f6612b0d..e43ee9adca4 100644
--- a/Resources/Prototypes/Entities/Structures/Power/Generation/solar.yml
+++ b/Resources/Prototypes/Entities/Structures/Power/Generation/solar.yml
@@ -28,7 +28,7 @@
- MidImpassable, LowImpassable, BulletImpassable
- type: Sprite
sprite: Structures/Power/Generation/solar_panel.rsi
- state: solar_panel_glass
+ state: normal
- type: NodeContainer
examinable: true
nodes:
@@ -39,7 +39,7 @@
group: Generator
loadNode: output
sprite: Structures/Power/Generation/solar_panel.rsi
- state: solar_panel_glass
+ state: static
collectionName: SolarPanel
- type: Anchorable
- type: Pullable
@@ -50,77 +50,6 @@
requirePower: true
highVoltageNode: output
- type: RequireProjectileTarget
- - type: GuideHelp
- guides:
- - SolarPanels
-
-- type: entity
- id: SolarPanelPlasma
- parent: SolarPanelBasePhysSprite
- name: solar panel plasma
- description: A plasma solar panel that generates power.
- components:
- - type: PowerSupplier
- supplyRampTolerance: 500
- supplyRampRate: 500
- - type: SolarPanel
- maxSupply: 1000
- - type: Sprite
- sprite: Structures/Power/Generation/solar_panel.rsi
- state: solar_panel_plasma
- - type: Damageable
- damageContainer: Inorganic
- damageModifierSet: Metallic
- - type: Destructible
- thresholds:
- - trigger:
- !type:DamageTrigger
- damage: 150
- behaviors:
- - !type:PlaySoundBehavior
- sound:
- collection: GlassBreak
- - !type:ChangeConstructionNodeBehavior
- node: solarpanelplasma_broken
- - !type:DoActsBehavior
- acts: ["Breakage"]
- - type: Construction
- graph: SolarPanel
- node: solarpanelplasma
-
-- type: entity
- id: SolarPanelUranium
- parent: SolarPanelBasePhysSprite
- name: solar panel uranium
- description: A uranium solar panel that generates power.
- components:
- - type: PowerSupplier
- supplyRampTolerance: 500
- supplyRampRate: 500
- - type: SolarPanel
- maxSupply: 1500
- - type: Sprite
- sprite: Structures/Power/Generation/solar_panel.rsi
- state: solar_panel_uranium
- - type: Damageable
- damageContainer: Inorganic
- damageModifierSet: Metallic
- - type: Destructible
- thresholds:
- - trigger:
- !type:DamageTrigger
- damage: 200
- behaviors:
- - !type:PlaySoundBehavior
- sound:
- collection: GlassBreak
- - !type:ChangeConstructionNodeBehavior
- node: solarpaneluranium_broken
- - !type:DoActsBehavior
- acts: ["Breakage"]
- - type: Construction
- graph: SolarPanel
- node: solarpaneluranium
- type: entity
id: SolarPanel
@@ -160,7 +89,7 @@
suffix: Broken
components:
- type: Sprite
- state: solar_panel_glass_broken
+ state: broken
- type: Damageable
damageContainer: StructuralInorganic
damageModifierSet: Metallic
@@ -184,70 +113,6 @@
graph: SolarPanel
node: solarpanel_broken
-- type: entity
- id: SolarPanelPlasmaBroken
- parent: SolarPanelBasePhysSprite
- name: plasma solar panel
- description: A broken plasma solar panel.
- suffix: Broken
- components:
- - type: Sprite
- state: solar_panel_plasma_broken
- - type: Damageable
- damageContainer: Inorganic
- damageModifierSet: Metallic
- - type: Destructible
- thresholds:
- - trigger:
- !type:DamageTrigger
- damage: 50
- behaviors:
- - !type:PlaySoundBehavior
- sound:
- collection: GlassBreak
- - !type:SpawnEntitiesBehavior
- spawn:
- ShardGlassPlasma:
- min: 1
- max: 2
- - !type:DoActsBehavior
- acts: [ "Destruction" ]
- - type: Construction
- graph: SolarPanel
- node: solarpanelplasma_broken
-
-- type: entity
- id: SolarPanelUraniumBroken
- parent: SolarPanelBasePhysSprite
- name: uranium solar panel
- description: A broken uranium solar panel.
- suffix: Broken
- components:
- - type: Sprite
- state: solar_panel_uranium_broken
- - type: Damageable
- damageContainer: Inorganic
- damageModifierSet: Metallic
- - type: Destructible
- thresholds:
- - trigger:
- !type:DamageTrigger
- damage: 50
- behaviors:
- - !type:PlaySoundBehavior
- sound:
- collection: GlassBreak
- - !type:SpawnEntitiesBehavior
- spawn:
- ShardGlassUranium:
- min: 1
- max: 2
- - !type:DoActsBehavior
- acts: [ "Destruction" ]
- - type: Construction
- graph: SolarPanel
- node: solarpaneluranium_broken
-
- type: entity
id: SolarAssembly
name: solar assembly
@@ -294,9 +159,6 @@
node: solarassembly
defaultTarget: solarpanel
- type: RequireProjectileTarget
- - type: GuideHelp
- guides:
- - SolarPanels
- type: entity
id: SolarTracker
@@ -342,6 +204,3 @@
graph: SolarPanel
node: solartracker
- type: RequireProjectileTarget
- - type: GuideHelp
- guides:
- - SolarPanels
diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/teg.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/teg.yml
index 106248606ca..9089b66cbb4 100644
--- a/Resources/Prototypes/Entities/Structures/Power/Generation/teg.yml
+++ b/Resources/Prototypes/Entities/Structures/Power/Generation/teg.yml
@@ -97,9 +97,7 @@
sound:
path: /Audio/Ambience/Objects/vending_machine_hum.ogg
- type: GuideHelp
- guides:
- - TEG
- - Power
+ guides: [ TEG, Power ]
- type: StealTarget
stealGroup: Teg
@@ -158,9 +156,7 @@
- type: Anchorable
- type: Pullable
- type: GuideHelp
- guides:
- - TEG
- - Power
+ guides: [ TEG, Power ]
# functionality
- type: NodeContainer
diff --git a/Resources/Prototypes/Entities/Structures/Power/apc.yml b/Resources/Prototypes/Entities/Structures/Power/apc.yml
index 6fe749b7dde..abf6931c5ee 100644
--- a/Resources/Prototypes/Entities/Structures/Power/apc.yml
+++ b/Resources/Prototypes/Entities/Structures/Power/apc.yml
@@ -143,10 +143,6 @@
priority: 1
- type: StaticPrice
price: 500
- - type: GuideHelp
- guides:
- - VoltageNetworks
- - Power
# APC under construction
- type: entity
diff --git a/Resources/Prototypes/Entities/Structures/Power/smes.yml b/Resources/Prototypes/Entities/Structures/Power/smes.yml
index a8b5ac9c537..db98b0d0f7c 100644
--- a/Resources/Prototypes/Entities/Structures/Power/smes.yml
+++ b/Resources/Prototypes/Entities/Structures/Power/smes.yml
@@ -92,11 +92,6 @@
sendBroadcastAttemptEvent: true
examinableAddress: true
- type: WiredNetworkConnection
- - type: GuideHelp
- guides:
- - PowerStorage
- - VoltageNetworks
- - Power
# SMES' in use
diff --git a/Resources/Prototypes/Entities/Structures/Power/substation.yml b/Resources/Prototypes/Entities/Structures/Power/substation.yml
index 527d8c9bed6..70071bc3edd 100644
--- a/Resources/Prototypes/Entities/Structures/Power/substation.yml
+++ b/Resources/Prototypes/Entities/Structures/Power/substation.yml
@@ -108,10 +108,6 @@
requirePower: true
highVoltageNode: input
mediumVoltageNode: output
- - type: GuideHelp
- guides:
- - VoltageNetworks
- - Power
# Compact Wall Substation Base
- type: entity
@@ -218,10 +214,6 @@
totalIntensity: 100
- type: StationInfiniteBatteryTarget
- type: WallMount
- - type: GuideHelp
- guides:
- - VoltageNetworks
- - Power
# Substations in use
diff --git a/Resources/Prototypes/Entities/Structures/Shuttles/thrusters.yml b/Resources/Prototypes/Entities/Structures/Shuttles/thrusters.yml
index cbc556cb12e..fa8b382ade8 100644
--- a/Resources/Prototypes/Entities/Structures/Shuttles/thrusters.yml
+++ b/Resources/Prototypes/Entities/Structures/Shuttles/thrusters.yml
@@ -55,9 +55,6 @@
collection: MetalBreak
- type: StaticPrice
price: 300
- - type: GuideHelp
- guides:
- - ShuttleCraft
placement:
mode: SnapgridCenter
diff --git a/Resources/Prototypes/Entities/Structures/Specific/Atmospherics/sensor.yml b/Resources/Prototypes/Entities/Structures/Specific/Atmospherics/sensor.yml
index a82f822c931..fe4f13d9974 100644
--- a/Resources/Prototypes/Entities/Structures/Specific/Atmospherics/sensor.yml
+++ b/Resources/Prototypes/Entities/Structures/Specific/Atmospherics/sensor.yml
@@ -2,50 +2,45 @@
id: AirSensorBase
abstract: true
components:
- - type: DeviceNetwork
- deviceNetId: AtmosDevices
- receiveFrequencyId: AtmosMonitor
- transmitFrequencyId: AtmosMonitor
- prefix: device-address-prefix-sensor
- sendBroadcastAttemptEvent: true
- examinableAddress: true
- - type: WiredNetworkConnection
- - type: DeviceNetworkRequiresPower
- - type: AtmosDevice
- - type: AtmosMonitor
- temperatureThresholdId: stationTemperature
- pressureThresholdId: stationPressure
- gasThresholdPrototypes:
- Oxygen: stationOxygen
- Nitrogen: stationNitrogen
- CarbonDioxide: stationCO2
- Plasma: stationPlasma
- Tritium: stationTritium
- WaterVapor: stationWaterVapor
- Ammonia: stationAmmonia
- NitrousOxide: stationNO
- Frezon: danger
- # ADT-Gas-Start
- BZ: stationBZ
- Pluoxium: stationPluoxium
- Hydrogen: stationHydrogen
- Nitrium: stationNitrium
- Healium: stationHealium
- HyperNoblium: stationHyperNoblium
- ProtoNitrate: stationProtoNitrate
- Zauker: stationZauker
- Halon: stationHalon
- Helium: stationHelium
- AntiNoblium: stationAntiNoblium
- # ADT-Gas-End
- - type: Tag
- tags:
- - AirSensor
- - ForceFixRotations
- - type: GuideHelp
- guides:
- - DeviceMonitoringAndControl
- - AtmosphericsSystems
+ - type: DeviceNetwork
+ deviceNetId: AtmosDevices
+ receiveFrequencyId: AtmosMonitor
+ transmitFrequencyId: AtmosMonitor
+ prefix: device-address-prefix-sensor
+ sendBroadcastAttemptEvent: true
+ examinableAddress: true
+ - type: WiredNetworkConnection
+ - type: DeviceNetworkRequiresPower
+ - type: AtmosDevice
+ - type: AtmosMonitor
+ temperatureThresholdId: stationTemperature
+ pressureThresholdId: stationPressure
+ gasThresholdPrototypes:
+ Oxygen: stationOxygen
+ Nitrogen: stationNitrogen
+ CarbonDioxide: stationCO2
+ Plasma: stationPlasma
+ Tritium: stationTritium
+ WaterVapor: stationWaterVapor
+ Ammonia: stationAmmonia
+ NitrousOxide: stationNO
+ Frezon: danger
+ # ADT-Gas-Start
+ BZ: stationBZ
+ Pluoxium: stationPluoxium
+ Hydrogen: stationHydrogen
+ Nitrium: stationNitrium
+ Healium: stationHealium
+ HyperNoblium: stationHyperNoblium
+ ProtoNitrate: stationProtoNitrate
+ Zauker: stationZauker
+ Halon: stationHalon
+ Helium: stationHelium
+ AntiNoblium: stationAntiNoblium
+ # ADT-Gas-End
+ - type: Tag
+ tags:
+ - AirSensor
- type: entity
id: AirSensor
@@ -55,54 +50,54 @@
placement:
mode: SnapgridCenter
components:
- - type: Transform
- anchored: true
- - type: Damageable
- damageContainer: Inorganic
- damageModifierSet: Metallic
- - type: Destructible
- thresholds:
- - trigger:
- !type:DamageTrigger
- damage: 100
- behaviors:
- - !type:DoActsBehavior
- acts: ["Destruction"]
- - type: Physics
- canCollide: false
- - type: Fixtures
- fixtures:
- fix1:
- shape:
- !type:PhysShapeAabb
- bounds: "-0.25,-0.25,0.25,0.25"
- density: 20
- mask:
- - ItemMask
- restitution: 0.3
- friction: 0.2
- - type: Clickable
- - type: InteractionOutline
- - type: ApcPowerReceiver
- - type: ExtensionCableReceiver
- - type: AccessReader
- access: [ [ "Atmospherics" ] ]
- - type: Construction
- graph: AirSensor
- node: sensor
- - type: Appearance
- - type: Sprite
- drawdepth: FloorObjects
- sprite: Structures/Specific/Atmospherics/sensor.rsi
- layers:
- - state: gsensor1
- map: [ "enum.PowerDeviceVisualLayers.Powered" ]
- - type: GenericVisualizer
- visuals:
- enum.PowerDeviceVisuals.Powered:
- enum.PowerDeviceVisualLayers.Powered:
- True: { state: gsensor1 }
- False: { state: gsensor0 }
+ - type: Transform
+ anchored: true
+ - type: Damageable
+ damageContainer: Inorganic
+ damageModifierSet: Metallic
+ - type: Destructible
+ thresholds:
+ - trigger:
+ !type:DamageTrigger
+ damage: 100
+ behaviors:
+ - !type:DoActsBehavior
+ acts: ["Destruction"]
+ - type: Physics
+ canCollide: false
+ - type: Fixtures
+ fixtures:
+ fix1:
+ shape:
+ !type:PhysShapeAabb
+ bounds: "-0.25,-0.25,0.25,0.25"
+ density: 20
+ mask:
+ - ItemMask
+ restitution: 0.3
+ friction: 0.2
+ - type: Clickable
+ - type: InteractionOutline
+ - type: ApcPowerReceiver
+ - type: ExtensionCableReceiver
+ - type: AccessReader
+ access: [ [ "Atmospherics" ] ]
+ - type: Construction
+ graph: AirSensor
+ node: sensor
+ - type: Appearance
+ - type: Sprite
+ drawdepth: FloorObjects
+ sprite: Structures/Specific/Atmospherics/sensor.rsi
+ layers:
+ - state: gsensor1
+ map: [ "enum.PowerDeviceVisualLayers.Powered" ]
+ - type: GenericVisualizer
+ visuals:
+ enum.PowerDeviceVisuals.Powered:
+ enum.PowerDeviceVisualLayers.Powered:
+ True: { state: gsensor1 }
+ False: { state: gsensor0 }
- type: entity
parent: BaseItem
@@ -110,14 +105,14 @@
name: air sensor assembly
description: Air sensor assembly. An assembly of air sensors?
components:
- - type: Item
- size: Small
- - type: Anchorable
- - type: Construction
- graph: AirSensor
- node: assembly
- - type: Sprite
- drawdepth: FloorObjects
- sprite: Structures/Specific/Atmospherics/sensor.rsi
- layers:
- - state: gsensor0
+ - type: Item
+ size: Small
+ - type: Anchorable
+ - type: Construction
+ graph: AirSensor
+ node: assembly
+ - type: Sprite
+ drawdepth: FloorObjects
+ sprite: Structures/Specific/Atmospherics/sensor.rsi
+ layers:
+ - state: gsensor0
diff --git a/Resources/Prototypes/Entities/Structures/Storage/Canisters/gas_canisters.yml b/Resources/Prototypes/Entities/Structures/Storage/Canisters/gas_canisters.yml
index 899c771374d..325e5762a77 100644
--- a/Resources/Prototypes/Entities/Structures/Storage/Canisters/gas_canisters.yml
+++ b/Resources/Prototypes/Entities/Structures/Storage/Canisters/gas_canisters.yml
@@ -104,9 +104,6 @@
access: [["Atmospherics"], ["Engineering"], ["Research"]]
- type: Lock
locked: false
- - type: GuideHelp
- guides:
- - GasCanisters
- type: entity
parent: GasCanister
diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/air_alarm.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/air_alarm.yml
index 8187d0bb644..75a57871b72 100644
--- a/Resources/Prototypes/Entities/Structures/Wallmounts/air_alarm.yml
+++ b/Resources/Prototypes/Entities/Structures/Wallmounts/air_alarm.yml
@@ -112,10 +112,6 @@
collection: MetalGlassBreak
params:
volume: -4
- - type: GuideHelp
- guides:
- - AirAlarms
- - DeviceMonitoringAndControl
- type: entity
id: AirAlarmAssembly
diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/fire_alarm.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/fire_alarm.yml
index 38371ee29b0..03bc3e4a8d0 100644
--- a/Resources/Prototypes/Entities/Structures/Wallmounts/fire_alarm.yml
+++ b/Resources/Prototypes/Entities/Structures/Wallmounts/fire_alarm.yml
@@ -85,9 +85,6 @@
- type: Damageable
damageContainer: StructuralInorganic
damageModifierSet: Metallic
- - type: GuideHelp
- guides:
- - Networking
- type: Destructible
thresholds:
- trigger:
diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/switch.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/switch.yml
index fddf753a209..556d3d430a5 100644
--- a/Resources/Prototypes/Entities/Structures/Wallmounts/switch.yml
+++ b/Resources/Prototypes/Entities/Structures/Wallmounts/switch.yml
@@ -152,7 +152,7 @@
- type: Clickable
- type: InteractionOutline
- type: Sprite
- drawdepth: HighFloorObjects
+ drawdepth: FloorObjects
sprite: Structures/conveyor.rsi
layers:
- state: switch-off
diff --git a/Resources/Prototypes/Entities/Structures/Walls/grille.yml b/Resources/Prototypes/Entities/Structures/Walls/grille.yml
index a0a2b60d6d7..3433ffc366b 100644
--- a/Resources/Prototypes/Entities/Structures/Walls/grille.yml
+++ b/Resources/Prototypes/Entities/Structures/Walls/grille.yml
@@ -94,19 +94,19 @@
name: clockwork grille
description: A flimsy framework of iron rods assembled in traditional Ratvarian fashion.
components:
- - type: Sprite
- drawdepth: Walls
- sprite: Structures/Walls/clockwork_grille.rsi
- state: ratvargrille
- layers:
- - state: ratvargrille
- - type: Icon
- sprite: Structures/Walls/clockwork_grille.rsi
- state: ratvargrille
- - type: Construction
- graph: ClockGrille
- node: clockGrille
- deconstructionTarget: start
+ - type: Sprite
+ drawdepth: Walls
+ sprite: Structures/Walls/clockwork_grille.rsi
+ state: ratvargrille
+ layers:
+ - state: ratvargrille
+ - type: Icon
+ sprite: Structures/Walls/clockwork_grille.rsi
+ state: ratvargrille
+ - type: Construction
+ graph: ClockGrille
+ node: clockGrille
+ deconstructionTarget: start
- type: entity
id: GrilleBroken
@@ -114,41 +114,38 @@
name: grille
description: A flimsy framework of iron rods. It has seen better days.
components:
- - type: Sprite
- drawdepth: Walls
- sprite: Structures/Walls/grille.rsi
- state: grille_broken
- - type: Icon
- sprite: Structures/Walls/grille.rsi
- state: grille_broken
- - type: RCDDeconstructable
- cost: 6
- delay: 4
- fx: EffectRCDDeconstruct4
- - type: Construction
- graph: Grille
- node: grilleBroken
- deconstructionTarget: start
- - type: Fixtures # overwrite BaseStructure parent.
- - type: Physics
- bodyType: Static
- canCollide: false
- - type: Tag
- tags:
- - ForceNoFixRotations
- - type: Damageable
- damageContainer: StructuralInorganic
- damageModifierSet: FlimsyMetallic
- - type: Destructible
- thresholds:
- - trigger:
- !type:DamageTrigger
- damage: 10
- behaviors:
- - !type:ChangeConstructionNodeBehavior
- node: start
- - !type:DoActsBehavior
- acts: ["Destruction"]
+ - type: Sprite
+ drawdepth: Walls
+ sprite: Structures/Walls/grille.rsi
+ state: grille_broken
+ - type: Icon
+ sprite: Structures/Walls/grille.rsi
+ state: grille_broken
+ - type: RCDDeconstructable
+ cost: 6
+ delay: 4
+ fx: EffectRCDDeconstruct4
+ - type: Construction
+ graph: Grille
+ node: grilleBroken
+ deconstructionTarget: start
+ - type: Fixtures # overwrite BaseStructure parent.
+ - type: Physics
+ bodyType: Static
+ canCollide: false
+ - type: Damageable
+ damageContainer: StructuralInorganic
+ damageModifierSet: FlimsyMetallic
+ - type: Destructible
+ thresholds:
+ - trigger:
+ !type:DamageTrigger
+ damage: 10
+ behaviors:
+ - !type:ChangeConstructionNodeBehavior
+ node: start
+ - !type:DoActsBehavior
+ acts: ["Destruction"]
- type: entity
id: ClockworkGrilleBroken
@@ -156,90 +153,84 @@
name: clockwork grille
description: A flimsy framework of iron rods assembled in traditional Ratvarian fashion. It has seen better days.
components:
- - type: Sprite
- drawdepth: Walls
- sprite: Structures/Walls/clockwork_grille.rsi
- state: brokenratvargrille
- - type: Icon
- sprite: Structures/Walls/clockwork_grille.rsi
- state: brokenratvargrille
- - type: Construction
- graph: ClockGrille
- node: clockGrilleBroken
+ - type: Sprite
+ drawdepth: Walls
+ sprite: Structures/Walls/clockwork_grille.rsi
+ state: brokenratvargrille
+ - type: Icon
+ sprite: Structures/Walls/clockwork_grille.rsi
+ state: brokenratvargrille
+ - type: Construction
+ graph: ClockGrille
+ node: clockGrilleBroken
- type: entity
id: GrilleDiagonal
parent: Grille
name: diagonal grille
components:
- - type: Sprite
- drawdepth: Walls
- sprite: Structures/Walls/grille.rsi
- layers:
- - state: grille_diagonal
- - state: electrified_diagonal
- sprite: Effects/electricity.rsi
- map: ["enum.ElectrifiedLayers.Sparks"]
- shader: unshaded
- visible: false
- - type: Icon
- sprite: Structures/Walls/grille.rsi
- state: grille_diagonal
- - type: Tag
- tags:
- - Diagonal
- - type: Fixtures
- fixtures:
- fix1:
- shape:
- !type:PolygonShape
- vertices:
- - "-0.5,-0.5"
- - "0.5,0.5"
- - "0.5,-0.5"
- mask:
- - FullTileMask
- layer:
- - WallLayer
- - type: Construction
- graph: GrilleDiagonal
- node: grilleDiagonal
+ - type: Sprite
+ drawdepth: Walls
+ sprite: Structures/Walls/grille.rsi
+ layers:
+ - state: grille_diagonal
+ - state: electrified_diagonal
+ sprite: Effects/electricity.rsi
+ map: ["enum.ElectrifiedLayers.Sparks"]
+ shader: unshaded
+ visible: false
+ - type: Icon
+ sprite: Structures/Walls/grille.rsi
+ state: grille_diagonal
+ - type: Fixtures
+ fixtures:
+ fix1:
+ shape:
+ !type:PolygonShape
+ vertices:
+ - "-0.5,-0.5"
+ - "0.5,0.5"
+ - "0.5,-0.5"
+ mask:
+ - FullTileMask
+ layer:
+ - WallLayer
+ - type: Construction
+ graph: GrilleDiagonal
+ node: grilleDiagonal
- type: entity
id: ClockworkGrilleDiagonal
parent: ClockworkGrille
name: diagonal clockwork grille
components:
- - type: Sprite
- drawdepth: Walls
- sprite: Structures/Walls/clockwork_grille.rsi
- layers:
- - state: ratvargrille_diagonal
- - state: electrified_diagonal
- sprite: Effects/electricity.rsi
- map: ["enum.ElectrifiedLayers.Sparks"]
- shader: unshaded
- visible: false
- - type: Icon
- sprite: Structures/Walls/clockwork_grille.rsi
- state: ratvargrille_diagonal
- - type: Tag
- tags:
- - Diagonal
- - type: Fixtures
- fixtures:
- fix1:
- shape:
- !type:PolygonShape
- vertices:
- - "-0.5,-0.5"
- - "0.5,0.5"
- - "0.5,-0.5"
- mask:
- - FullTileMask
- layer:
- - WallLayer
- - type: Construction
- graph: GrilleDiagonal
- node: clockworkGrilleDiagonal
+ - type: Sprite
+ drawdepth: Walls
+ sprite: Structures/Walls/clockwork_grille.rsi
+ layers:
+ - state: ratvargrille_diagonal
+ - state: electrified_diagonal
+ sprite: Effects/electricity.rsi
+ map: ["enum.ElectrifiedLayers.Sparks"]
+ shader: unshaded
+ visible: false
+ - type: Icon
+ sprite: Structures/Walls/clockwork_grille.rsi
+ state: ratvargrille_diagonal
+ - type: Fixtures
+ fixtures:
+ fix1:
+ shape:
+ !type:PolygonShape
+ vertices:
+ - "-0.5,-0.5"
+ - "0.5,0.5"
+ - "0.5,-0.5"
+ mask:
+ - FullTileMask
+ layer:
+ - WallLayer
+ - type: Construction
+ graph: GrilleDiagonal
+ node: clockworkGrilleDiagonal
diff --git a/Resources/Prototypes/Entities/Structures/Walls/walls.yml b/Resources/Prototypes/Entities/Structures/Walls/walls.yml
index 0a8d001271a..398af10ab31 100644
--- a/Resources/Prototypes/Entities/Structures/Walls/walls.yml
+++ b/Resources/Prototypes/Entities/Structures/Walls/walls.yml
@@ -56,6 +56,9 @@
id: WallBrick
name: brick wall
components:
+ - type: Tag
+ tags:
+ - Wall
- type: Sprite
sprite: Structures/Walls/brick.rsi
- type: Icon
@@ -590,7 +593,6 @@
- type: Tag
tags:
- Wall
- - Diagonal
- type: Sprite
drawdepth: Walls
sprite: Structures/Walls/plastitanium_diagonal.rsi
@@ -732,9 +734,6 @@
snap:
- Wall
components:
- - type: Tag
- tags:
- - Diagonal
- type: Sprite
drawdepth: Walls
sprite: Structures/Walls/reinforced_diagonal.rsi
@@ -877,7 +876,6 @@
- type: Tag
tags:
- Wall
- - Diagonal
- type: Sprite
drawdepth: Walls
sprite: Structures/Walls/shuttle_diagonal.rsi
diff --git a/Resources/Prototypes/Entities/Structures/Windows/clockwork.yml b/Resources/Prototypes/Entities/Structures/Windows/clockwork.yml
index 8cc6312fdf1..8421b6b4dc6 100644
--- a/Resources/Prototypes/Entities/Structures/Windows/clockwork.yml
+++ b/Resources/Prototypes/Entities/Structures/Windows/clockwork.yml
@@ -122,9 +122,6 @@
drawdepth: WallTops
sprite: Structures/Windows/clockwork_diagonal.rsi
state: state0
- - type: Tag
- tags:
- - Diagonal
- type: IconSmooth
mode: Diagonal
key: windows
@@ -155,4 +152,4 @@
sprite: Structures/Windows/cracks_diagonal.rsi
- type: Construction
graph: WindowDiagonal
- node: clockworkWindowDiagonal
+ node: clockworkWindowDiagonal
\ No newline at end of file
diff --git a/Resources/Prototypes/Entities/Structures/Windows/mining.yml b/Resources/Prototypes/Entities/Structures/Windows/mining.yml
index 8017cd8536a..8275fd1f966 100644
--- a/Resources/Prototypes/Entities/Structures/Windows/mining.yml
+++ b/Resources/Prototypes/Entities/Structures/Windows/mining.yml
@@ -64,9 +64,6 @@
drawdepth: WallTops
sprite: Structures/Windows/mining_diagonal.rsi
state: state0
- - type: Tag
- tags:
- - Diagonal
- type: IconSmooth
mode: Diagonal
key: walls #corvax smooth
@@ -94,4 +91,4 @@
- East
- type: DamageVisuals
damageOverlay:
- sprite: Structures/Windows/cracks_diagonal.rsi
+ sprite: Structures/Windows/cracks_diagonal.rsi
\ No newline at end of file
diff --git a/Resources/Prototypes/Entities/Structures/Windows/plasma.yml b/Resources/Prototypes/Entities/Structures/Windows/plasma.yml
index df280e70dda..66e7417cfc9 100644
--- a/Resources/Prototypes/Entities/Structures/Windows/plasma.yml
+++ b/Resources/Prototypes/Entities/Structures/Windows/plasma.yml
@@ -122,9 +122,6 @@
drawdepth: WallTops
sprite: Structures/Windows/plasma_diagonal.rsi
state: state0
- - type: Tag
- tags:
- - Diagonal
- type: IconSmooth
mode: Diagonal
key: walls # Corvax-Resprite
@@ -155,4 +152,4 @@
sprite: Structures/Windows/cracks_diagonal.rsi
- type: Construction
graph: WindowDiagonal
- node: plasmaWindowDiagonal
+ node: plasmaWindowDiagonal
\ No newline at end of file
diff --git a/Resources/Prototypes/Entities/Structures/Windows/plastitanium.yml b/Resources/Prototypes/Entities/Structures/Windows/plastitanium.yml
index d544db9b800..c50bc6e030b 100644
--- a/Resources/Prototypes/Entities/Structures/Windows/plastitanium.yml
+++ b/Resources/Prototypes/Entities/Structures/Windows/plastitanium.yml
@@ -121,9 +121,6 @@
drawdepth: WallTops
sprite: Structures/Windows/plastitanium_window_diagonal.rsi
state: state0
- - type: Tag
- tags:
- - Diagonal
- type: Icon
sprite: Structures/Windows/plastitanium_window_diagonal.rsi
state: state0
@@ -198,4 +195,4 @@
doAfterDelay: 3
- type: Damageable
damageContainer: StructuralInorganic
- damageModifierSet: RGlass
+ damageModifierSet: RGlass
\ No newline at end of file
diff --git a/Resources/Prototypes/Entities/Structures/Windows/reinforced.yml b/Resources/Prototypes/Entities/Structures/Windows/reinforced.yml
index aba402ef19f..622e85f6e59 100644
--- a/Resources/Prototypes/Entities/Structures/Windows/reinforced.yml
+++ b/Resources/Prototypes/Entities/Structures/Windows/reinforced.yml
@@ -129,9 +129,6 @@
drawdepth: WallTops
sprite: Structures/Windows/reinforced_window_diagonal.rsi
state: state0
- - type: Tag
- tags:
- - Diagonal
- type: IconSmooth
mode: Diagonal
key: walls # Corvax-Resprite
@@ -162,4 +159,4 @@
sprite: Structures/Windows/cracks_diagonal.rsi
- type: Construction
graph: WindowDiagonal
- node: reinforcedWindowDiagonal
+ node: reinforcedWindowDiagonal
\ No newline at end of file
diff --git a/Resources/Prototypes/Entities/Structures/Windows/rplasma.yml b/Resources/Prototypes/Entities/Structures/Windows/rplasma.yml
index d448fc62fa7..3296da63b94 100644
--- a/Resources/Prototypes/Entities/Structures/Windows/rplasma.yml
+++ b/Resources/Prototypes/Entities/Structures/Windows/rplasma.yml
@@ -125,9 +125,6 @@
drawdepth: WallTops
sprite: Structures/Windows/reinforced_plasma_diagonal.rsi
state: state0
- - type: Tag
- tags:
- - Diagonal
- type: IconSmooth
mode: Diagonal
key: walls # Corvax-Resprite
@@ -158,4 +155,4 @@
sprite: Structures/Windows/cracks_diagonal.rsi
- type: Construction
graph: WindowDiagonal
- node: reinforcedPlasmaWindowDiagonal
+ node: reinforcedPlasmaWindowDiagonal
\ No newline at end of file
diff --git a/Resources/Prototypes/Entities/Structures/Windows/ruranium.yml b/Resources/Prototypes/Entities/Structures/Windows/ruranium.yml
index e2102813fb3..e35dce4e465 100644
--- a/Resources/Prototypes/Entities/Structures/Windows/ruranium.yml
+++ b/Resources/Prototypes/Entities/Structures/Windows/ruranium.yml
@@ -122,9 +122,6 @@
drawdepth: WallTops
sprite: Structures/Windows/reinforced_uranium_diagonal.rsi
state: state0
- - type: Tag
- tags:
- - Diagonal
- type: IconSmooth
mode: Diagonal
key: walls # Corvax-Resprite
@@ -155,4 +152,4 @@
sprite: Structures/Windows/cracks_diagonal.rsi
- type: Construction
graph: WindowDiagonal
- node: reinforcedUraniumWindowDiagonal
+ node: reinforcedUraniumWindowDiagonal
\ No newline at end of file
diff --git a/Resources/Prototypes/Entities/Structures/Windows/shuttle.yml b/Resources/Prototypes/Entities/Structures/Windows/shuttle.yml
index d046dadcf03..01ed527ee0f 100644
--- a/Resources/Prototypes/Entities/Structures/Windows/shuttle.yml
+++ b/Resources/Prototypes/Entities/Structures/Windows/shuttle.yml
@@ -67,9 +67,6 @@
drawdepth: WallTops
sprite: Structures/Windows/shuttle_window_diagonal.rsi
state: state0
- - type: Tag
- tags:
- - Diagonal
- type: IconSmooth
mode: Diagonal
key: walls # Corvax-Resprite
@@ -97,4 +94,4 @@
- East
- type: DamageVisuals
damageOverlay:
- sprite: Structures/Windows/cracks_diagonal.rsi
+ sprite: Structures/Windows/cracks_diagonal.rsi
\ No newline at end of file
diff --git a/Resources/Prototypes/Entities/Structures/Windows/uranium.yml b/Resources/Prototypes/Entities/Structures/Windows/uranium.yml
index d4121b4281d..890534cec93 100644
--- a/Resources/Prototypes/Entities/Structures/Windows/uranium.yml
+++ b/Resources/Prototypes/Entities/Structures/Windows/uranium.yml
@@ -117,9 +117,6 @@
drawdepth: WallTops
sprite: Structures/Windows/uranium_window_diagonal.rsi
state: state0
- - type: Tag
- tags:
- - Diagonal
- type: IconSmooth
mode: Diagonal
key: walls # Corvax-Resprite
@@ -150,4 +147,4 @@
sprite: Structures/Windows/cracks_diagonal.rsi
- type: Construction
graph: WindowDiagonal
- node: uraniumWindowDiagonal
+ node: uraniumWindowDiagonal
\ No newline at end of file
diff --git a/Resources/Prototypes/Entities/Structures/Windows/window.yml b/Resources/Prototypes/Entities/Structures/Windows/window.yml
index 603f44268d2..f559292ad26 100644
--- a/Resources/Prototypes/Entities/Structures/Windows/window.yml
+++ b/Resources/Prototypes/Entities/Structures/Windows/window.yml
@@ -255,9 +255,6 @@
drawdepth: WallTops
sprite: Structures/Windows/window_diagonal.rsi
state: state0
- - type: Tag
- tags:
- - Diagonal
- type: IconSmooth
mode: Diagonal
key: walls # Corvax-Resprite
@@ -288,4 +285,4 @@
sprite: Structures/Windows/cracks_diagonal.rsi
- type: Construction
graph: WindowDiagonal
- node: windowDiagonal
+ node: windowDiagonal
\ No newline at end of file
diff --git a/Resources/Prototypes/Entities/Structures/cargo_telepad.yml b/Resources/Prototypes/Entities/Structures/cargo_telepad.yml
index a99f35a7d9d..c37a6338dc4 100644
--- a/Resources/Prototypes/Entities/Structures/cargo_telepad.yml
+++ b/Resources/Prototypes/Entities/Structures/cargo_telepad.yml
@@ -22,7 +22,7 @@
- MachineMask
- type: Sprite
sprite: Structures/cargo_telepad.rsi
- drawdepth: HighFloorObjects
+ drawdepth: FloorObjects
layers:
- state: offline
map: [ "enum.CargoTelepadLayers.Base" ]
diff --git a/Resources/Prototypes/Entities/Structures/conveyor.yml b/Resources/Prototypes/Entities/Structures/conveyor.yml
index 2e94026c15f..d1281ceba6d 100644
--- a/Resources/Prototypes/Entities/Structures/conveyor.yml
+++ b/Resources/Prototypes/Entities/Structures/conveyor.yml
@@ -14,7 +14,7 @@
- type: Sprite
sprite: Structures/conveyor.rsi
state: conveyor_started_cw
- drawdepth: HighFloorObjects
+ drawdepth: FloorObjects
- type: ApcPowerReceiver
- type: ExtensionCableReceiver
- type: Physics
diff --git a/Resources/Prototypes/Entities/Structures/cryogenic_sleep_unit.yml b/Resources/Prototypes/Entities/Structures/cryogenic_sleep_unit.yml
index e9e9294e636..bdb8862a829 100644
--- a/Resources/Prototypes/Entities/Structures/cryogenic_sleep_unit.yml
+++ b/Resources/Prototypes/Entities/Structures/cryogenic_sleep_unit.yml
@@ -17,7 +17,7 @@
- type: ActivatableUI
key: enum.CryostorageUIKey.Key
- type: AccessReader
- breakOnAccessBreaker: false
+ breakOnEmag: false
access: [["Cryogenics"]]
- type: InteractionOutline
- type: Cryostorage
diff --git a/Resources/Prototypes/Guidebook/engineering.yml b/Resources/Prototypes/Guidebook/engineering.yml
index 83c38db97b7..38ae0571dc5 100644
--- a/Resources/Prototypes/Guidebook/engineering.yml
+++ b/Resources/Prototypes/Guidebook/engineering.yml
@@ -13,28 +13,9 @@
id: Construction
name: guide-entry-construction
text: "/ServerInfo/Guidebook/Engineering/Construction.xml"
- children:
- - Airlocks
- - ExpandingRepairingStation
- - WirePanels
-
-- type: guideEntry
- id: ExpandingRepairingStation
- name: guide-entry-expandingrepairingstation
- text: "/ServerInfo/Guidebook/Engineering/ExpandingRepairingStation.xml"
-
-- type: guideEntry
- id: Airlocks
- name: guide-entry-airlocks
- text: "/ServerInfo/Guidebook/Engineering/Airlocks.xml"
- children:
+ children:
- AirlockSecurity
-
-- type: guideEntry
- id: WirePanels
- name: guide-entry-wirepanels
- text: "/ServerInfo/Guidebook/Engineering/WirePanels.xml"
-
+
- type: guideEntry
id: AirlockSecurity
name: guide-entry-airlock-security
@@ -45,206 +26,13 @@
name: guide-entry-atmospherics
text: "/ServerInfo/Guidebook/Engineering/Atmospherics.xml"
children:
- - GasManipulation
- - AtmosphericsSystems
- - AtmosphericUpsets
- - AtmosTools
- - Gasses
-
-- type: guideEntry
- id: GasManipulation
- name: guide-entry-gasmanipulation
- text: "/ServerInfo/Guidebook/Engineering/GasManipulation.xml"
- children:
- - AtmosphereInOut
- - Pipes
- - Pumps
- - Valves
- - MixingAndFiltering
- - GasCanisters
- - Thermomachines
- - GasCondensing
-
-- type: guideEntry
- id: Pipes
- name: guide-entry-pipes
- text: "/ServerInfo/Guidebook/Engineering/Pipes.xml"
-
-- type: guideEntry
- id: Pumps
- name: guide-entry-pumps
- text: "/ServerInfo/Guidebook/Engineering/Pumps.xml"
-
-- type: guideEntry
- id: AtmosphereInOut
- name: guide-entry-atmosphereinout
- text: "/ServerInfo/Guidebook/Engineering/AtmosphereInOut.xml"
- children:
- - AirVent
- - PassiveVent
- - AirInjector
- - AirScrubber
- - PortableScrubber
-
-- type: guideEntry
- id: AirVent
- name: guide-entry-airvent
- text: "/ServerInfo/Guidebook/Engineering/AirVent.xml"
-
-- type: guideEntry
- id: PassiveVent
- name: guide-entry-passivevent
- text: "/ServerInfo/Guidebook/Engineering/PassiveVent.xml"
-
-- type: guideEntry
- id: AirInjector
- name: guide-entry-airinjector
- text: "/ServerInfo/Guidebook/Engineering/AirInjector.xml"
-
-- type: guideEntry
- id: AirScrubber
- name: guide-entry-airscrubber
- text: "/ServerInfo/Guidebook/Engineering/AirScrubber.xml"
-
-- type: guideEntry
- id: PortableScrubber
- name: guide-entry-portablescrubber
- text: "/ServerInfo/Guidebook/Engineering/PortableScrubber.xml"
-
-- type: guideEntry
- id: Valves
- name: guide-entry-valves
- text: "/ServerInfo/Guidebook/Engineering/Valves.xml"
- children:
- - ManualValve
- - SignalValve
- - PneumaticValve
- - PassiveGate
-
-- type: guideEntry
- id: ManualValve
- name: guide-entry-manualvalve
- text: "/ServerInfo/Guidebook/Engineering/ManualValve.xml"
-
-- type: guideEntry
- id: SignalValve
- name: guide-entry-signalvalve
- text: "/ServerInfo/Guidebook/Engineering/SignalValve.xml"
-
-- type: guideEntry
- id: PneumaticValve
- name: guide-entry-pneumaticvalve
- text: "/ServerInfo/Guidebook/Engineering/PneumaticValve.xml"
-
-- type: guideEntry
- id: PassiveGate
- name: guide-entry-passivegate
- text: "/ServerInfo/Guidebook/Engineering/PassiveGate.xml"
-
-- type: guideEntry
- id: MixingAndFiltering
- name: guide-entry-mixingandfiltering
- text: "/ServerInfo/Guidebook/Engineering/MixingAndFiltering.xml"
-
-- type: guideEntry
- id: GasCanisters
- name: guide-entry-gascanisters
- text: "/ServerInfo/Guidebook/Engineering/GasCanisters.xml"
-
-- type: guideEntry
- id: Thermomachines
- name: guide-entry-thermomachines
- text: "/ServerInfo/Guidebook/Engineering/Thermomachines.xml"
- children:
- - Radiators
-
-- type: guideEntry
- id: GasCondensing
- name: guide-entry-gascondensing
- text: "/ServerInfo/Guidebook/Engineering/GasCondensing.xml"
-
-- type: guideEntry
- id: Radiators
- name: guide-entry-radiators
- text: "/ServerInfo/Guidebook/Engineering/Radiators.xml"
-
-- type: guideEntry
- id: AtmosphericsSystems
- name: guide-entry-atmosphericssystems
- text: "/ServerInfo/Guidebook/Engineering/AtmosphericsSystems.xml"
- children:
- - PipeNetworks
- - DeviceMonitoringAndControl
- - FireAndGasControl
- - GasMiningAndStorage
-
-- type: guideEntry
- id: PipeNetworks
- name: guide-entry-pipenetworks
- text: "/ServerInfo/Guidebook/Engineering/PipeNetworks.xml"
-
-- type: guideEntry
- id: DeviceMonitoringAndControl
- name: guide-entry-devicemonitoringandcontrol
- text: "/ServerInfo/Guidebook/Engineering/DeviceMonitoringAndControl.xml"
- children:
- - AirAlarms
- - AtmosphericAlertsComputer
- - AtmosphericNetworkMonitor
-
-- type: guideEntry
- id: AirAlarms
- name: guide-entry-airalarms
- text: "/ServerInfo/Guidebook/Engineering/AirAlarms.xml"
-
-- type: guideEntry
- id: AtmosphericAlertsComputer
- name: guide-entry-atmosphericalertscomputer
- text: "/ServerInfo/Guidebook/Engineering/AtmosphericAlertsComputer.xml"
-
-- type: guideEntry
- id: AtmosphericNetworkMonitor
- name: guide-entry-atmosphericnetworkmonitor
- text: "/ServerInfo/Guidebook/Engineering/AtmosphericNetworkMonitor.xml"
-
-- type: guideEntry
- id: FireAndGasControl
- name: guide-entry-fireandgascontrol
- text: "/ServerInfo/Guidebook/Engineering/FireAndGasControl.xml"
-
-- type: guideEntry
- id: GasMiningAndStorage
- name: guide-entry-gasminingandstorage
- text: "/ServerInfo/Guidebook/Engineering/GasMiningAndStorage.xml"
-
-- type: guideEntry
- id: AtmosphericUpsets
- name: guide-entry-atmosphericupsets
- text: "/ServerInfo/Guidebook/Engineering/AtmosphericUpsets.xml"
- children:
- Fires
- - Spacing
- type: guideEntry
id: Fires
name: guide-entry-fires
text: "/ServerInfo/Guidebook/Engineering/Fires.xml"
-- type: guideEntry
- id: Spacing
- name: guide-entry-spacing
- text: "/ServerInfo/Guidebook/Engineering/Spacing.xml"
-
-- type: guideEntry
- id: AtmosTools
- name: guide-entry-atmostools
- text: "/ServerInfo/Guidebook/Engineering/AtmosTools.xml"
-
-- type: guideEntry
- id: Gasses
- name: guide-entry-gasses
- text: "/ServerInfo/Guidebook/Engineering/Gasses.xml"
-
- type: guideEntry
id: ShuttleCraft
name: guide-entry-shuttle-craft
@@ -255,8 +43,14 @@
name: guide-entry-networking
text: "/ServerInfo/Guidebook/Engineering/Networking.xml"
children:
+ - NetworkConfigurator
- AccessConfigurator
+- type: guideEntry
+ id: NetworkConfigurator
+ name: guide-entry-network-configurator
+ text: "/ServerInfo/Guidebook/Engineering/NetworkConfigurator.xml"
+
- type: guideEntry
id: AccessConfigurator
name: guide-entry-access-configurator
@@ -266,45 +60,13 @@
id: Power
name: guide-entry-power
text: "/ServerInfo/Guidebook/Engineering/Power.xml"
- children:
- - Generators
- - InspectingPower
- - PowerStorage
- - Ramping
- - VoltageNetworks
-
-- type: guideEntry
- id: InspectingPower
- name: guide-entry-inspectingpower
- text: "/ServerInfo/Guidebook/Engineering/InspectingPower.xml"
-
-- type: guideEntry
- id: PowerStorage
- name: guide-entry-powerstorage
- text: "/ServerInfo/Guidebook/Engineering/PowerStorage.xml"
-
-- type: guideEntry
- id: Ramping
- name: guide-entry-ramping
- text: "/ServerInfo/Guidebook/Engineering/Ramping.xml"
-
-- type: guideEntry
- id: VoltageNetworks
- name: guide-entry-voltagenetworks
- text: "/ServerInfo/Guidebook/Engineering/VoltageNetworks.xml"
-
-- type: guideEntry
- id: Generators
- name: guide-entry-generators
- text: "/ServerInfo/Guidebook/Engineering/Generators.xml"
children:
- PortableGenerator
- AME
- - SingularityTeslaEngine
+ - Singularity
- TEG
- RTG
- Supermatter # backmen-supermatter
- - SolarPanels
- type: guideEntry
id: AME
@@ -312,22 +74,9 @@
text: "/ServerInfo/Guidebook/Engineering/AME.xml"
- type: guideEntry
- id: SingularityTeslaEngine
- name: guide-entry-singularityteslaengine
- text: "/ServerInfo/Guidebook/Engineering/SingularityTeslaEngine.xml"
- children:
- - SingularityEngine
- - TeslaEngine
-
-- type: guideEntry
- id: SingularityEngine
- name: guide-entry-singularityengine
- text: "/ServerInfo/Guidebook/Engineering/SingularityEngine.xml"
-
-- type: guideEntry
- id: TeslaEngine
- name: guide-entry-teslaengine
- text: "/ServerInfo/Guidebook/Engineering/TeslaEngine.xml"
+ id: Singularity
+ name: guide-entry-singularity
+ text: "/ServerInfo/Guidebook/Engineering/Singularity.xml"
- type: guideEntry
id: TEG
@@ -343,8 +92,3 @@
id: PortableGenerator
name: guide-entry-portable-generator
text: "/ServerInfo/Guidebook/Engineering/PortableGenerator.xml"
-
-- type: guideEntry
- id: SolarPanels
- name: guide-entry-solarpanels
- text: "/ServerInfo/Guidebook/Engineering/SolarPanels.xml"
diff --git a/Resources/Prototypes/Hydroponics/seeds.yml b/Resources/Prototypes/Hydroponics/seeds.yml
index 98f3efb40b0..6950dbc611e 100644
--- a/Resources/Prototypes/Hydroponics/seeds.yml
+++ b/Resources/Prototypes/Hydroponics/seeds.yml
@@ -1136,7 +1136,7 @@
idealLight: 9
idealHeat: 298
chemicals:
- FrostOil:
+ Frostoil:
Min: 1
Max: 10
PotencyDivisor: 10
diff --git a/Resources/Prototypes/Magic/teleport_spells.yml b/Resources/Prototypes/Magic/teleport_spells.yml
index 6e359cc611f..6f1ed9a6e43 100644
--- a/Resources/Prototypes/Magic/teleport_spells.yml
+++ b/Resources/Prototypes/Magic/teleport_spells.yml
@@ -16,28 +16,3 @@
sprite: Objects/Magic/magicactions.rsi
state: blink
event: !type:TeleportSpellEvent
-
-# TODO: Second level upgrade sometime that allows swapping with all objects
-- type: entity
- id: ActionVoidApplause
- name: Void Applause
- description: Clap your hands and swap places with the target.
- components:
- - type: EntityTargetAction
- useDelay: 15
- range: 16
- sound: !type:SoundPathSpecifier
- path: /Audio/Magic/Eldritch/voidblink.ogg
- itemIconStyle: BigAction
- whitelist:
- components:
- - Body
- canTargetSelf: false
- interactOnMiss: false
- checkCanAccess: false
- repeat: false
- icon:
- sprite: Objects/Magic/Eldritch/eldritch_actions.rsi
- state: voidblink
- event: !type:VoidApplauseSpellEvent
- effect: EffectVoidBlink
diff --git a/Resources/Prototypes/Maps/Pools/default.yml b/Resources/Prototypes/Maps/Pools/default.yml
index 3dec140bbd2..a5a61c7d23e 100644
--- a/Resources/Prototypes/Maps/Pools/default.yml
+++ b/Resources/Prototypes/Maps/Pools/default.yml
@@ -5,7 +5,6 @@
- Bagel
- Box
- Cog
- - Convex
- Core
- Elkridge
- Fland
diff --git a/Resources/Prototypes/Maps/amber.yml b/Resources/Prototypes/Maps/amber.yml
index 44bf073d8ca..862b475d514 100644
--- a/Resources/Prototypes/Maps/amber.yml
+++ b/Resources/Prototypes/Maps/amber.yml
@@ -2,67 +2,69 @@
id: Amber
mapName: 'Amber'
mapPath: /Maps/amber.yml
- minPlayers: 7
- maxPlayers: 60
+ # Corvax-start
+ minPlayers: 15
+ maxPlayers: 55
+ # Corvax-end
stations:
Amber:
stationProto: StandardNanotrasenStation
components:
- - type: StationNameSetup
- mapNameTemplate: '{0} Amber Station {1}'
- nameGenerator:
- !type:NanotrasenNameGenerator
- prefixCreator: '14-SB'
- - type: StationEmergencyShuttle
- emergencyShuttlePath: /Maps/Shuttles/emergency_amber.yml
- - type: StationJobs
- availableJobs:
- # command
- Captain: [ 1, 1 ]
- #service
- HeadOfPersonnel: [ 1, 1 ]
- Bartender: [ 1, 1 ]
- Botanist: [ 2, 2 ]
- Chef: [ 1, 1 ]
- Janitor: [ 2, 2 ]
- Chaplain: [ 1, 1 ]
- Librarian: [ 1, 1 ]
- ServiceWorker: [ 2, 2 ]
- #engineering
- ChiefEngineer: [ 1, 1 ]
- AtmosphericTechnician: [ 2, 2 ]
- StationEngineer: [ 2, 4 ]
- TechnicalAssistant: [ 2, 2 ]
- #medical
- ChiefMedicalOfficer: [ 1, 1 ]
- Chemist: [ 2, 2 ]
- MedicalDoctor: [ 4, 4 ]
- Paramedic: [ 2, 2 ]
- MedicalIntern: [ 2, 2 ]
- Psychologist: [ 1, 1 ]
- #science
- ResearchDirector: [ 1, 1 ]
- Scientist: [ 4, 4 ]
- ResearchAssistant: [ 2, 2 ]
- #security
- HeadOfSecurity: [ 1, 1 ]
- Warden: [ 1, 1 ]
- SecurityOfficer: [ 4, 4 ]
- Detective: [ 1, 1 ]
- SecurityCadet: [ 2, 2 ]
- #Lawyer: [ 2, 2 ]
- #supply
- Quartermaster: [ 1, 1 ]
- SalvageSpecialist: [ 3, 3 ]
- CargoTechnician: [ 3, 3 ]
- #civilian
- Passenger: [ -1, -1 ]
- Clown: [ 1, 1 ]
- Mime: [ 1, 1 ]
- Musician: [ 1, 1 ]
- Reporter: [ 1, 1 ]
- #silicon
- StationAi: [ 1, 1 ]
- Borg: [ 3, 3 ]
- #backmen
- Prisoner: [ 1, 2]
+ - type: StationNameSetup
+ mapNameTemplate: '{0} Амбер {1}' # Corvax
+ nameGenerator:
+ !type:NanotrasenNameGenerator
+ prefixCreator: '14-SB'
+ - type: StationEmergencyShuttle
+ emergencyShuttlePath: /Maps/Shuttles/emergency_amber.yml
+ - type: StationJobs
+ availableJobs:
+ #service
+ Captain: [ 1, 1 ]
+ IAA: [ 1, 1 ] # Corvax-IAA
+ HeadOfPersonnel: [ 1, 1 ]
+ Bartender: [ 1, 1 ]
+ Botanist: [ 2, 2 ]
+ Chef: [ 1, 1 ]
+ Janitor: [ 2, 2 ]
+ Chaplain: [ 1, 1 ]
+ Librarian: [ 1, 1 ]
+ ServiceWorker: [ 1, 3 ]
+ Reporter: [ 1, 1 ]
+ #engineering
+ ChiefEngineer: [ 1, 1 ]
+ AtmosphericTechnician: [ 2, 2 ]
+ StationEngineer: [ 2, 4 ]
+ TechnicalAssistant: [ 1, 1 ]
+ #medical
+ ChiefMedicalOfficer: [ 1, 1 ]
+ Chemist: [ 2, 2 ]
+ MedicalDoctor: [ 2, 4 ]
+ Paramedic: [ 2, 2 ]
+ MedicalIntern: [ 1, 2 ]
+ Psychologist: [ 1, 1 ]
+ #science
+ ResearchDirector: [ 1, 1 ]
+ Scientist: [ 4, 4 ]
+ ResearchAssistant: [ 1, 2 ]
+ #security
+ HeadOfSecurity: [ 1, 1 ]
+ Warden: [ 1, 1 ]
+ SecurityOfficer: [ 4, 4 ]
+ Detective: [ 1, 1 ]
+ SecurityCadet: [ 1, 1 ]
+ #Lawyer: [ 1, 1 ] # Corvax-IAA
+ #supply
+ Quartermaster: [ 1, 1 ]
+ SalvageSpecialist: [ 2, 3 ]
+ CargoTechnician: [ 2, 3 ]
+ #civilian
+ Passenger: [ -1, -1 ]
+ Clown: [ 1, 1 ]
+ Mime: [ 1, 1 ]
+ Musician: [ 1, 1 ]
+ #silicon
+ StationAi: [ 1, 1 ]
+ Borg: [ 2, 2 ]
+ #backmen
+ Prisoner: [ 1, 2]
diff --git a/Resources/Prototypes/Maps/box.yml b/Resources/Prototypes/Maps/box.yml
index f38536bc9a8..ebc0dd2304f 100644
--- a/Resources/Prototypes/Maps/box.yml
+++ b/Resources/Prototypes/Maps/box.yml
@@ -47,9 +47,9 @@
#security
HeadOfSecurity: [ 1, 1 ]
Warden: [ 1, 1 ]
- SecurityOfficer: [ 5, 7 ]
+ SecurityOfficer: [ 5, 5 ]
Detective: [ 1, 1 ]
- SecurityCadet: [ 2, 4 ]
+ SecurityCadet: [ 8, 8 ]
#Lawyer: [ 2, 2 ] # Corvax-IAA
#supply
Quartermaster: [ 1, 1 ]
diff --git a/Resources/Prototypes/Maps/convex.yml b/Resources/Prototypes/Maps/convex.yml
deleted file mode 100644
index fd915d3728e..00000000000
--- a/Resources/Prototypes/Maps/convex.yml
+++ /dev/null
@@ -1,64 +0,0 @@
-- type: gameMap
- id: Convex
- mapName: 'Convex'
- mapPath: /Maps/convex.yml
- minPlayers: 75
- stations:
- Convex:
- stationProto: StandardNanotrasenStation
- components:
- - type: StationNameSetup
- mapNameTemplate: '{0} Convex Recreational Complex {1}'
- nameGenerator:
- !type:NanotrasenNameGenerator
- prefixCreator: '14-SM'
- - type: StationEmergencyShuttle
- emergencyShuttlePath: /Maps/Shuttles/emergency_delta.yml
- - type: StationJobs
- availableJobs:
- #service
- Captain: [ 1, 1 ]
- HeadOfPersonnel: [ 1, 1 ]
- Bartender: [ 2, 2 ]
- Botanist: [ 3, 3 ]
- Chef: [ 2, 2 ]
- Janitor: [ 3, 3 ]
- Chaplain: [ 1, 1 ]
- Librarian: [ 1, 1 ]
- ServiceWorker: [ 3, 3 ]
- Reporter: [ 1, 2 ]
- #engineering
- ChiefEngineer: [ 1, 1 ]
- AtmosphericTechnician: [ 3, 3 ]
- StationEngineer: [ 5, 5 ]
- TechnicalAssistant: [ 4, 4 ]
- #medical
- ChiefMedicalOfficer: [ 1, 1 ]
- Chemist: [ 3, 3 ]
- MedicalDoctor: [ 6, 6 ]
- Paramedic: [ 1, 1 ]
- MedicalIntern: [ 4, 4 ]
- #science
- ResearchDirector: [ 1, 1 ]
- Scientist: [ 5, 5 ]
- ResearchAssistant: [ 6, 6 ]
- #security
- HeadOfSecurity: [ 1, 1 ]
- Warden: [ 1, 1 ]
- SecurityOfficer: [ 8, 8 ]
- Detective: [ 1, 1 ]
- SecurityCadet: [ 4, 4 ]
- #Lawyer: [ 2, 2 ]
- #supply
- Quartermaster: [ 1, 1 ]
- SalvageSpecialist: [ 3, 3 ]
- CargoTechnician: [ 4, 4 ]
- #civilian
- Passenger: [ -1, -1 ]
- Clown: [ 1, 1 ]
- Mime: [ 1, 1 ]
- Musician: [ 1, 1 ]
- Boxer: [2, 2]
- #silicon
- StationAi: [ 1, 1 ]
- Borg: [ 3, 3 ]
diff --git a/Resources/Prototypes/Maps/loop.yml b/Resources/Prototypes/Maps/loop.yml
index 4f84b75a5f8..9e887c7a49e 100644
--- a/Resources/Prototypes/Maps/loop.yml
+++ b/Resources/Prototypes/Maps/loop.yml
@@ -38,7 +38,6 @@
Chemist: [ 3, 3 ]
MedicalDoctor: [ 4, 5 ]
Paramedic: [ 2, 2 ]
- Psychologist: [ 1, 1 ]
MedicalIntern: [ 4, 4 ]
#science
ResearchDirector: [ 1, 1 ]
diff --git a/Resources/Prototypes/Maps/marathon.yml b/Resources/Prototypes/Maps/marathon.yml
index 524eaf2017b..8177813f81e 100644
--- a/Resources/Prototypes/Maps/marathon.yml
+++ b/Resources/Prototypes/Maps/marathon.yml
@@ -49,7 +49,7 @@
#security
HeadOfSecurity: [ 1, 1 ]
Warden: [ 1, 1 ]
- SecurityOfficer: [ 8, 8 ]
+ SecurityOfficer: [ 4, 4 ]
Detective: [ 1, 1 ]
SecurityCadet: [ 4, 4 ]
#Lawyer: [ 2, 2 ] # Corvax-IAA
diff --git a/Resources/Prototypes/Maps/meta.yml b/Resources/Prototypes/Maps/meta.yml
index d7c9af22660..397f9c277dc 100644
--- a/Resources/Prototypes/Maps/meta.yml
+++ b/Resources/Prototypes/Maps/meta.yml
@@ -2,8 +2,10 @@
id: Meta
mapName: 'Meta Station'
mapPath: /Maps/meta.yml
- minPlayers: 50
- maxPlayers: 80
+ # Corvax-start
+ minPlayers: 25
+ maxPlayers: 55
+ # Corvax-end
stations:
Meta:
stationProto: StandardNanotrasenStation
@@ -17,7 +19,7 @@
emergencyShuttlePath: /Maps/Shuttles/emergency_meta.yml
- type: StationJobs
availableJobs:
- #service (18)
+ #service
Captain: [ 1, 1 ]
IAA: [ 1, 1 ] # Corvax-IAA
HeadOfPersonnel: [ 1, 1 ]
@@ -29,38 +31,37 @@
Librarian: [ 1, 1 ]
ServiceWorker: [ 2, 2 ]
Reporter: [ 2, 2 ]
- #engineering (11)
+ #engineering
ChiefEngineer: [ 1, 1 ]
AtmosphericTechnician: [ 3, 3 ]
- StationEngineer: [ 5, 7 ]
- TechnicalAssistant: [ 4, 4 ]
- #medical (11)
+ StationEngineer: [ 6, 8 ]
+ TechnicalAssistant: [ 6, 8 ]
+ #medical
ChiefMedicalOfficer: [ 1, 1 ]
- Chemist: [ 2, 2 ]
+ Chemist: [ 2, 3 ]
MedicalDoctor: [ 4, 6 ]
- MedicalIntern: [ 4, 4 ]
+ MedicalIntern: [ 4, 6 ]
Paramedic: [ 1, 2 ]
- #science (9)
+ #science
ResearchDirector: [ 1, 1 ]
- Scientist: [ 6, 8 ]
- ResearchAssistant: [ 4, 4 ]
- #security (12)
+ Scientist: [ 5, 7 ]
+ ResearchAssistant: [ 3, 6 ]
+ #security
HeadOfSecurity: [ 1, 1 ]
Warden: [ 1, 1 ]
- SecurityOfficer: [ 7, 7 ]
+ SecurityOfficer: [ 6, 6 ]
Detective: [ 1, 1 ]
SecurityCadet: [ 4, 4 ]
#Lawyer: [ 2, 2 ] # Corvax-IAA
#supply
Quartermaster: [ 1, 1 ]
SalvageSpecialist: [ 3, 3 ]
- CargoTechnician: [ 4, 6 ]
- #civilian (3+)
+ CargoTechnician: [ 3, 5 ]
+ #civilian
Passenger: [ -1, -1 ]
Clown: [ 1, 1 ]
Mime: [ 1, 1 ]
- Musician: [ 1, 1 ]
- #silicon (5)
+ #silicon
StationAi: [ 1, 1 ]
Borg: [ 4, 4 ]
# backmen
diff --git a/Resources/Prototypes/Maps/plasma.yml b/Resources/Prototypes/Maps/plasma.yml
index 23d8a69a57e..0038189a961 100644
--- a/Resources/Prototypes/Maps/plasma.yml
+++ b/Resources/Prototypes/Maps/plasma.yml
@@ -3,7 +3,6 @@
mapName: 'Plasma'
mapPath: /Maps/plasma.yml
minPlayers: 30
- maxPlayers: 80
stations:
Plasma:
stationProto: StandardNanotrasenStation
diff --git a/Resources/Prototypes/Parallaxes/plasma.yml b/Resources/Prototypes/Parallaxes/plasma.yml
deleted file mode 100644
index 6110248539d..00000000000
--- a/Resources/Prototypes/Parallaxes/plasma.yml
+++ /dev/null
@@ -1,53 +0,0 @@
-- type: parallax
- id: PlasmaStation
- layers:
- - texture:
- !type:ImageParallaxTextureSource
- path: "/Textures/Parallaxes/layer1.png"
- slowness: 0.998046875
- scale: "1, 1"
- - texture:
- !type:GeneratedParallaxTextureSource
- id: "hq_wizard_stars"
- configPath: "/Prototypes/Parallaxes/parallax_config_stars.toml"
- slowness: 0.996625
- - texture:
- !type:GeneratedParallaxTextureSource
- id: "hq_wizard_stars_dim"
- configPath: "/Prototypes/Parallaxes/parallax_config_stars_dim.toml"
- slowness: 0.989375
- - texture:
- !type:GeneratedParallaxTextureSource
- id: "hq_wizard_stars_faster"
- configPath: "/Prototypes/Parallaxes/parallax_config_stars-2.toml"
- slowness: 0.987265625
- - texture:
- !type:GeneratedParallaxTextureSource
- id: "hq_wizard_stars_dim_faster"
- configPath: "/Prototypes/Parallaxes/parallax_config_stars_dim-2.toml"
- slowness: 0.984352
- - texture:
- !type:ImageParallaxTextureSource
- path: "/Textures/Parallaxes/planet.png"
- slowness: 0.998046875
- scale: "2, 2"
- controlHomePosition: "361, 292"
- worldHomePosition: "0, 0"
- tiled: false
- - texture:
- !type:ImageParallaxTextureSource
- path: "/Textures/Parallaxes/Asteroids.png"
- slowness: 0.968046875
- scale: "1.3, 1.3"
- - texture:
- !type:ImageParallaxTextureSource
- path: "/Textures/Parallaxes/Asteroids.png"
- slowness: 0.938046875
- scale: "1, 1"
- layersLQ:
- - texture:
- !type:GeneratedParallaxTextureSource
- id: ""
- configPath: "/Prototypes/Parallaxes/parallax_config.toml"
- slowness: 0.875
- layersLQUseHQ: false
diff --git a/Resources/Prototypes/Procedural/Themes/maints.yml b/Resources/Prototypes/Procedural/Themes/maints.yml
deleted file mode 100644
index 39ab39b0ea6..00000000000
--- a/Resources/Prototypes/Procedural/Themes/maints.yml
+++ /dev/null
@@ -1,169 +0,0 @@
-- type: dungeonRoom
- id: Maints5x5a
- size: 5,5
- atlas: /Maps/Dungeon/maints.yml
- offset: 0,0
- tags:
- - Maints
-
-- type: dungeonRoom
- id: Maints5x5b
- size: 5,5
- atlas: /Maps/Dungeon/maints.yml
- offset: 6,0
- tags:
- - Maints
-
-- type: dungeonRoom
- id: Maints5x5c
- size: 5,5
- atlas: /Maps/Dungeon/maints.yml
- offset: 12,0
- tags:
- - Maints
-
-- type: dungeonRoom
- id: Maints5x5d
- size: 5,5
- atlas: /Maps/Dungeon/maints.yml
- offset: 18,0
- tags:
- - Maints
-
-- type: dungeonRoom
- id: Maints5x5e
- size: 5,5
- atlas: /Maps/Dungeon/maints.yml
- offset: 0,6
- tags:
- - Maints
-
-- type: dungeonRoom
- id: Maints5x5f
- size: 5,5
- atlas: /Maps/Dungeon/maints.yml
- offset: 6,6
- tags:
- - Maints
-
-- type: dungeonRoom
- id: Maints5x5g
- size: 5,5
- atlas: /Maps/Dungeon/maints.yml
- offset: 12,6
- tags:
- - Maints
-
-- type: dungeonRoom
- id: Maints5x5h
- size: 5,5
- atlas: /Maps/Dungeon/maints.yml
- offset: 18,6
- tags:
- - Maints
-
-- type: dungeonRoom
- id: Maints5x5i
- size: 5,5
- atlas: /Maps/Dungeon/maints.yml
- offset: 0,12
- tags:
- - Maints
-
-- type: dungeonRoom
- id: Maints5x5j
- size: 5,5
- atlas: /Maps/Dungeon/maints.yml
- offset: 6,12
- tags:
- - Maints
-
-- type: dungeonRoom
- id: Maints5x5k
- size: 5,5
- atlas: /Maps/Dungeon/maints.yml
- offset: 12,12
- tags:
- - Maints
-
-- type: dungeonRoom
- id: Maints5x5l
- size: 5,5
- atlas: /Maps/Dungeon/maints.yml
- offset: 18,12
- tags:
- - Maints
-
-- type: dungeonRoom
- id: Maints5x5m
- size: 5,5
- atlas: /Maps/Dungeon/maints.yml
- offset: 0,18
- tags:
- - Maints
-
-- type: dungeonRoom
- id: Maints5x5n
- size: 5,5
- atlas: /Maps/Dungeon/maints.yml
- offset: 6,18
- tags:
- - Maints
-
-- type: dungeonRoom
- id: Maints5x5o
- size: 5,5
- atlas: /Maps/Dungeon/maints.yml
- offset: 12,18
- tags:
- - Maints
-
-- type: dungeonRoom
- id: Maints5x5p
- size: 5,5
- atlas: /Maps/Dungeon/maints.yml
- offset: 18,18
- tags:
- - Maints
-
-- type: dungeonRoom
- id: Maints5x5q
- size: 5,5
- atlas: /Maps/Dungeon/maints.yml
- offset: 0,24
- tags:
- - Maints
-
-- type: dungeonRoom
- id: Maints5x5r
- size: 5,5
- atlas: /Maps/Dungeon/maints.yml
- offset: 6,24
- tags:
- - Maints
-
-- type: dungeonRoom
- id: Maints5x5s
- size: 5,5
- atlas: /Maps/Dungeon/maints.yml
- offset: 12,24
- tags:
- - Maints
-
-- type: dungeonRoom
- id: Maints5x5t
- size: 5,5
- atlas: /Maps/Dungeon/maints.yml
- offset: 18,24
- tags:
- - Maints
-
-- type: entity
- id: MaintsRoomMarker
- parent: BaseRoomMarker
- name: Maints interior marker
- components:
- - type: RoomFill
- roomWhitelist:
- tags:
- - Maints
diff --git a/Resources/Prototypes/Reagents/Consumable/Food/condiments.yml b/Resources/Prototypes/Reagents/Consumable/Food/condiments.yml
index 44f680f741e..725cdc5e6e3 100644
--- a/Resources/Prototypes/Reagents/Consumable/Food/condiments.yml
+++ b/Resources/Prototypes/Reagents/Consumable/Food/condiments.yml
@@ -18,15 +18,6 @@
color: darkred
recognizable: true
-- type: reagent
- id: Coldsauce
- name: reagent-name-coldsauce
- group: Foods
- desc: reagent-desc-coldsauce
- physicalDesc: reagent-physical-desc-cold
- flavor: cold
- color: skyblue
-
- type: reagent
id: Cornoil
name: reagent-name-cornoil
@@ -37,6 +28,15 @@
color: yellow
recognizable: true
+- type: reagent
+ id: Frostoil
+ name: reagent-name-frostoil
+ group: Foods
+ desc: reagent-desc-frostoil
+ physicalDesc: reagent-physical-desc-cold
+ flavor: cold
+ color: skyblue
+
- type: reagent
id: HorseradishSauce
name: reagent-name-horseradish-sauce
diff --git a/Resources/Prototypes/Reagents/Consumable/Food/ingredients.yml b/Resources/Prototypes/Reagents/Consumable/Food/ingredients.yml
index d2cf44e6d64..d6f63055396 100644
--- a/Resources/Prototypes/Reagents/Consumable/Food/ingredients.yml
+++ b/Resources/Prototypes/Reagents/Consumable/Food/ingredients.yml
@@ -274,33 +274,3 @@
- !type:AdjustReagent
reagent: Nutriment
amount: 0.1
-
-- type: reagent
- id: FrostOil
- name: reagent-name-frost-oil
- group: Foods
- desc: reagent-desc-frost-oil
- physicalDesc: reagent-physical-desc-oily
- flavor: cold
- color: skyblue
- metabolisms:
- Food:
- effects:
- - !type:AdjustReagent
- reagent: Nutriment #Oils enhance nutrition
- amount: 0.75
- Poison:
- effects:
- - !type:AdjustTemperature
- amount: -250 # thermal energy, not temp
- - !type:HealthChange
- conditions:
- - !type:ReagentThreshold
- min: 5
- damage:
- types:
- Cold: 1
- - !type:PopupMessage
- type: Local
- messages: [ "frost-oil-effect-light-cold" ]
- probability: 0.2
diff --git a/Resources/Prototypes/Reagents/fun.yml b/Resources/Prototypes/Reagents/fun.yml
index 2215b6f33da..00d31cbd102 100644
--- a/Resources/Prototypes/Reagents/fun.yml
+++ b/Resources/Prototypes/Reagents/fun.yml
@@ -381,21 +381,3 @@
conditions:
- !type:ReagentThreshold
min: 50
-
-- type: reaction
- id: WehHewExplosion
- impact: High
- priority: 20
- reactants:
- JuiceThatMakesYouWeh:
- amount: 1
- JuiceThatMakesYouHew:
- amount: 1
- effects:
- - !type:ExplosionReactionEffect
- explosionType: Radioactive
- maxIntensity: 200
- intensityPerUnit: 2
- intensitySlope: 1
- maxTotalIntensity: 250
- tileBreakScale: 0.00001
diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/utilities/solarpanel.yml b/Resources/Prototypes/Recipes/Construction/Graphs/utilities/solarpanel.yml
index 8dee23d0217..f27b751572b 100644
--- a/Resources/Prototypes/Recipes/Construction/Graphs/utilities/solarpanel.yml
+++ b/Resources/Prototypes/Recipes/Construction/Graphs/utilities/solarpanel.yml
@@ -25,24 +25,6 @@
steps:
- tool: Screwing
doAfter: 2
- - to: solarpanelplasma
- conditions:
- - !type:EntityAnchored
- steps:
- - material: PlasmaGlass
- amount: 2
- doAfter: 0.5
- completed:
- - !type:SnapToGrid
- - to: solarpaneluranium
- conditions:
- - !type:EntityAnchored
- steps:
- - material: UraniumGlass
- amount: 2
- doAfter: 0.5
- completed:
- - !type:SnapToGrid
- to: solarpanel
conditions:
- !type:EntityAnchored
@@ -60,7 +42,7 @@
name: solar tracker electronics
icon:
sprite: Objects/Misc/module.rsi
- state: engineering
+ state: id_mod
doAfter: 1
- material: Glass
amount: 2
@@ -68,40 +50,6 @@
completed:
- !type:SnapToGrid
- - node: solarpanelplasma
- entity: SolarPanelPlasma
- edges:
- - to: solarassembly
- completed:
- - !type:SnapToGrid
- southRotation: true
- - !type:SpawnPrototype
- prototype: SheetPGlass1
- amount: 2
- conditions:
- - !type:EntityAnchored
- anchored: true
- steps:
- - tool: Prying
- doAfter: 0.5
-
- - node: solarpaneluranium
- entity: SolarPanelUranium
- edges:
- - to: solarassembly
- completed:
- - !type:SnapToGrid
- southRotation: true
- - !type:SpawnPrototype
- prototype: SheetUGlass1
- amount: 2
- conditions:
- - !type:EntityAnchored
- anchored: true
- steps:
- - tool: Prying
- doAfter: 0.5
-
- node: solarpanel
entity: SolarPanel
edges:
@@ -136,40 +84,6 @@
- tool: Prying
doAfter: 0.5
- - node: solarpanelplasma_broken
- entity: SolarPanelPlasmaBroken
- edges:
- - to: solarassembly
- completed:
- - !type:SnapToGrid
- southRotation: true
- - !type:SpawnPrototype
- prototype: ShardGlassPlasma
- amount: 2
- conditions:
- - !type:EntityAnchored
- anchored: true
- steps:
- - tool: Prying
- doAfter: 0.5
-
- - node: solarpaneluranium_broken
- entity: SolarPanelUraniumBroken
- edges:
- - to: solarassembly
- completed:
- - !type:SnapToGrid
- southRotation: true
- - !type:SpawnPrototype
- prototype: ShardGlassUranium
- amount: 2
- conditions:
- - !type:EntityAnchored
- anchored: true
- steps:
- - tool: Prying
- doAfter: 0.5
-
- node: solartracker
entity: SolarTracker
edges:
diff --git a/Resources/Prototypes/Recipes/Construction/utilities.yml b/Resources/Prototypes/Recipes/Construction/utilities.yml
index cecb2495551..92bea76ffda 100644
--- a/Resources/Prototypes/Recipes/Construction/utilities.yml
+++ b/Resources/Prototypes/Recipes/Construction/utilities.yml
@@ -785,7 +785,7 @@
- type: construction
id: PressureControlledValve
name: pneumatic valve
- description: A bidirectional valve controlled by pressure. Opens if the output pipe is lower than the pressure of the control pipe by 101.325 kPa.
+ description: Valve controlled by pressure.
graph: GasTrinary
startNode: start
targetNode: pneumaticvalve
diff --git a/Resources/Prototypes/Recipes/Crafting/Graphs/goliath_hardsuit.yml b/Resources/Prototypes/Recipes/Crafting/Graphs/goliath_hardsuit.yml
deleted file mode 100644
index 0bb82cf2611..00000000000
--- a/Resources/Prototypes/Recipes/Crafting/Graphs/goliath_hardsuit.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-- type: constructionGraph
- id: HardsuitGoliath
- start: start
- graph:
- - node: start
- edges:
- - to: hardsuitGoliath
- steps:
- - tag: HardsuitSpatio
- icon:
- sprite: Clothing/OuterClothing/Hardsuits/spatio.rsi
- state: icon
- name: spationaut hardsuit
- doAfter: 10
- - material: Durathread
- amount: 5
- doAfter: 10
- - material: GoliathHide
- amount: 12
- doAfter: 10
- - node: hardsuitGoliath
- entity: ClothingOuterHardsuitGoliath
diff --git a/Resources/Prototypes/Recipes/Crafting/improvised.yml b/Resources/Prototypes/Recipes/Crafting/improvised.yml
index 9a203a4d626..55ffdf5176f 100644
--- a/Resources/Prototypes/Recipes/Crafting/improvised.yml
+++ b/Resources/Prototypes/Recipes/Crafting/improvised.yml
@@ -240,16 +240,3 @@
icon:
sprite: Objects/Storage/petcarrier.rsi
state: icon
-
-- type: construction
- name: goliath hardsuit
- id: HardsuitGoliath
- graph: HardsuitGoliath
- startNode: start
- targetNode: hardsuitGoliath
- category: construction-category-clothing
- objectType: Item
- description: A lightweight hardsuit, adorned with a patchwork of thick, chitinous goliath hide.
- icon:
- sprite: Clothing/OuterClothing/Hardsuits/goliath.rsi
- state: icon
diff --git a/Resources/Prototypes/Recipes/Lathes/misc.yml b/Resources/Prototypes/Recipes/Lathes/misc.yml
index b1e8cee32de..19b02993b27 100644
--- a/Resources/Prototypes/Recipes/Lathes/misc.yml
+++ b/Resources/Prototypes/Recipes/Lathes/misc.yml
@@ -190,11 +190,6 @@
id: FauxTileAstroSnow
result: FloorTileItemAstroSnow
-- type: latheRecipe
- parent: BaseFauxTileRecipe
- id: FauxTileAstroAsteroidSand
- result: FloorTileItemAstroAsteroidSand
-
- type: latheRecipe
id: FloorGreenCircuit
result: FloorTileItemGCircuit4
diff --git a/Resources/Prototypes/Recipes/Reactions/drinks.yml b/Resources/Prototypes/Recipes/Reactions/drinks.yml
index 84d79466b9b..790a236d5cf 100644
--- a/Resources/Prototypes/Recipes/Reactions/drinks.yml
+++ b/Resources/Prototypes/Recipes/Reactions/drinks.yml
@@ -519,7 +519,7 @@
reactants:
Beer:
amount: 10
- FrostOil:
+ Frostoil:
amount: 1
products:
IcedBeer: 10
diff --git a/Resources/Prototypes/Recipes/Reactions/food.yml b/Resources/Prototypes/Recipes/Reactions/food.yml
index 6d32948f894..7d524a9c7ae 100644
--- a/Resources/Prototypes/Recipes/Reactions/food.yml
+++ b/Resources/Prototypes/Recipes/Reactions/food.yml
@@ -284,18 +284,6 @@
products:
Hotsauce: 3
-- type: reaction
- id: CookingColdsauce
- reactants:
- JuiceTomato:
- amount: 1
- TableSalt:
- amount: 1
- FrostOil:
- amount: 1
- products:
- Coldsauce: 3
-
- type: reaction
id: CookingVinegar
reactants:
diff --git a/Resources/Prototypes/Research/civilianservices.yml b/Resources/Prototypes/Research/civilianservices.yml
index 141fbd15646..c93af79b1fd 100644
--- a/Resources/Prototypes/Research/civilianservices.yml
+++ b/Resources/Prototypes/Research/civilianservices.yml
@@ -114,7 +114,6 @@
- FauxTileJungleAstroGrass
- FauxTileAstroIce
- FauxTileAstroSnow
- - FauxTileAstroAsteroidSand
- type: technology
id: BiochemicalStasis
diff --git a/Resources/Prototypes/SoundCollections/emotes.yml b/Resources/Prototypes/SoundCollections/emotes.yml
index c93a46572b1..04d2b3b2e8e 100644
--- a/Resources/Prototypes/SoundCollections/emotes.yml
+++ b/Resources/Prototypes/SoundCollections/emotes.yml
@@ -30,11 +30,6 @@
- /Audio/Effects/Emotes/clap3.ogg
- /Audio/Effects/Emotes/clap4.ogg
-- type: soundCollection
- id: ClapSingle
- files:
- - /Audio/Effects/Emotes/clap-single.ogg
-
- type: soundCollection
id: Snaps
files:
diff --git a/Resources/Prototypes/Stacks/floor_tile_stacks.yml b/Resources/Prototypes/Stacks/floor_tile_stacks.yml
index b5d5fb7dc01..65fd672e1aa 100644
--- a/Resources/Prototypes/Stacks/floor_tile_stacks.yml
+++ b/Resources/Prototypes/Stacks/floor_tile_stacks.yml
@@ -623,12 +623,6 @@
spawn: FloorTileItemAstroSnow
maxCount: 30
-- type: stack
- id: FloorTileAstroAsteroidSand
- name: asteroid astro-sand floor
- spawn: FloorTileItemAstroAsteroidSand
- maxCount: 30
-
- type: stack
id: FloorTileWoodLarge
name: large wood floor
diff --git a/Resources/Prototypes/Tiles/floors.yml b/Resources/Prototypes/Tiles/floors.yml
index 87083ab8872..e1797b4d57f 100644
--- a/Resources/Prototypes/Tiles/floors.yml
+++ b/Resources/Prototypes/Tiles/floors.yml
@@ -1937,17 +1937,6 @@
itemDrop: FloorTileItemAstroSnow
weather: false # Corvax
-# Asteroid Sand
-- type: tile
- id: FloorAstroAsteroidSand
- name: tiles-astro-asteroid-sand
- parent: FloorAsteroidSand
- baseTurf: Plating
- isSubfloor: false
- deconstructTools: [ Prying ]
- itemDrop: FloorTileItemAstroAsteroidSand
- weather: false
-
- type: tile
id: FloorWoodLarge
name: tiles-wood-large
diff --git a/Resources/Prototypes/Traits/disabilities.yml b/Resources/Prototypes/Traits/disabilities.yml
index 2d7fa5b3a12..f63d1bf6efd 100644
--- a/Resources/Prototypes/Traits/disabilities.yml
+++ b/Resources/Prototypes/Traits/disabilities.yml
@@ -91,11 +91,3 @@
maxSoundDistance: 7
sounds:
collection: Paracusia
-
-- type: trait
- id: PainNumbness
- name: trait-painnumbness-name
- description: trait-painnumbness-desc
- category: Disabilities
- components:
- - type: PainNumbness
diff --git a/Resources/Prototypes/Voice/speech_emote_sounds.yml b/Resources/Prototypes/Voice/speech_emote_sounds.yml
index c57c7003456..59f2991d7ca 100644
--- a/Resources/Prototypes/Voice/speech_emote_sounds.yml
+++ b/Resources/Prototypes/Voice/speech_emote_sounds.yml
@@ -438,8 +438,6 @@
sounds:
Clap:
collection: Claps
- ClapSingle:
- collection: ClapSingle
Snap:
collection: Snaps
params:
@@ -452,9 +450,6 @@
sounds:
Clap:
path: /Audio/Voice/Diona/diona_clap.ogg
- # TODO: Replace this with a similar wood themed single clap
- ClapSingle:
- collection: ClapSingle
Snap:
path: /Audio/Voice/Diona/diona_snap.ogg
params:
@@ -473,8 +468,6 @@
variation: 0.125
Clap:
collection: Claps
- ClapSingle:
- collection: ClapSingle
Snap:
collection: Snaps
params:
diff --git a/Resources/Prototypes/Voice/speech_emotes.yml b/Resources/Prototypes/Voice/speech_emotes.yml
index 247ddd68d07..60b38cbefbf 100644
--- a/Resources/Prototypes/Voice/speech_emotes.yml
+++ b/Resources/Prototypes/Voice/speech_emotes.yml
@@ -263,6 +263,7 @@
- BorgChassis
chatMessages: ["chat-emote-msg-clap"]
chatTriggers:
+ - clap
- claps
- clapping
- clapped
@@ -276,22 +277,6 @@
- апплодирует
# Corvax-Localization-End
-- type: emote
- id: ClapSingle
- name: chat-emote-name-clap-single
- category: Hands
- icon: Interface/Emotes/clap.png #TODO: Needs a sprite that distinguishes it better from clap
- whitelist:
- components:
- - Hands
- blacklist:
- components:
- - BorgChassis
- chatMessages: [ "chat-emote-msg-clap-single" ]
- chatTriggers:
- - clap
- - claps their hands together
-
- type: emote
id: Snap
name: chat-emote-name-snap
diff --git a/Resources/Prototypes/tags.yml b/Resources/Prototypes/tags.yml
index 5fcd95419f2..5d9c62861b0 100644
--- a/Resources/Prototypes/tags.yml
+++ b/Resources/Prototypes/tags.yml
@@ -1,8 +1,5 @@
# PUT YOUR TAGS IN ALPHABETICAL ORDER
-- type: Tag
- id: AccessBreakerImmune
-
- type: Tag
id: AirAlarm
@@ -443,9 +440,6 @@
- type: Tag
id: Debug
-- type: Tag
- id: Diagonal
-
- type: Tag
id: Dice
@@ -665,9 +659,6 @@
- type: Tag
id: Hardsuit # Prevent melee injectors that can't penetrate hardsuits from injecting the wearer (nettles)
-- type: Tag
- id: HardsuitSpatio
-
- type: Tag
id: Haunted
@@ -852,9 +843,6 @@
- type: Tag
id: MailingUnitElectronics
-- type: Tag
- id: Maints
-
- type: Tag
id: Matchstick
diff --git a/Resources/ServerInfo/Guidebook/Engineering/AME.xml b/Resources/ServerInfo/Guidebook/Engineering/AME.xml
index 22de273c7d4..69e346bcf4d 100644
--- a/Resources/ServerInfo/Guidebook/Engineering/AME.xml
+++ b/Resources/ServerInfo/Guidebook/Engineering/AME.xml
@@ -15,22 +15,6 @@
Разложив, воспользуйтесь мультитулом чтобы превратить части ДАМ в его экранирование, что должно завершить создание двигателя антиматерии. Затем, поместите баллон топлива ДАМ в контроллер ДАМ, установите расход топлива на [color=#a4885c]количество ядер умноженное на два[/color] (или меньше) и переключите впрыск.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
## Экономия топлива
Чем ближе вы к идеальному соотношению [color=#a4885c]1:2[/color] (1 ядро ДАМ к 2 впрыскам топлива), тем эффективнее будет ваша работа. Вы снижаете эффективность использования топлива до [color=#a4885c]50% и менее[/color], если используете больше ядер, но меньше скорость впрыска топлива.
Например, [color=#76db91]3 ядра и 6 впрыска[/color] будут генерировать [color=#76db91]240 кВт[/color], а [color=#f0684d]8 ядер и 8 впрыска[/color] будут генерировать [color=#f0684d]160 кВт[/color]. Генерируя на 80 кВт меньше, тратя на 2 топлива больше при каждом впрыске.
@@ -39,25 +23,4 @@
Как правило, модернизировать ДАМ можно только за счет увеличения количества ядер, что можно сделать, заказав дополнительные ДАМ пакеты в [color=#a4885c]отделе снабжения[/color].
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- [color=#999999][italic]An example of a one core setup[italic][/color]
-
-
-
diff --git a/Resources/ServerInfo/Guidebook/Engineering/AirAlarms.xml b/Resources/ServerInfo/Guidebook/Engineering/AirAlarms.xml
deleted file mode 100644
index cee11539d4a..00000000000
--- a/Resources/ServerInfo/Guidebook/Engineering/AirAlarms.xml
+++ /dev/null
@@ -1,65 +0,0 @@
-
- # Air Alarms
- The Air Alarm is a device that enables central monitoring and control over all relevant Atmos devices linked to it.
-
-
-
-
-
- Using the Air Alarm, Atmos can quickly and efficiently manage the atmosphere in a given area.
-
- A room will often have an Air Alarm mounted on the wall, for quick control over multiple devices in that room.
-
- You can see how to link devices in the [textlink="Link" link="Networking"] guide.
-
- ## User Interface
- Interacting with an Air Alarm will bring up a menu with 3 sections:
- - Top: The current status of the air alarm. This includes the current pressure and temperature of the area the air alarm is monitoring.
- - Middle: Lists of linked [textlink="Air Vents" link="AirVent"] and [textlink="Air Scrubbers" link="AirScrubber"], as well as all sensors reporting back to the air alarm.
- - Bottom: Buttons to control air alarm operating modes, as well as the ability to toggle the automatic changing of modes.
-
- ## Alarm Status
- Air alarms quickly communicate the status of the area they are monitoring through the color of the light on the device:
- - [color=green]Normal[/color]: The area is safe to breathe in.
- - [color=yellow]Warning[/color]: The area is starting to deviate from the desired atmosphere, and is becoming unsafe.
- - [color=red]Danger[/color]: The area is no longer safe, internals and/or hardsuits are required.
-
- Air alarms will automatically drop (close) linked [textlink="firelocks" link="FireAndGasControl"] when the [color=Red]Danger[/color] status is reached.
- These [textlink="firelocks" link="FireAndGasControl"] will automatically raise (open) when the status returns to [color=green]Normal[/color].
-
- Air alarms have [textlink="signal" link="Networking"] outputs for each of the three statuses, which can be used to trigger other [textlink="signal" link="Networking"] devices when the status changes.
-
- ## Sensors
- All [textlink="Air Vents" link="AirVent"] and [textlink="Air Scrubbers" link="AirScrubber"] have a built-in sensor, which reports back to the air alarm.
- These sensors can be adjusted in the [bold]Sensors[/bold] tab of the air alarm menu.
-
- An air alarm's status is directly determined by the thresholds on each sensor.
- If a sensor reports a pressure, temperature, or gas composition outside the set thresholds, the air alarm will change its status accordingly.
-
- These thresholds can be adjusted and disabled as needed.
- For example, if you are monitoring a room that naturally has a low temperature (such as a freezer) or a high temperature (such as a burn chamber), you can adjust the temperature thresholds to match the expected values.
-
- An air sensor can also be constructed and [textlink="linked" link="Networking"] to an air alarm.
-
-
-
-
-
- This is useful for monitoring areas that you don't have an air vent or scrubber in already.
-
- ## Operating Modes
- To control connected devices quickly, air alarms feature operating modes, which quickly changes the behavior of all linked devices to achieve a desired effect.
- - None: Disables all devices linked to the air alarm.
- - Filtering: [textlink="Air Vents" link="AirVent"] will be enabled with their external bound set to standard atmospheric pressure. [textlink="Air Scrubbers" link="AirScrubber"] will be enabled and scrub all waste gasses normally.
- - Filtering (Wide): Same as Filtering, but all linked [textlink="Air Scrubbers" link="AirScrubber"] will enable their WideNet mode.
- - Fill: [textlink="Air Vents" link="AirVent"] will be enabled with their external bound set to max pressure, [color=orange][protodata="GasVentPump" comp="GasVentPump" member="MaxPressure"/] kPa[/color]. [textlink="Air Scrubbers" link="AirScrubber"] will be disabled.
- - Panic: [textlink="Air Vents" link="AirVent"] will be disabled, and [textlink="Air Scrubbers" link="AirScrubber"] will be set to siphon mode.
-
- Air alarms will automatically switch between the Filtering and Filtering (Wide) modes based on the current status of the area they are monitoring.
- - If the area reaches [color=red]Danger[/color] status or above, the air alarm will switch to Filtering (Wide) mode.
- - If the area reaches [color=green]Normal[/color] or [color=yellow]Warning[/color] status, the air alarm will switch to Filtering mode.
-
- This behavior can be disabled by toggling the "Auto" box in the bottom section of the air alarm menu.
-
- Relevant tips on how to fix [textlink="spacing" link="Spacing"] and [textlink="fires" link="Fires"] can be found in the relevant guides.
-
diff --git a/Resources/ServerInfo/Guidebook/Engineering/AirInjector.xml b/Resources/ServerInfo/Guidebook/Engineering/AirInjector.xml
deleted file mode 100644
index 3c4027dcb3b..00000000000
--- a/Resources/ServerInfo/Guidebook/Engineering/AirInjector.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-
- #Air Injector
- The air injector is a special vent that forces gasses into the atmosphere it's exposed to.
-
-
-
- It is primarily used to force gasses into high-pressure rooms like the station's [textlink="gas storage rooms" link="GasMiningAndStorage"], or a burn chamber.
-
- The air injector does not require [textlink="power" link="Power"] to function.
-
- The air injector will inject gasses into the atmosphere it's exposed to until the atmosphere reaches [color=orange][protodata="GasOutletInjector" comp="GasOutletInjector" member="MaxPressure"/] kPa[/color].
-
- The air injector's speed is proportional to the amount of gas in the injector.
- The more gas in the injector, the faster it will inject gas into the exposed atmosphere.
-
diff --git a/Resources/ServerInfo/Guidebook/Engineering/AirScrubber.xml b/Resources/ServerInfo/Guidebook/Engineering/AirScrubber.xml
deleted file mode 100644
index ebf1ffb6af3..00000000000
--- a/Resources/ServerInfo/Guidebook/Engineering/AirScrubber.xml
+++ /dev/null
@@ -1,46 +0,0 @@
-
- # Air Scrubber
- The air scrubber is essential in maintaining an atmosphere free of waste gasses emitted by breathing creatures and atmospheric upsets.
- Its primary job is to scrub unwanted gasses from the atmosphere it's exposed to.
-
-
-
- The air scrubber requires [textlink="power" link="Power"] through a nearby [textlink="LV cable" link="VoltageNetworks"] to function.
-
- The default behavior of an air scrubber is to scrub all gasses except Nitrogen and Oxygen from the atmosphere it's exposed to. It will continue this behavior unless directed by a [textlink="linked" link="Networking"] [textlink="air alarm" link="AirAlarms"].
-
- The scrubber can be welded with any welding tool to stop it from functioning.
-
- ## Configuration Options
- When [textlink="linked" link="Networking"] to an [textlink="air alarm" link="AirAlarms"], air scrubbers gain more functionality.
-
- The target gasses for scrubbing can be defined in the "Gas filters" dropdown. Keep in mind this resets if you change [textlink="air alarm" link="AirAlarms"] modes.
-
- Air scrubbers have two "direction" options: Scrubbing and Siphoning.
- - Scrubbing scrubs gasses as defined in the gas filters.
- - Siphoning ignores all gas filters, and sucks all gasses out of the atmosphere.
-
- Both of these modes are limited by the Rate setting, which defines the rate (in litres) at which the scrubber sucks gasses from its exposed atmosphere.
-
- Air scrubbers also have a "WideNet" setting, which expands the radius of the scrubber's operating range. Normally, the scrubber scrubs the atmosphere on the single tile it's exposed to.
- In WideNet mode, the scrubber scrubs gas from the 4 tiles surrounding the scrubber, as shown:
-
-
-
-
-
-
-
-
-
-
-
-
-
- This effectively multiplies its total speed, as air scrubbers will now preform their scrubbing work on 5 tiles at once.
-
- Scrubbers [textlink="linked" link="Networking"] to an [textlink="air alarm" link="AirAlarms"] in auto mode will automatically enable WideNet mode under the [textlink="air alarm's" link="AirAlarms"] "Filtering (Wide)" mode when a high concentration of unwanted gasses is detected in the atmosphere.
-
- WideNet is extremely useful in quickly scrubbing large amounts of tritium from plasma burn chambers.
-
-
diff --git a/Resources/ServerInfo/Guidebook/Engineering/AirVent.xml b/Resources/ServerInfo/Guidebook/Engineering/AirVent.xml
deleted file mode 100644
index d6b81fa19b6..00000000000
--- a/Resources/ServerInfo/Guidebook/Engineering/AirVent.xml
+++ /dev/null
@@ -1,64 +0,0 @@
-
- # Air Vent
- The air vent is a standard vent, found in all rooms that you want to pressurize with a breathable atmosphere.
- Its primary job is to transfer gasses into the atmosphere it's exposed to until it reaches a set pressure.
-
-
-
-
-
- The air vent requires [textlink="power" link="Power"] through a nearby [textlink="LV cable" link="VoltageNetworks"] to function.
-
- The air vent can be welded with any welding tool to stop it from functioning.
-
- ## Default Operation
- The default behavior of an air vent is to simply output gas to the exposed atmosphere at a pressure of [color=orange][protodata="GasVentPump" comp="GasVentPump" member="DefaultExternalBound"/] kPa[/color].
-
- The speed of the air vent scales with the difference between twice the connected [textlink="pipenet's" link="PipeNetworks"] pressure and the pressure of the exposed atmosphere.
- To put it in a word equation:
-
- [italic]Speed = 2 × Pipenet Pressure - Exposed Atmosphere Pressure[/italic]
-
-
- For example, this means that an air vent will be unable to pump to 101.3 kPa if the gas inside the vent goes below half that.
-
- ## Pressure Lockout
- Air vents will enter [color=red]pressure lockout[/color] when the pressure of the atmosphere it's exposed to is below [color=orange][protodata="GasVentPump" comp="GasVentPump" member="UnderPressureLockoutThreshold"/] kPa[/color].
- This is to prevent wasting useful gasses to space if a room is not sealed.
- The lights on the air vent will turn [color=yellow]yellow[/color] to highlight this change.
-
- This can be [color=green]overridden[/color] by using a screwdriver on the vent, or setting the mode to Fill on a connected [textlink="air alarm" link="AirAlarms"].
-
- It is important to note that air vents in [color=red]pressure lockout[/color] still very slowly leak out gas.
- The amount of gas they leak out is relative to the current pressure of the pipenet they're connected to.
-
- ## Configuration Options
- When [textlink="linked" link="Networking"] to an [textlink="air alarm" link="AirAlarms"], air vents gain more functionality.
-
- Air vents have two "vent direction" options: Releasing and Siphoning.
- - Releasing simply releases gasses into the atmosphere from the connected pipenet.
- - Siphoning sucks the air out of the atmosphere and into the connected pipenet. The lights on the air vent will turn [color=red]red[/color] to highlight this change.
-
- ## Pressure Bounds
- Air vents have a pressure bound system, which controls the pressure at which an air vent will pressurize an atmosphere, or draw from a connected pipenet. These limits are taken into account in both releasing and siphoning modes.
-
- The "PressureBound" setting has four options:
- - ExternalBound makes the air vent respect the pressure limits defined in the External bound entry.
- - InternalBound makes the air vent respect the pressure limits defined in the Internal bound entry.
- - Both makes the air vent respect the pressure limits defined in both the External and Internal bound entries.
- - NoBound makes the air vent respect no limit.
-
- When the vent is in releasing mode:
- - If the External bound pressure is set to 101.3 kPa, the air vent will not pressurize the atmosphere above 101.3 kPa.
- - If the Internal bound pressure is set to 50 kPa, the air vent will not draw gas from the connected pipe if its pressure is below 50 kPa.
-
- When the vent is in siphoning mode:
- - If the External bound pressure is set to 101.3 kPa, the air vent will siphon gases until the atmosphere reaches 101.3 kPa.
- - If the Internal bound pressure is set to 50 kPa, the air vent will not push gases into the pipenet if its pressure is above 50 kPa.
-
- If you're still confused about PressureBounds, here's a simple way to think about it:
- - You can think of the External bound as the upper limit for the exposed atmosphere. "I will not pressurize the exposed atmosphere past this pressure, or draw from the atmosphere below this pressure."
- - You can think of the Internal bound as the lower limit for the connected pipenet. "I will not draw from my source below this pressure, or push air into the pipenet above this pressure."
- - The "Pressure bound" settings simply define which limits to respect or ignore.
-
-
diff --git a/Resources/ServerInfo/Guidebook/Engineering/Airlocks.xml b/Resources/ServerInfo/Guidebook/Engineering/Airlocks.xml
deleted file mode 100644
index 9b657c53997..00000000000
--- a/Resources/ServerInfo/Guidebook/Engineering/Airlocks.xml
+++ /dev/null
@@ -1,137 +0,0 @@
-
- # Airlocks
- Airlocks are used to control access to different areas of the station.
-
-
-
-
-
-
- Airlocks can be opened using either [color=yellow][bold][keybind="Use"][/bold][/color] with an empty hand, [color=yellow][bold][keybind="ActivateItemInWorld"][/bold][/color] if hands are full, or by colliding with the airlock.
-
- Airlocks will only open if you have an ID card with the correct access level.
- The ID card must be in your hand or in your ID slot.
- In the case of having multiple IDs, the airlock will check them all when you try to open it.
- This behavior is also the same for IDs in a PDA.
-
- The access level required to open the door can be modified using an Access Configurator, or by using a Multitool on the door electronics for the airlock (which requires deconstruction).
-
-
-
-
-
-
-
- Airlocks block gas flow, so they can be used to seal off areas in case of a [textlink="hull breach" link="Spacing"] or a [textlink="fire." link="Fires"]
- They also store gas on their tile, even when closed, so be careful when opening them during or after a gas leak.
-
- ## Bolting and Emergency Access
- Airlocks can be bolted to prevent them from being opened or pried open by hand. When this occurs, the airlock will display red lights on the top of the door.
-
- Airlocks can also be set to emergency access. In this mode, anyone can open the airlock, regardless of access level. When this occurs, the airlock will display flashing yellow lights on the top of the door.
-
- ## Remote Control
- Airlocks can be controlled remotely, either by the station AI or by using a Door Remote.
-
-
-
-
- [color=#999999][italic]The Station AI, which has remote control over all airlocks[italic][/color]
-
-
-
-
-
-
-
-
-
-
-
- [color=#999999][italic]Precious door remotes. With unlimited power...[italic][/color]
-
-
-
- Department heads usually get door remotes for their respective department.
-
- They can open, close, bolt, and set to emergency access using these remotes.
-
- ## Linking
- Airlocks can be linked using the [textlink="Link" link="Networking"] system to other devices.
- This allows for proper station airlocks to space, or to link multiple airlocks together.
-
- ## Styling
- Airlocks can come in different styles to match station departments. The department style commonly reflects the required access level.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Airlocks can be repainted using a spray painter.
-
-
-
-
- ## Wiring
- Airlocks have internal wiring under their maintenance panel, which can be opened using a screwdriver.
- Each wire controls some aspect of the airlock's functionality.
- When you either pulse, cut, or mend the wire, it will affect the airlock in different ways.
-
- The lights next to the wires will indicate the status of the wire:
- - A steady light indicates that the system is functioning as normal.
- - A flashing light indicates that the system is malfunctioning. It is either not working or is behaving not as intended.
- - No light indicates that the system is not powered.
-
- Below is a list of the wires and their functions:
-
- [color=#a4885c]Bolt Wire (BOLT)[/color]
- - [color=yellow]Pulse the wire[/color]: Bolts or unbolts the door.
- - [color=red]Cut the wire[/color]: Bolts the door.
- - [color=green]Mend the wire[/color]: Does nothing.
-
- [color=#a4885c]Power Wire (POWR)[/color]
- - [color=yellow]Pulse the wire[/color]: Cuts power to the door for a short time.
- - [color=red]Cut the wire[/color]: Either cuts power to the door if both power wires are cut, or causes a short circuit if only one is cut, shocking people without insulated gloves.
- - [color=green]Mend the wire[/color]: Either restores power to the door if both power wires are cut, or stops the short circuit if only one is cut.
-
- [color=#a4885c]Log Wire (LOG)[/color]
- - [color=yellow]Pulse the wire[/color]: Temporary disables door logging.
- - [color=red]Cut the wire[/color]: Disables door logging.
- - [color=green]Mend the wire[/color]: Re-enables door logging.
-
- [color=#a4885c]Bolt Light (BLIT)[/color]
- - [color=yellow]Pulse the wire[/color]: Turns the system off temporarily, or turns it back on.
- - [color=red]Cut the wire[/color]: Prevents the bolt light from turning on, which communicates if the door is bolted or not.
- - [color=green]Mend the wire[/color]: Turns the system back on.
-
- [color=#a4885c]Timer Light (TIMR)[/color]
- - [color=yellow]Pulse the wire[/color]: Reduces the door timer temporarily.
- - [color=red]Cut the wire[/color]: Disables the timer. The door will close as soon as it is safe to do so.
- - [color=green]Mend the wire[/color]: Re-enables the timer.
-
- [color=#a4885c]Safety Light (SAFE)[/color]
- - [color=yellow]Pulse the wire[/color]: Disables the safety system temporarily.
- - [color=red]Cut the wire[/color]: Disables the safety system. The door will close even if there is an obstruction.
- - [color=green]Mend the wire[/color]: Re-enables the safety system.
-
- [color=#a4885c]AI Access Light (AIA)[/color]
- - [color=yellow]Pulse the wire[/color]: Does nothing.
- - [color=red]Cut the wire[/color]: Disables AI access. The AI can no longer control the door.
- - [color=green]Mend the wire[/color]: Re-enables AI access.
-
-
diff --git a/Resources/ServerInfo/Guidebook/Engineering/AtmosTools.xml b/Resources/ServerInfo/Guidebook/Engineering/AtmosTools.xml
deleted file mode 100644
index 3c3114ed4bb..00000000000
--- a/Resources/ServerInfo/Guidebook/Engineering/AtmosTools.xml
+++ /dev/null
@@ -1,52 +0,0 @@
-
- # Atmos Tools
- Atmospheric Technicians have the same core toolset as Engineers, but they also have access to two new tools, the Holofan Projector and the Gas Analyzer.
-
-
-
-
-
-
- ## Holofan Projector
- The Holofan Projector is a tool that can project a barrier of hard-light which blocks air and gas flow, while still allowing people to pass through.
-
-
-
-
-
-
- This is super useful for moving in between [textlink="firelock buffers" link="FireAndGasControl"] without leaking gas between rooms, as well a signifying to regular crew that a room may be unsafe for entry.
- It can also be used for forming a temporary barrier to allow crew to quickly move between a spaced and unspaced area without risk of leaking air from other rooms.
-
- It has an internal charge that will deplete with each use, but it can be recharged by taking out the power cell and inserting it into a cell charger or recharger.
-
- Holofans that are placed adjacent to a [textlink="firelock" link="FireAndGasControl"] will deactivate the firelock lockout, allowing the firelock to be opened by hand.
-
- ## Gas Analyzer
- The Gas Analyzer is a tool that can be used to analyze the gas composition of an exposed atmosphere, or any [textlink="atmospheric device" link="GasManipulation"] containing gas.
-
-
-
-
-
-
-
-
-
-
-
-
-
- You can use the Gas Analyzer by clicking on a gas-containing [textlink="device" link="GasManipulation"], or by clicking on the air in the room.
-
- When used, the gas analyzer will report on:
- - The volume of the device measured (not the volume of the gas!)
- - The total pressure of the gas, in kPa
- - The temperature of the gas, in Kelvin (K) and Celsius (C)
- - The precise composition of the gas in molar amounts, and as a percentage of the total gas volume
-
- At the bottom of the UI, the gas analyzer will display a visual indication of the different [textlink="gasses" link="Gasses"] present in the composition, as well as their relative concentrations.
-
- When the gas analyzer is analyzing binary and trinary [textlink="devices" link="GasManipulation"] (devices with two and three inputs/outputs), it will display the composition of each input/output separately. This is useful for troubleshooting gas [textlink="mixing and filtering" link="MixingAndFiltering"] setups.
-
-
diff --git a/Resources/ServerInfo/Guidebook/Engineering/AtmosphereInOut.xml b/Resources/ServerInfo/Guidebook/Engineering/AtmosphereInOut.xml
deleted file mode 100644
index 126b2335fc9..00000000000
--- a/Resources/ServerInfo/Guidebook/Engineering/AtmosphereInOut.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
- #Atmosphere Input and Output
- Inserting and extracting gasses from a present (or non-present) atmosphere is an essential part of Atmos' job.
-
-
-
-
-
-
-
-
- With these devices, Atmos can insert, extract, or scrub unwanted gasses from any atmosphere they would like.
- This allows the maintaining of a safe, breathable atmosphere.
-
- Some of these devices require [textlink="power" link="Power"] to function, and can be linked to an [textlink="air alarm." link="AirAlarms"]
-
- [textlink="Linking" link="Networking"] compatible devices to an air alarm unlocks more configuration options and functionality. Otherwise, these devices follow their default behavior as defined in the subguides.
-
-
-
-
-
-
-
-
diff --git a/Resources/ServerInfo/Guidebook/Engineering/AtmosphericAlertsComputer.xml b/Resources/ServerInfo/Guidebook/Engineering/AtmosphericAlertsComputer.xml
deleted file mode 100644
index 77a2a2df5f6..00000000000
--- a/Resources/ServerInfo/Guidebook/Engineering/AtmosphericAlertsComputer.xml
+++ /dev/null
@@ -1,30 +0,0 @@
-
- # Atmospheric Alerts Computer
- The Atmospheric Alerts Computer is a computer that shows information on all air alarms and fire alarms across the station.
-
-
-
-
-
- It is a useful tool for quickly identifying areas that require attention.
-
- The Atmospheric Alerts Computer is often found in Atmospherics, and is used by Atmospherics Technicians to monitor atmospheres across the entire station.
- However, it is also a good indicator for general engineers to gauge station damage.
-
- The computer displays lists of Air Alarms in [color=orange]Warning[/color] and [color=red]Danger[/color] levels. Additionally, the computer displays the location of all air alarms, color-coded based on their current status.
-
- Air alarms with the normal status are hidden by default.
- You can toggle the visibility of normal air alarms by adjusting the filters at the bottom of the interface.
-
- The map draws a box around the area that the air alarm is monitoring, which can help identify the area that is in danger.
- This box will change color based on the status of the air alarm.
-
- If an Air Alarm is unpowered, it is shown as greyed out on the list and on the map.
-
- Clicking on an air alarm on the list or on the map will show detailed information about the atmosphere in that area, which can help gauge the type of emergency that is occurring.
-
- A list of triggered [textlink="fire alarms" link="FireAndGasControl"] is also displayed on the Atmospheric Alerts Computer in a separate tab, which can be used to quickly identify areas that might be on fire.
-
- You can silence specific alarms (such as alarms that monitor burn chambers and freezers) by clicking on the alarm in the list and pressing the "Silence alerts" button.
- This will hide the alarm from the list, but it will still be visible on the map.
-
diff --git a/Resources/ServerInfo/Guidebook/Engineering/AtmosphericNetworkMonitor.xml b/Resources/ServerInfo/Guidebook/Engineering/AtmosphericNetworkMonitor.xml
deleted file mode 100644
index 53007d5fdd2..00000000000
--- a/Resources/ServerInfo/Guidebook/Engineering/AtmosphericNetworkMonitor.xml
+++ /dev/null
@@ -1,47 +0,0 @@
-
- # Atmospheric Network Monitor
- The Atmospheric Network Monitor is a computer that shows information on monitored [textlink="pipe networks" link="PipeNetworks"] across the station.
-
-
-
-
-
- It is a useful tool for quickly gauging the tempreature, pressure, and gas composition of station [textlink="pipe networks" link="PipeNetworks"], as well as how they spread throughout the station.
-
- ## Listed Networks
- The Atmospheric Network Monitor displays a list of all monitored [textlink="pipe networks" link="PipeNetworks"] on the station.
-
- Each network is color-coded and named based on the name and color of the Gas Pipe Sensor that is monitoring it.
- To change the name or color of a network, you can rename it with a labeler, or change the color using a spray painter.
-
- Clicking on a network will show detailed information about the network, as well as highlighting the network on the station map.
-
- This information includes the molar amount of the gas in the entire network, as well as the composition of the gas in the network.
- This can prove extremely useful for monitoring important networks like the Distro pipenet, which can not function correctly if below certain pressures.
-
- ## Station Map
- The Atmospheric Network Monitor displays the location of all [textlink="pipe networks" link="PipeNetworks"] on the station map, as well as any pipe-based devices.
- Note that the pipe network doesn't need to have an attached Gas Pipe Sensor to be visible on the map.
-
- These devices are colored on the map based on their color on the station, which can help identify seperate [textlink="pipe networks" link="PipeNetworks"], and the devices that are connected to them.
-
- Pipe based devices are grouped together on the map's legend based on their function:
- - A [bold]Network Opening[/bold] is a device that connects a pipe network to the station's atmosphere. Think [textlink="Air Vents" link="AirVents"], [textlink="Passive Vents" link="PassiveVent"], and [textlink="Air Injectors" link="AirInjector"].
- - An [bold]Air Scrubber[/bold] is just an [textlink="Air Scrubber" link="AirScrubber"].
- - A [bold]Flow Regulator[/bold] is a device that controls the flow of gas through a pipe network. Think [textlink="Gas Pumps" link="Pumps"], [textlink="Gas Valves" link="Valves"], and [textlink="Gas Mixers/Filters" link="MixingAndFiltering"]. The arrow on the device indicates the direction of gas flow. This also often determines where a pipe network is seperated or split.
- - A [bold]Thermoregulator[/bold] is any device that does something to the temperature of the gas in a pipe network. Think [textlink="Thermomachines" link="Thermomachines"], [textlink="Radiators" link="Radiators"], and even Medical Cryopods.
-
- ## Gas Pipe Sensors
- Atmospheric Network Monitors collect data on [textlink="pipe networks" link="PipeNetworks"] through Gas Pipe Sensors.
-
-
-
-
-
- By default, the station should have gas pipe sensors on all major [textlink="pipe networks" link="PipeNetworks"]. Examples include the Distro and Waste networks.
-
- If you wish to monitor a new network, you can construct a gas pipe sensor and it will automatically be visible on the Atmospheric Network Monitor.
- Make sure you construct the sensor on the pipe network you want to monitor.
- [textlink="Pipe networks" link="PipeNetworks"] can easily be seperated by a simple Gas Pump or Valve, which can cause the sensor to report data on a completely different network.
-
-
diff --git a/Resources/ServerInfo/Guidebook/Engineering/AtmosphericUpsets.xml b/Resources/ServerInfo/Guidebook/Engineering/AtmosphericUpsets.xml
deleted file mode 100644
index 9267ff3511b..00000000000
--- a/Resources/ServerInfo/Guidebook/Engineering/AtmosphericUpsets.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-
- # Atmospheric Upsets
- Atmospheric upsets are deviations from the normal atmospheric conditions that should be maintained on the station.
-
- These upsets can be caused by a variety of factors, such as [textlink="fires" link="Fires"], [textlink="spacing" link="Spacing"], or other events that can quickly spread throughout the station and make the atmosphere uninhabitable for the crew.
-
- For reference, the normal atmospheric conditions on the station are 101.3 kPa of pressure and 293.15 K (20°C) of temperature.
- The standard station mix is also 78% nitrogen, 22% oxygen.
-
- ## Damage Control
- For all atmospheric emergencies, it's important to act quickly to prevent the spread of dangerous conditions, and to contain the spread as much as possible.
-
- Opening [textlink="firelocks" link="FireAndGasControl"] to the exposed area will often lead to you having to fix [italic]two[/italic] problems instead of one.
-
- Be sure to use your [textlink="holofan projector" link="AtmosTools"] to prevent the spread of dangerous conditions between [textlink="firelock buffers" link="FireAndGasControl"].
-
-
-
-
-
-
-
diff --git a/Resources/ServerInfo/Guidebook/Engineering/AtmosphericsSystems.xml b/Resources/ServerInfo/Guidebook/Engineering/AtmosphericsSystems.xml
deleted file mode 100644
index a242a408886..00000000000
--- a/Resources/ServerInfo/Guidebook/Engineering/AtmosphericsSystems.xml
+++ /dev/null
@@ -1,58 +0,0 @@
-
- # Atmospherics Systems
- Atmos has a wide variety of devices catered to moving, managing, and otherwise manipulating gas.
- These devices often work together to maintain a safe, breathable atmosphere for the crew, or to achieve a common task.
-
- This section delves into the various systems that Atmos has at their disposal, how they interconnect, and how they are ideally used.
-
-
-
-
-
-
-
-
-
-
-
-
- ## Pipe Networks
-
-
- [color=#999999][italic]Interconnected pipes with a common task — commonly called Pipenets[italic][/color]
-
-
-
-
-
-
-
- ## Device Monitoring and Control
-
-
- [color=#999999][italic]Monitoring and control over devices that manage a local atmosphere[italic][/color]
-
-
-
-
-
-
-
- ## Fire and Gas Control
-
-
- [color=#999999][italic]Devices to control and prevent gas leaks and fires[italic][/color]
-
-
-
-
-
-
-
- ## Gas Mining and Storage
-
-
- [color=#999999][italic] Devices to mine new gas for the station to use, and store it for later[italic][/color]
-
-
-
diff --git a/Resources/ServerInfo/Guidebook/Engineering/Construction.xml b/Resources/ServerInfo/Guidebook/Engineering/Construction.xml
index 8515862e662..5223679d4d5 100644
--- a/Resources/ServerInfo/Guidebook/Engineering/Construction.xml
+++ b/Resources/ServerInfo/Guidebook/Engineering/Construction.xml
@@ -1,14 +1,6 @@
# Строительство
-
-
-
-
-
-
-
-
Нажав [color=#a4885c]G[/color] на клавиатуре, или соответствующую кнопку на экране, вы откроете меню строительства, через которое можно строить различные объекты и создавать предметы.
При размещении призраков объектов, которые «привязываются» к сетке, зажмите [color=#a4885c]Shift[/color] чтобы разместить сразу несколько объектов в линию, или [color=#a4885c]Ctrl[/color] чтобы разместить объекты квадратом.
diff --git a/Resources/ServerInfo/Guidebook/Engineering/DeviceMonitoringAndControl.xml b/Resources/ServerInfo/Guidebook/Engineering/DeviceMonitoringAndControl.xml
deleted file mode 100644
index b536bcbde8e..00000000000
--- a/Resources/ServerInfo/Guidebook/Engineering/DeviceMonitoringAndControl.xml
+++ /dev/null
@@ -1,39 +0,0 @@
-
- # Device Monitoring and Control
- Given the station-wide nature of the atmospherics network, it is important to have a way to monitor and control devices from a central location.
-
- Using these systems, Atmospherics can monitor and control the atmosphere across the entire station.
-
-
-
-
-
-
- ## Air Alarms
-
-
- [color=#999999][italic]Wide area monitoring and control over atmos devices[italic][/color]
-
-
-
-
-
-
- ## Atmospheric Alerts Computer
-
-
- [color=#999999][italic]Station-wide monitoring of air alarms[italic][/color]
-
-
-
-
-
-
-
- ## Atmospheric Network Monitor
-
-
- [color=#999999][italic]Monitoring of whole pipe networks[italic][/color]
-
-
-
diff --git a/Resources/ServerInfo/Guidebook/Engineering/Engineering.xml b/Resources/ServerInfo/Guidebook/Engineering/Engineering.xml
index b1e4c65807c..567862d143f 100644
--- a/Resources/ServerInfo/Guidebook/Engineering/Engineering.xml
+++ b/Resources/ServerInfo/Guidebook/Engineering/Engineering.xml
@@ -3,12 +3,6 @@
Инженерное дело - это комбинация работа по строительству, ремонту, обслуживанию машин смерти, которые ещё и энергию производят; а также забота о том, чтобы на станции был пригодный для дыхания воздух.
-
-
-
-
-
-
## Инструментарий
diff --git a/Resources/ServerInfo/Guidebook/Engineering/ExpandingRepairingStation.xml b/Resources/ServerInfo/Guidebook/Engineering/ExpandingRepairingStation.xml
deleted file mode 100644
index 1d3b8842b99..00000000000
--- a/Resources/ServerInfo/Guidebook/Engineering/ExpandingRepairingStation.xml
+++ /dev/null
@@ -1,39 +0,0 @@
-
- # Expanding and Repairing Stations
- In Space Station 14, it is common for players to want to expand the station, or repair holes left by meteors or other damage.
-
- ## Lattice
- Lattice is bare rodwork placed in empty space. It's used as a foundation for building and anchoring objects onto the station.
-
-
-
-
-
-
- You can create lattice by placing rods on empty space using [color=yellow][bold][keybind="Use"][/bold][/color]. Remember you can craft steel sheets into rods using the construction menu.
-
- Lattice cannot hold pressure, and all gasses will leak out into space through it.
-
- You can use wirecutters to remove lattice by using [color=yellow][bold][keybind="Use"][/bold][/color] on them.
-
- If the game is preventing you from placing lattice, it's because there is another separated grid too close to the grid you're trying to expand. You can use a wirecutter to remove the offending grid.
-
- ## Hull Tiles
- Hull tiles are solid foundation for the station, where all the other parts of the station rest upon.
-
-
-
-
-
-
-
-
- Lattice can be made into hull tiles by using either steel or almost any type of floor tile on them by pressing [color=yellow][bold][keybind="Use"][/bold][/color].
- This will convert the lattice into a hull tile, which can hold pressure and gasses.
-
- It is advised to use floor tiles to replace lattice instead of steel sheets, as you can craft 4 floor tiles from a single steel sheet.
-
- You can use an RCD to deconstruct hull tiles into lattice.
-
-
-
diff --git a/Resources/ServerInfo/Guidebook/Engineering/FireAndGasControl.xml b/Resources/ServerInfo/Guidebook/Engineering/FireAndGasControl.xml
deleted file mode 100644
index 7bf5071d287..00000000000
--- a/Resources/ServerInfo/Guidebook/Engineering/FireAndGasControl.xml
+++ /dev/null
@@ -1,77 +0,0 @@
-
- # Fire and Gas Control
- Unfortunately, [textlink="fires" link="Fires"], [textlink="spacing" link="Spacing"], and other [textlink="atmospheric upsets" link="AtmosphericUpsets"] are a common occurrence on the station.
- These upsets can quickly spread throughout the station and make the atmosphere uninhabitable for the crew.
-
-
-
-
-
-
-
-
- To combat this, stations have a variety of devices to help prevent these upsets from spreading.
-
- ## Firelocks
- Firelocks are a simple and effective way to prevent fires from spreading throughout the station.
-
- Based on conditions sensed by the firelock, or through instruction from a connected [textlink="air" link="AirAlarms"] or fire alarm, they can close off sections of the station to prevent the spread of dangerous conditions.
-
- ## Station Sectioning
- Firelocks are intentionally placed in key areas to divide the station into sections. Open spaces like hallways or promenades are divided into smaller sections. This prevents the spread of dangerous conditions to the entire station through connected rooms, hallways, and other open spaces.
-
- ## Basic Operation
- When not connected to an [textlink="air alarm" link="AirAlarms"] or fire alarm, firelocks will function based on the conditions they sense. Firelocks will drop (close) if:
- - The temperature between the two sides of the firelock is different by [color=orange][protodata="Firelock" comp="Firelock" member="TemperatureThreshold"/] K[/color] or more.
- - The pressure between the two sides of the firelock is different by [color=orange][protodata="Firelock" comp="Firelock" member="PressureThreshold"/] kPa[/color] or more.
-
- If these conditions continue, the firelock will enter lockout mode. Firelocks in lockout mode will have [color=red]red[/color] lights and cannot be pried open by hand. They can only be opened by people with Engineering access or by using a crowbar.
-
- Firelocks in lockout mode cannot be opened by using Engineering access if they are unpowered. Only a crowbar can open an unpowered firelock in lockout mode.
-
- If the conditions between the two sides of the firelock return to within acceptable differences, the firelock will disable lockout mode, and can be opened by anyone.
- Note that this only means that the conditions are the same on both sides of the firelock, not that they are safe.
-
- A common example of this is a firelock that has released due to both sides being exposed to space.
-
- ## Connecting to Air and Fire Alarms
- Firelocks can be connected to [textlink="air alarms" link="AirAlarms"] and fire alarms to receive instructions on when to drop.
- Firelocks use the [textlink="List system" link="Networking"], and you can connect these devices using a multitool or network configurator.
-
-
-
-
-
-
-
-
-
- Each firelock has its own unique address. The process for connecting air vents, scrubbers, and sensors to air alarms is very similar.
-
- ## Operation Under Air Alarms
- When connected to an air alarm, firelocks will also drop under the command of the connected [textlink="air alarm" link="AirAlarms"].
-
- Firelocks will drop if the air alarm reaches a [color=red]Danger[/color] alert state. Firelocks will remain dropped until the air alarm returns to a [color=green]Green[/color] alert state.
-
- Firelocks that are in lockout mode will not raise even if the air alarm returns to a [color=green]Green[/color] alert state. Even if the pressure difference is resolved, the firelock will remain dropped until the air alarm re-sends a green alert state.
-
- ## Operation Under Fire Alarms
- When connected to a fire alarm, firelocks will drop if the fire alarm is triggered. Firelocks will remain dropped until the fire alarm is reset.
-
- ## Fire Alarms
- Fire alarms are devices that can be used to centrally control all connected firelocks.
-
-
-
-
-
- Devices with sensors can be [textlink="linked" link="Networking"] to fire alarms, which will trigger the fire alarm if the sensor enters the [color=red]Danger[/color] temperature threshold as defined by its sensors.
-
- When the fire alarm is triggered, all connected firelocks will be overridden with a [color=red]Danger[/color] alert state and will drop.
-
- The alarm will automatically clear itself when the sensor returns to a [color=green]Normal[/color] temperature threshold.
-
- You can trigger and reset a fire alarm manually by interacting with it.
-
- This can be used to quickly drop firelocks in a room manually, or to raise them after an upset has been resolved.
-
diff --git a/Resources/ServerInfo/Guidebook/Engineering/Fires.xml b/Resources/ServerInfo/Guidebook/Engineering/Fires.xml
index fa4983ca332..9396a1e14f1 100644
--- a/Resources/ServerInfo/Guidebook/Engineering/Fires.xml
+++ b/Resources/ServerInfo/Guidebook/Engineering/Fires.xml
@@ -3,12 +3,6 @@
Пожары и разгерметизации неизбежны из-за легковоспламеняющейся газообразной плазмы и космического вакуума, присутствующих на станции и вокруг неё, поэтому важно знать, как с ними справиться.
-
-
-
-
-
-
## Разгерметизации
С разгерметизацией, пожалуй, справиться проще чем с пожаром.
Хотя это делает помещение непригодным для жизни, эту проблему можно решить простым заделыванием отверстия, в котором образовался вакуум. После этого, если вентиляции и трубы не были разрушены в результате несчастного случая, помещение начнет медленно восстанавливать давление.
diff --git a/Resources/ServerInfo/Guidebook/Engineering/GasCanisters.xml b/Resources/ServerInfo/Guidebook/Engineering/GasCanisters.xml
deleted file mode 100644
index 5512f7fbdc0..00000000000
--- a/Resources/ServerInfo/Guidebook/Engineering/GasCanisters.xml
+++ /dev/null
@@ -1,30 +0,0 @@
-
- # Gas Canisters
-
-
-
-
-
-
-
-
-
-
-
- Gas canisters are a way to store gas in a portable container for easy transport.
- They can store [color=orange][protodata="StorageCanister" comp="GasCanister" member="Volume"/] liters[/color] of gas.
-
- You can connect handheld tanks to a gas canister to refill them using the release valve on the canister.
- The release valve also has a adjustable pressure regulator to control the pressure of the handheld tank connected.
-
- Opening the release valve on a canister with no handheld tank connected will release gas into the atmosphere, at the specified regulator pressure.
-
- [bold]Be sure to close the release valve before you eject your handheld tank![/bold]
-
- ## Connector Ports
- Gas canisters and [textlink="portable scrubbers" link="PortableScrubber"] can be connected to a [textlink="pipenet" link="PipeNetworks"] by anchoring (wrenching) the device on top of a connector.
- When connected, gas will be free to move in and out of the canister to balance pressure, temperature, and composition.
-
- A pump can be used to insert or extract gas from a canister, useful for filling or emptying a canister entirely.
-
-
diff --git a/Resources/ServerInfo/Guidebook/Engineering/GasCondensing.xml b/Resources/ServerInfo/Guidebook/Engineering/GasCondensing.xml
deleted file mode 100644
index 3dd05c0f308..00000000000
--- a/Resources/ServerInfo/Guidebook/Engineering/GasCondensing.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
- # Gas Condensing
- Gas condensers take gasses and condense them into their liquid (reagent) forms.
-
-
-
-
-
- For example, water vapor can be condensed into liquid water, oxygen into liquid oxygen, and so on.
-
- It has a [textlink="pipenet" link="PipeNetworks"] connection to input gas, and an internal tank to store the condensed liquid.
-
- A condensor will stop condensing gas if the tank is full.
- You can take liquid out of the condenser by interacting with it using any empty container.
-
- Gas condensors can take multiple gasses as input, and will condense them into their liquid forms.
- For example, if you input a mixture of oxygen and nitrogen, you will get liquid oxygen and liquid nitrogen in the output tank.
-
- Because [textlink="Chemistry" link="Chemist"] works with limited reagents in liquid form, they will highly appreciate the work of a skilled atmospherics technician who can provide them with the reagents they need.
-
-
-
-
diff --git a/Resources/ServerInfo/Guidebook/Engineering/GasManipulation.xml b/Resources/ServerInfo/Guidebook/Engineering/GasManipulation.xml
deleted file mode 100644
index 3a3857ae4cb..00000000000
--- a/Resources/ServerInfo/Guidebook/Engineering/GasManipulation.xml
+++ /dev/null
@@ -1,108 +0,0 @@
-
- # Gas Manipulation
- Atmos has a wide variety of tools and equipment at their disposal for the manipulation of gasses throughout the station.
-
- [bold]Warning: unanchoring (unwrenching) most devices containing gas will [color=red]leak gas[/color] into the atmosphere.[/bold]
- You can safely unanchor [textlink="canisters" link="GasCanisters"], [textlink="portable scrubbers" link="PortableScrubber"], [textlink="condensers" link="GasCondensing"], and [textlink="thermomachines" link="Thermomachines"].
-
-
-
-
-
-
-
-
-
- ## Pipes
-
-
- [color=#999999][italic]Distributing gasses from one place to another[italic][/color]
-
-
-
-
-
-
-
- ## Pumps
-
-
- [color=#999999][italic]Forcing the movement of gasses from one place to another[italic][/color]
-
-
-
-
-
-
-
-
-
-
- ## Atmosphere Input and Output
-
-
- [color=#999999][italic]Inserting and extracting gasses from a present (or non-present) atmosphere[italic][/color]
-
-
-
-
-
-
-
-
-
- ## Valves
-
-
- [color=#999999][italic]Controlling the flow of gas through pipes[italic][/color]
-
-
-
-
-
-
-
- ## Mixing and Filtering
-
-
- [color=#999999][italic]Manipulating the composition of gas[italic][/color]
-
-
-
-
-
-
-
-
-
-
-
- ## Gas Canisters
-
-
- [color=#999999][italic]Storing and transporting gas for easy use by the crew[italic][/color]
-
-
-
-
-
-
-
-
-
- ## Thermomachines and Radiators
-
-
- [color=#999999][italic]Manipulating the temperature of gasses in a pipenet or atmosphere[italic][/color]
-
-
-
-
-
-
- ## Gas Condensing
-
-
- [color=#999999][italic]Condensing gasses for further use[italic][/color]
-
-
diff --git a/Resources/ServerInfo/Guidebook/Engineering/GasMiningAndStorage.xml b/Resources/ServerInfo/Guidebook/Engineering/GasMiningAndStorage.xml
deleted file mode 100644
index dd633a2804a..00000000000
--- a/Resources/ServerInfo/Guidebook/Engineering/GasMiningAndStorage.xml
+++ /dev/null
@@ -1,66 +0,0 @@
-
- # Gas Mining and Storage
- Gasses are often permanently used. Whether they are lost to [textlink="space" link="Spacing"] or used in a burn chamber, the station needs to be able to produce more gas to replace what is lost.
- It also needs to store this gas in a safe and efficient manner.
-
- ## Gas Miners
- Gas miners are used to replenish the station's gas supply. They are found in the gas storage tanks in Atmospherics.
-
-
-
-
-
-
- Gas miners constantly produce room temperature gas and push it into the exposed atmosphere. They require no power to function, and never stop working unless they have reached the defined [bold]cutoff pressure[/bold].
-
- You can see more information about the gas miners by inspecting them using [color=yellow][bold][keybind="ExamineEntity"][/bold][/color].
- Try inspecting the gas miners presented above.
-
- Gas miners come in tiers, with the larger versions having a higher pressure cutoff than the smaller versions.
-
-
-
-
-
-
-
- If gas miners are ever unanchored from the station, they can be reanchored using a regular wrench.
-
- ## Gas Storage
- Gas storage tanks are used to store gas produced by the gas miners, and to make it available to other processes. They are found in Atmospherics.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- [color=#999999][italic]An example of a small gas holding tank[italic][/color]
-
-
- Various atmos processes insert and remove gasses from the gas storage tanks.
- For example:
- - The gas miner provides fresh gasses to the gas storage tanks, if there is room.
- - The recyclernet injects reclaimed gasses into the gas storage tanks for reuse.
- - Setups like the distronet and burn chamber remove gasses from the gas storage tanks.
-
- Gas storage tanks are designed to be able to be measured using a [textlink="Gas Analyzer" link="AtmosTools"].
- Because the outflow vent is a [textlink="passive vent" link="PassiveVent"], you can use a [textlink="gas analyzer" link="AtmosTools"] to measure the gas content of the [textlink="pump's" link="Pumps"] input, which is drawing from the gas storage tank.
-
diff --git a/Resources/ServerInfo/Guidebook/Engineering/Gasses.xml b/Resources/ServerInfo/Guidebook/Engineering/Gasses.xml
deleted file mode 100644
index a5fadbaa84c..00000000000
--- a/Resources/ServerInfo/Guidebook/Engineering/Gasses.xml
+++ /dev/null
@@ -1,122 +0,0 @@
-
- # Gasses
- Gasses are a critical part of the station's operation.
- You may know them as the stuff you breathe, but they are also used in many other ways.
-
- Gasses have certain properties that make them useful for different tasks.
- Atmospherics can also synthesize exotic gasses from other gasses, which can be used for special purposes.
-
- ## Oxygen
-
-
-
-
-
-
-
-
- A common gas, used by most species on the station to breathe.
-
- Oxygen is an oxidizer, which means it supports combustion.
- This makes it both useful when fusing gasses in a burn chamber, and dangerous when mixed with flammable gasses.
-
- ## Nitrogen
-
-
-
-
-
-
-
-
- An inert gas, used in part with oxygen to create a breathable atmosphere.
-
- Nitrogen is very stable and comprises most of a standard breathable atmosphere.
-
- Some species like Slimes breathe nitrogen, with the Vox species requiring strictly nitrogen to breathe.
-
- ## Air Mix
-
-
-
-
-
- A mixture of gasses that is breathable to most species on the station.
- It consists of 21% oxygen and 79% nitrogen.
-
-
- ## Carbon Dioxide
-
-
-
-
- A waste gas produced by most species on the station. A common byproduct of combustion.
-
- Despite seeming useless, some departments use it in their line of work.
-
- ## Water Vapor
-
-
-
- A common gas, produced by the burning of plasma and other processes.
-
- Water vapor has a good specific heat capacity compared to other gasses, making it useful for moving heat around.
-
- ## Plasma
-
-
-
- A highly flammable gas that is used in many processes on the station.
-
- Engineering uses this gas to generate power and create exotic gasses.
-
- Burning it generates a lot of heat, as well as gas byproducts such as carbon dioxide, water vapor, and tritium, depending on the efficiency of the burn.
-
- Plasma gas also has a good specific heat capacity, making it useful for moving heat around.
-
- ## Tritium
-
-
-
- An extremely flammable radioactive gas that is used in the creation of frezon.
-
- Tritium is produced when burning plasma in a burn chamber, and can be used to create frezon gas in a complicated mixing process.
-
- The efficiency of tritium fusion depends on various factors such as burn richness and temperature.
-
- ## Frezon
-
-
-
-
- A highly sought after gas, due to the difficulty in creating it and its many properties.
-
- It has an extremely high specific heat capacity, making it excellent for moving large amounts of heat around.
-
- Frezon can combine in the air with nitrogen to create nitrous oxide, alongside cooling down the air significantly to below freezing temperatures.
-
- Frezon is very complicated to create, requiring a mix of tritium, oxygen, and nitrogen, all tuned precisely to create the gas.
- If you're looking to create this gas yourself, here's what you need to know:
- - Frezon is produced by the combination of oxygen, tritium, and nitrogen.
- - Tritium and oxygen are mixed at a ratio of around 1:8.
- - Nitrogen is required as a catalyst for the reaction. The amount of nitrogen consumed is dependent on the efficiency of the reaction.
- - The frezon reaction only occurs at cryogenic temperatures, below 73.15 K. The efficency of the reaction (how much frezon is produced) is dependent on the temperature. The closer to 73.15 K, the more frezon is produced, and the less nitrogen is consumed.
-
- Remember, atmospherics is all about experimentation and process optimization. Try it until you get it right!
-
- ## Nitrous Oxide
-
-
-
-
- A recreational and waste gas, produced by slimes and the combination of frezon and nitrogen.
-
- ## Ammonia
-
-
-
- A gas produced by the decomposition of bodies.
-
- Can be condensed to create ammonia, which can be used to make space cleaner.
-
-
diff --git a/Resources/ServerInfo/Guidebook/Engineering/Generators.xml b/Resources/ServerInfo/Guidebook/Engineering/Generators.xml
deleted file mode 100644
index 0bd53264358..00000000000
--- a/Resources/ServerInfo/Guidebook/Engineering/Generators.xml
+++ /dev/null
@@ -1,75 +0,0 @@
-
- # Generators
- Generators are devices that produce power for the station. They vary in size and power output, and each has its own unique quirks and requirements.
-
- Engineers are intended to setup low-tier generators like Solar Arrays and the AME at the start of the shift, to give enough time to setup higher-tier generators like the Singularity Engine for sustained power for the rest of the shift.
-
-
-
-
-
-
- ## Singularity and Tesla Engine
-
-
- [color=#999999][italic]Devices capable of infinite energy — and destructive potential[italic][/color]
-
-
-
-
-
-
-
- ## Antimatter Engine
-
-
- [color=#999999][italic]Short-term support generator for the station[italic][/color]
-
-
-
-
-
-
-
-
- ## Thermo-electric Generator
-
-
- [color=#999999][italic]Advanced atmospherics generator that harnesses the energy of gasses[italic][/color]
-
-
-
-
-
-
-
-
- ## Solar Panels
-
-
- [color=#999999][italic]Low-maintenance passive power source[italic][/color]
-
-
-
-
-
-
-
-
-
- ## Portable Generators
-
-
- [color=#999999][italic]Portable generators for crew use and emergency power[italic][/color]
-
-
-
-
-
-
- ## Radioisotope Thermoelectric Generator
-
-
- [color=#999999][italic]Zero-maintenance passive power source[italic][/color]
-
-
diff --git a/Resources/ServerInfo/Guidebook/Engineering/InspectingPower.xml b/Resources/ServerInfo/Guidebook/Engineering/InspectingPower.xml
deleted file mode 100644
index a4a63cec1f8..00000000000
--- a/Resources/ServerInfo/Guidebook/Engineering/InspectingPower.xml
+++ /dev/null
@@ -1,60 +0,0 @@
-
- # Inspecting Power
- Engineers can inspect a power network to see useful statistics about it.
- This can help engineers diagnose power issues and find root causes to problems.
-
- ## Power Monitoring Computer
- The Power Monitoring Computer is a device that can be used to inspect all the power networks on the station.
-
-
-
-
-
- The Power Monitoring Computer has two major sections, a station map and the power statistics.
-
- The station map shows:
- - The station layout, with [color=green]low[/color], [color=yellow]medium[/color], and [color=orange]high[/color] [textlink="voltage networks" link="VoltageNetworks"] highlighted.
- - [textlink="All APCs, SMES, and substations." link="VoltageNetworks"]
- - All power [textlink="producers" link="Generators"] connected to the station (note that they don't have to be connected to a power network to be shown).
-
- The power statistics show:
- - The total [textlink="generator" link="Generators"] output, which is what the generators are currently producing to match grid demand.
- - The total [textlink="battery" link="PowerStorage"] usage, which is the amount of power being drawn from batteries. Grids completely powered by generators will show low battery usage.
- - The total network loads, which is the amount of power being requested by the station.
-
- In an ideal situation, the total generator output should match the total network load, and the total battery usage should be low.
- Using these three statistics, engineers can get an accurate picture of the station's power situation.
- For example:
- - If the total generator output is lower than the total network load, the station is in a power deficit.
- - If the total battery usage is high, the station is drawing power from batteries to make up the difference.
- - If it is zero with the generator load below the total network load, then the station is actively in a brownout, as the batteries are fully discharged.
- - If the total generator output is higher than the total network load, the SMESes are charging.
-
- ## Device Tabs
- The Power Monitoring Computer has tabs for each device category on the station.
- Navigating these power tabs will show the power statistics for each device category.
- For example:
- - Clicking on a source will show what that source is supplying the power to, and how much power it is supplying. It will also highlight the devices that are connected to that source.
- - Clicking on an SMES, Substation, or APC will show the two power grids it is connected to, how much power it is receiving, and how much power it is distributing, as well as the exact devices that are making an exchange with the target device.
-
- ## Inspecting via Multitool
- The Multitool can be used to inspect power cables to see their power statistics.
-
-
-
-
-
- When you click on a cable with the Multitool, it will show the cable's power statistics. This includes:
- - The current supply, which is the amount of power the source is providing.
- - The current supply from batteries, which is the amount of power being drawn from batteries.
- - The theoretical supply, which is the maximum amount of power the source could provide if demanded.
- - The ideal consumption, which is the current demand on the cable.
- - The input storage, which is the capacity of batteries that are currently charging.
- - The output storage, which is the capacity of batteries that are currently discharging.
-
- Note that this information is relevant only to the voltage network you inspected.
- A [color=green]low voltage[/color] cable (which likely only services a few rooms) will not show the same statistics as a [color=orange]high voltage[/color] cable (which services the entire station).
-
- This is useful information to keep in mind, as it can help you troubleshoot why "this room is powered, but this one isn't!"
-
-
diff --git a/Resources/ServerInfo/Guidebook/Engineering/ManualValve.xml b/Resources/ServerInfo/Guidebook/Engineering/ManualValve.xml
deleted file mode 100644
index d13a5ebdc0b..00000000000
--- a/Resources/ServerInfo/Guidebook/Engineering/ManualValve.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-
- # Manual Valve
- The manual valve is as simple as it gets.
- Allows or blocks the flow of gasses depending on if it's open or closed.
-
-
-
-
- Gas can freely flow between both sides with no restrictions.
-
- Manual valves are used in a variety of applications, for example:
- - Allowing or blocking the bypass of a recyclernet, to space waste gas directly
- - Connecting or isolating heaters/coolers from the station's distro
-
-
diff --git a/Resources/ServerInfo/Guidebook/Engineering/MixingAndFiltering.xml b/Resources/ServerInfo/Guidebook/Engineering/MixingAndFiltering.xml
deleted file mode 100644
index 5814dd4b083..00000000000
--- a/Resources/ServerInfo/Guidebook/Engineering/MixingAndFiltering.xml
+++ /dev/null
@@ -1,55 +0,0 @@
-
- # Mixing and Filtering
- Gas mixers and filters are essential tools for manipulating the composition of gases within a [textlink="pipe network" link="PipeNetworks"].
-
-
-
-
-
- ## Gas Mixer
- Gas mixers are used to combine gases in specific ratios within a [textlink="pipe network." link="PipeNetworks"]
- They are essential for creating controlled gas mixtures for various applications.
-
- Gas mixers have 3 connections: 2 inputs and 1 output, as shown below:
-
-
-
-
-
-
-
-
-
- Gas mixers will still respect the requested gas mixture even if one of the input gases is not available. For example:
- - If the requested mixture is 22% oxygen and 78% nitrogen, but there is no available oxygen, the mixer will not work until oxygen is available.
- - If oxygen is available, but at a pressure lower than required to create the proper mixture at the requested pressure, the mixer will still create the mixture, but the output will be at a lower pressure than requested.
-
- Gas mixers also mix gasses based on pressure, not on mols. This can cause problems if the gasses are at different temperatures. For example:
- - Presume a gas mixer was asked to mix Oxygen and Nitrogen at a ratio of 1:2 at a certain pressure.
- - The Nitrogen in this case is double the temperature of the Oxygen.
- - Hotter gas has more pressure, and thus fewer mols per volume than Oxygen.
- - Because of this, Nitrogen will have half the mols compared to Oxygen when the gas mixer attempts to create the mix.
- - The output will be 1:1 instead of 1:2. You'll have 1 mol of Nitrogen per 1 mol of Oxygen, instead of 2 mols of Nitrogen per 1 mol of Oxygen.
-
- Gas mixers can be used in a variety of applications, for example:
- - Mixing oxygen and nitrogen to create a breathable atmosphere
- - Mixing oxygen and plasma for plasma burning to create Tritium
-
- ## Gas Filter
- Gas filters are used to separate gases from a mixture within a [textlink="pipe network." link="PipeNetworks"]
-
-
-
-
-
-
-
-
-
-
- Gas filters will become blocked and will not filter gas if either output is blocked.
-
- Gas filters can be used in a variety of applications, for example:
- - Filtering out unwanted gases from a [textlink="pipe network" link="PipeNetworks"]
- - Separating specific gases for storage in a station's recyclernet
-
diff --git a/Resources/ServerInfo/Guidebook/Engineering/NetworkConfigurator.xml b/Resources/ServerInfo/Guidebook/Engineering/NetworkConfigurator.xml
new file mode 100644
index 00000000000..dc1d8b5b26b
--- /dev/null
+++ b/Resources/ServerInfo/Guidebook/Engineering/NetworkConfigurator.xml
@@ -0,0 +1,37 @@
+
+# Конфигуратор сетей
+Конфигуратор сетей позволяет вам управлять списками устройств и связывать устройства друг с другом.
+
+
+
+Конфигуратор имеет два режима: Список и Связь. Вы можете нажать [color=gray]Alt+Z[/color] или [color=gray]Alt+Y[/color], чтобы переключаться между ними.
+
+## Режим списка
+В этом режиме вы можете нажать на любые сетевые устройства, чтобы сохранить их в конфигураторе, а затем всех их разом связать с устройством, имеющим компонент сетевого прибора, как [color=#a4885c]Воздушная сигнализация[/color].
+
+При нажатии на прибор из примера, откроется интерфейс, отображающий список сохраненных сетевых устройств и кнопки для его управления.
+
+Вы можете:
+- Заменить текущий список устройства на тот, который вы сохранили в своём конфигураторе
+- Добавить список сохранённых на вашем конфигураторе устройств к уже существующему списку
+- Очистить текущий список
+- Скопировать список устройства, которые вы просматриваете, на ваш сетевой конфигуратор
+- Визуализировать соединения всех устройств текущего списка
+
+Нажатие [color=gray]z[/color] или [color=gray]y[/color] откроет список сохранённый на конфигураторе сетей, где вы сможете удалять сохранённые устройства.
+
+## Режим связи
+Выбрав режим связи, вы можете нажать на любое сетевое устройство, которое можно привязать к другому, а затем нажать на другое устройство, которое является либо источником сигнала, либо получателем.
+
+К примеру, если вы нажмёте на "источник", по типу [color=#a4885c]signal button[/color], а затем на "получателя" сигнала, вроде [color=#a4885c]small light[/color], то откроется интерфейс, показывающий порты "источника" слева, а порты "получателя" справа.
+
+Теперь вы можете нажать [color=gray]Соединить по-умолчанию[/color] чтобы соединить стандартные для этих устройств порты, или же сделать это вручную.
+
+Пример обычного соединения для комбинации устройств, описанной выше будет:
+
+ [color=cyan]Нажато 🠒 Переключить[/color]
+
+Когда вы закончили соединять желаемые порты, нажмите на [color=gray]Готово[/color] чтобы закрыть интерфейс.
+
+Вы можете быстро соединять множество устройств по своим стандартным портам, если сначала кликните на сетевое устройство, а затем, используя [color=gray]Alt+ЛКМ[/color], начнёте нажимать на остальные сетевые устройства.
+
diff --git a/Resources/ServerInfo/Guidebook/Engineering/PassiveGate.xml b/Resources/ServerInfo/Guidebook/Engineering/PassiveGate.xml
deleted file mode 100644
index 7a7a8f77030..00000000000
--- a/Resources/ServerInfo/Guidebook/Engineering/PassiveGate.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-
- # Passive Gate
- The passive gate is a simple one-way valve that prevents gasses from flowing backwards.
-
-
-
-
- The valve's input is on the side of the [color=red]red[/color] circle.
- The valve also shows the current flow rate of the pipe when examined.
-
- It's useful in many applications, for example:
- - Preventing a pure gas from getting contaminated via a mixed gas flowing back through the pipe.
- - Preventing pressure or temperature changes across two [textlink="pipenets" link="PipeNetworks"] in the opposite direction.
- - Quickly checking the flow rate on a pipenet without needing a [textlink="gas analyzer" link="AtmosTools"].
-
diff --git a/Resources/ServerInfo/Guidebook/Engineering/PassiveVent.xml b/Resources/ServerInfo/Guidebook/Engineering/PassiveVent.xml
deleted file mode 100644
index eac70540aa4..00000000000
--- a/Resources/ServerInfo/Guidebook/Engineering/PassiveVent.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-
- # Passive Vent
- The passive vent is an extremely basic vent.
- It serves as a direct connection between the pipenet it's connected to and the atmosphere it's exposed to.
-
-
-
- Gasses are free to move between the passive vent and the atmosphere it's connected to.
- The passive vent requires no [textlink="power" link="Power"] to function.
-
- This vent is commonly found in the station's [textlink="gas storage tanks" link="GasMiningAndStorage"] and connected to the station's wastenet.
- It is a simple and reliable way to pull gasses from a gas miner, or to space unwanted gasses safely.
-
- The passive vent can be welded with any welding tool to stop it from functioning.
-
diff --git a/Resources/ServerInfo/Guidebook/Engineering/PipeNetworks.xml b/Resources/ServerInfo/Guidebook/Engineering/PipeNetworks.xml
deleted file mode 100644
index 6bdaaa0f46a..00000000000
--- a/Resources/ServerInfo/Guidebook/Engineering/PipeNetworks.xml
+++ /dev/null
@@ -1,41 +0,0 @@
-
- # Pipe Networks
- Pipe networks — commonly called Pipenets — are a series of interconnected [textlink="pipes" link="Pipes"], usually with a common task.
-
-
-
-
-
-
-
-
-
-
-
- Pipenets are used all throughout the station to deliver, remove, or otherwise move gas throughout it.
- Great examples are the station's Distro or Wastenet, which deliver breathable air and remove waste gas, respectively.
-
- ## How Pipenets Work
- In Space Station 14, pipenets behave as a whole, defined volume, with input/output points at the ends of the network.
- Forcing or vacuuming gas in or out using a [textlink="pump" link="Pumps"] will affect the entire network, not just the pipe it's connected to.
-
- Pipenets are only separated by devices capable of interrupting flow, or by certain devices.
- For example, a [textlink="Pressure Pump" link="Pumps"] will not allow gas to flow through it unless it's powered and has gas to pump.
-
- Some examples of devices that separate pipe networks are:
- - [textlink="Pressure and Volumetric Pumps" link="Pumps"]
- - [textlink="Gas Mixers and Filters" link="MixingAndFiltering"]
- - [textlink="All Valves" link="Valves"]
- - [textlink="Radiators" link="Radiators"]
-
- An example of a pipenet being seperated into two, distinct pipenets by a [textlink="pump" link="Pumps"] is shown below:
-
-
-
-
-
-
-
-
-
-
diff --git a/Resources/ServerInfo/Guidebook/Engineering/Pipes.xml b/Resources/ServerInfo/Guidebook/Engineering/Pipes.xml
deleted file mode 100644
index 92df26bcd3e..00000000000
--- a/Resources/ServerInfo/Guidebook/Engineering/Pipes.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
- # Pipes
- Pipes are used to distribute gasses from one place to another.
- There are a wide variety of pipes available to construct:
-
-
-
-
-
-
-
-
-
- Pipes will [color=#a4885c]automatically connect[/color] to other pipes when anchored (or wrenched) to the hull to form a [textlink="network of pipes." link="PipeNetworks"]
- A network of pipes is commonly called a [textlink="pipenet" link="PipeNetworks"].
-
- Pipes will [color=red]not connect[/color] to pipes that are already connected to a different pipe.
- For example, building a bent pipe on top of a straight pipe to form a makeshift T-junction will not work.
-
- However, two pipes can share a tile as long as one isn't obstructing the other's connection to another pipe.
- For example, two bend pipes can be placed on the same tile, with one moving gas from north to east, and the other moving gas from west to south.
-
- You can color pipes (and most equipment that handles gasses) using a spray painter.
- This is commonly done to distinguish the air and waste components of the station's Distro pipenet.
-
diff --git a/Resources/ServerInfo/Guidebook/Engineering/PneumaticValve.xml b/Resources/ServerInfo/Guidebook/Engineering/PneumaticValve.xml
deleted file mode 100644
index d69facf697e..00000000000
--- a/Resources/ServerInfo/Guidebook/Engineering/PneumaticValve.xml
+++ /dev/null
@@ -1,43 +0,0 @@
-
- # Pneumatic Valve
- The pneumatic valve is a bidirectional valve controlled via a pressure input.
-
-
-
-
- The pneumatic valve has 3 connections: input, output, and control.
- The "input" side will be the input/output connection with the highest pressure, and can switch sides, making the valve bidirectional.
-
-
-
-
-
-
-
-
-
-
-
-
-
- The valve will [color=green]open[/color] when the pressure on the output side is lower than the pressure on the control side by [color=orange][protodata="PressureControlledValve" comp="PressureControlledValve" member="Threshold"/] kPa[/color].
-
- The valve will [color=red]close[/color] when the pressure of the output side reaches the pressure of the control side within [color=orange][protodata="PressureControlledValve" comp="PressureControlledValve" member="Threshold"/] kPa[/color].
-
- For example, a pneumatic valve with a control pressure of 500 kPa will open when the output pressure is 500 kPa - [color=orange][protodata="PressureControlledValve" comp="PressureControlledValve" member="Threshold"/] kPa[/color] or lower, and it will close when the output pressure is 500 kPa - [color=orange][protodata="PressureControlledValve" comp="PressureControlledValve" member="Threshold"/] kPa[/color] or higher.
-
- The valve's control pressure is determined by a pipenet connection, and as such can be adjusted on the fly by a [textlink="pump" link="Pumps"] or another source of pressure control.
-
- ## Differences to Pumps
-
- The pneumatic valve is different from a [textlink="pump" link="Pumps"] which moves gas via work.
- The pneumatic valve is a passive device that moves gas based on the higher pressure of the input gas, and as such it can sometimes fill volumes faster than a [textlink="pump" link="Pumps"] can.
-
- For example, a pneumatic valve with a control pressure of 500 kPa will fill a volume faster than a pressure [textlink="pump" link="Pumps"] set to 500 kPa.
- However, the [textlink="pump" link="Pumps"] will be able to maintain the pressure in the volume more accurately.
-
- The pneumatic valve can be used in a variety of applications, for example:
- - To automatically vent gasses in a burn chamber based on control input
- - The filling of a volume quickly, based on a customizable control pressure
-
-
diff --git a/Resources/ServerInfo/Guidebook/Engineering/PortableScrubber.xml b/Resources/ServerInfo/Guidebook/Engineering/PortableScrubber.xml
deleted file mode 100644
index 287e591ff32..00000000000
--- a/Resources/ServerInfo/Guidebook/Engineering/PortableScrubber.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-
- # Portable Scrubber
- The portable scrubber is a portable machine that can be used to scrub the atmosphere in a room.
-
-
-
-
- It is invaluable for quickly scrubbing unwanted gasses from a room when regular [textlink="scrubbers" link="AirScrubber"] are working too slow, or when a [textlink="scrubber" link="AirScrubber"] is not present.
-
- The portable scrubber requires [textlink="power" link="Power"] through a nearby [textlink="LV cable" link="VoltageNetworks"] to function.
-
- The portable scrubber automatically starts scrubbing all non-breathable gasses from the room when it is bolted (wrenched) to the floor.
-
- It will stop scrubbing when unbolted (unwrenched) from the floor, or when its internal volume is full. The scrubber has an internal capacity of [color=orange][protodata="PortableScrubber" comp="PortableScrubber" member="Volume"/] liters[/color].
-
- ## Dumping Waste and Storage
- The scrubber's internal volume can be emptied by bolting (wrenching it) onto a [textlink="connector" link="GasCanisters"].
-
- Stations commonly have a dedicated emptying point to quickly transfer the waste from the scrubber to the station's wastenet.
-
-
diff --git a/Resources/ServerInfo/Guidebook/Engineering/PowerStorage.xml b/Resources/ServerInfo/Guidebook/Engineering/PowerStorage.xml
deleted file mode 100644
index efd0167eb13..00000000000
--- a/Resources/ServerInfo/Guidebook/Engineering/PowerStorage.xml
+++ /dev/null
@@ -1,50 +0,0 @@
-
- # Power Storage
- Because of [textlink="Power Ramping" link="Ramping"], it is important to have power storage devices to help flatten out spikes and dips in power usage, as well as to provide power in the event of a power deficit.
-
- Each transformer for its respective power level ([color=orange]HV[/color], [color=yellow]MV[/color], and [color=green]LV[/color]) has an attached small battery to handle minor spikes and dips; however, this is not viable in the case of a large grid deficit.
-
- ## SMES
-
- The Superconducting Magnetic Energy Storage (SMES) unit is a device that can store a large amount of power and release it quickly.
-
-
-
-
-
- In order to charge the SMES unit, [color=orange]HV[/color] power must be provided to a cable terminal pointing at the SMES unit. The SMES will draw power from the terminal and send power out from underneath.
-
- The terminal will ensure that the [color=orange]HV input[/color] and [color=orange]HV output[/color] do not connect.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- SMESes can store [color=orange][protodata="SMESBasic" comp="Battery" member="MaxCharge" format="N0"/] J[/color] of energy, and can output a maximum [color=orange][protodata="SMESBasic" comp="PowerNetworkBattery" member="MaxSupply" format="N0"/] W[/color] of power.
-
- If the battery is full, the SMES will pass through the power it receives from the input cable to the output cable. In the event of a power deficit, the SMES will ramp up to supplement the power draw.
-
- ## Advanced SMES
- The Advanced SMES unit is a more advanced version of the SMES unit that can store even more power.
-
-
-
-
-
- They're primarily used in station SMES arrays to store large amounts of power for the station's power grid.
- They help to buy engineers time to setup power at roundstart, or to provide power in the event of a power deficit for extended periods of time.
-
- Advanced SMESes can store [color=orange][protodata="SMESAdvanced" comp="Battery" member="MaxCharge" format="N0"/] J[/color] of energy, and can output a maximum [color=orange][protodata="SMESAdvanced" comp="PowerNetworkBattery" member="MaxSupply" format="N0"/] W[/color] of power.
-
- Keep in mind that these aren't a magic solution to power deficits, and they can't store infinite energy.
- A station load will drain these battries quickly if there is no power source partially supporting them.
-
diff --git a/Resources/ServerInfo/Guidebook/Engineering/Pumps.xml b/Resources/ServerInfo/Guidebook/Engineering/Pumps.xml
deleted file mode 100644
index 7b399b0e5a4..00000000000
--- a/Resources/ServerInfo/Guidebook/Engineering/Pumps.xml
+++ /dev/null
@@ -1,48 +0,0 @@
-
-# Pumps
- Pumps are the primary way of actively moving gasses through a [textlink="pipenet." link="PipeNetworks"]
- They take gas from one side, and push it to the other.
- There are two different types of pumps:
-
-
-
-
-
-
- Some important things to note about pumps:
- - Pumps [color=#a4885c]require power[/color] through a nearby LV cable to function.
- - Pumps output on the side with the red stripe.
- - Gas cannot move backwards through pumps (although if you are using a pump to do solely this, you should use the [textlink="passive gate" link="PassiveGate"] instead).
- - Pumps cannot move gasses into pipes with pressures or volumes exceeding their [color=#a4885c]limit[/color]. This causes them to be [color=red]blocked[/color].
-
- Pumps will show a colorful animation when they are doing work.
- If they have no gas to pump, or they are blocked, they will show a blinking [color=red]red[/color] animation.
- Pumps that are off, have no power, or are unanchored will show no animation.
-
- ## Pressure Pumps
- Pressure pumps are the most common type of pump.
- They move gas based on [color=#a4885c]pressure[/color], making them useful for controlling the exact pressure of a pipe, or for drawing a vacuum.
-
-
-
-
-
- A pressure pump [color=red]cannot[/color] move gas to a pipe that has a pressure higher or equal to the pressure set on the pump.
-
- For example, a pressure pump cannot pump gas to a pipe that is currently at 500 kPa, if the pressure pump is set at 500 kPa.
-
- Pressure pumps can pump up to a maximum pressure of [color=orange][protodata="GasPressurePump" comp="GasPressurePump" member="MaxTargetPressure"/] kPa[/color].
- They will become [color=red]blocked[/color] if they try to push gas into a pipe higher than this pressure.
-
- ## Volumetric Pumps
- Volumetric pumps are an alternative pump, moving gas based on [color=#a4885c]volume[/color].
-
-
-
-
-
- They are extremely useful for moving large amounts of gas quickly.
- They can typically achieve higher pressures than a pressure pump.
-
- While volumetric pumps work off of the principle of volume, they will become [color=red]blocked[/color] if they try to push gas into a pipe higher than [color=orange][protodata="GasVolumePump" comp="GasVolumePump" member="HigherThreshold"/] kPa[/color].
-
diff --git a/Resources/ServerInfo/Guidebook/Engineering/RTG.xml b/Resources/ServerInfo/Guidebook/Engineering/RTG.xml
index aea9343c4ab..679e3cbdd01 100644
--- a/Resources/ServerInfo/Guidebook/Engineering/RTG.xml
+++ b/Resources/ServerInfo/Guidebook/Engineering/RTG.xml
@@ -10,7 +10,6 @@
Выходит, что если вы подключите РИТЭГ к электросети, он будет давать вам [color=#a4885c]бесплатную электроэнергию[/color].
Однако, достать их можно только на экспедиции. Не забудьте поблагодарить Утилизаторов, если они найдут вам несколько!
- ## RTG Damage
diff --git a/Resources/ServerInfo/Guidebook/Engineering/Radiators.xml b/Resources/ServerInfo/Guidebook/Engineering/Radiators.xml
deleted file mode 100644
index 0d3ec5f8f6a..00000000000
--- a/Resources/ServerInfo/Guidebook/Engineering/Radiators.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-
- # Radiators
- Radiators are a device that enables the exchange of heat energy between a [textlink="pipenet" link="PipeNetworks"] and the environment.
-
-
-
-
-
- Radiators are completely passive: they do not require power to function.
- They will always equalize the temperature of the gas in the [textlink="pipenet" link="PipeNetworks"] with the environment.
-
- Radiators have two methods of transferring heat: convection and radiation.
- - Convection is the transfer of heat through the movement of gas.
- - Radiation is the transfer of heat through electromagnetic waves.
-
- If a radiator is in a vacuum, it will only be able to transfer heat through radiation.
- If it is in an atmosphere, it will be able to transfer heat through both convection and radiation.
-
- Under convection, you can only get as cold or as hot as the atmosphere or [textlink="pipenet" link="PipeNetworks"] you're exchanging heat with (given the temperature of the gas in the [textlink="pipenet" link="PipeNetworks"] or atmosphere stays the same).
-
- If you're exchanging heat with space, you can only get as cold as space.
- To increase the efficiency of radiation, you can build radiators on lattice, which will allow the radiator to radiate more heat, compared to being directly attached to hull tile.
-
- Increasing the flow rate of gas through the radiator will increase the rate of heat exchange.
-
-
diff --git a/Resources/ServerInfo/Guidebook/Engineering/Ramping.xml b/Resources/ServerInfo/Guidebook/Engineering/Ramping.xml
deleted file mode 100644
index 6799353143f..00000000000
--- a/Resources/ServerInfo/Guidebook/Engineering/Ramping.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-
- # Ramping
- Contrary to what one might expect from a video game electrical simulation, power is not instantly provided upon request.
-
- Generators and batteries take time to ramp up to match the draw imposed on them, which leads to brownouts when there are large changes in current draw all at once; for example, when batteries run out.
-
- Observe the following example:
- - Say you have a generator that outputs 100 kW of power.
- - If you have a device that draws 50 kW of power, the generator will output 50 kW of power to match the grid's demand to its supply.
- - If you then turn on a device that draws another 50 kW of power, the generator will take time to ramp up to 100 kW of power. It will not provide this power instantly.
- - During this time, devices will not recieve the power they need, and the grid will experience a temporary brownout.
- - After some seconds have passed, the generator will have ramped up to 100 kW of power, and the brownout will end. All devices are now satisfied with the power they are receiving.
-
- During a shift, this is most commonly observed when a generator runs out of fuel and suddenly stops producing power.
- Suddenly, the grid is hit with a large deficit of power (as supply has fallen below demand), and all devices will experience a brownout until SMESes or other generators can ramp up to match the new demand.
-
- This can also happen when a large power consuming device, or department, is reconnected to the grid.
- The sudden increase in power draw will cause a brownout until the generators can ramp up to match the new demand.
-
-
diff --git a/Resources/ServerInfo/Guidebook/Engineering/SignalValve.xml b/Resources/ServerInfo/Guidebook/Engineering/SignalValve.xml
deleted file mode 100644
index dd2991e56da..00000000000
--- a/Resources/ServerInfo/Guidebook/Engineering/SignalValve.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
- # Signal Valve
- The signal valve is a valve that can be controlled via [textlink="signals." link="Networking"]
-
-
-
-
- The signal valve is similar to the manual valve. Gas can flow unrestricted in both directions, and it can be operated manually.
-
- The signal valve has 3 [textlink="signal" link="Networking"] inputs, which can open, close, or toggle the valve.
-
- Signal valves can be used in a variety of applications, for example:
- - Remote control of valves in hazardous areas or areas inaccessible to crew
- - Convenient control over a valve in a hard-to-reach area
- - Automation with other [textlink="signal-enabled" link="Networking"] machines and equipment such as [textlink="air alarms" link="AirAlarms"] and remote signallers
-
-
diff --git a/Resources/ServerInfo/Guidebook/Engineering/Singularity.xml b/Resources/ServerInfo/Guidebook/Engineering/Singularity.xml
new file mode 100644
index 00000000000..0e2df16227a
--- /dev/null
+++ b/Resources/ServerInfo/Guidebook/Engineering/Singularity.xml
@@ -0,0 +1,156 @@
+
+ # Singularity / Tesla Engine
+
+ The Singularity Engine / Tesla Engine can yield [color=#a4885c]infinite power[/color], with no fueling required. It can also [color=red]destroy the whole station[/color] with equal ease. It uses a Particle Accelerator to fire high energy particles at a Singularity Generator to form a singularity or ball lightning.
+ The singularity then pulses radiation which is absorbed by Radiation Collectors, or the ball lightning then zaps nearby tesla coils and grounding rods to provide power.
+
+ # Setting it up
+
+ Both engines requires 4 subsystems to work properly; two are shared between both engines:
+
+ ## Containment field generators and Emitters
+
+
+
+
+
+ The emitters connect to MV cables and fire lasers as long as they have power and are turned on.
+ Fire the emitters at enabled containment field generators to activate them.
+ If two containment field generators are active, in range and are in the same cardinal axis, a containment field will appear.
+ The containment field will repel the singularity or tesla, keeping it from escaping, and yield a little bit of power every time anything bounces off of them.
+
+ The emitter lasers and the containment fields can also cause damage and/or cause you to be sent flying into deep space; [color=#a4885c]avoid touching them[/color] when active.
+ It is recommended to [color=#a4885c]lock the emitters[/color] with [keybind="AltActivateItemInWorld"/], to prevent any break-in no-gooders from loosing the singularity or tesla by simply switching off the field.
+
+ Teslas can have significantly smaller containment fields than singularity containment fields; adjusting field size is recommended, as the tesla becomes easier to keep watch on in a simply 3x3 field setup.
+
+ ## Particle accelerator
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ The Particle Accelerator (PA) is a multi-tile structure that launches accelerated particles from its emitters. Its emitters should always face the generator.
+ Some stations already have an unfinished PA. To complete it, first ensure there is a MV cable beneath the PA power box, anchor all the parts, and then add an LV cable to each part.
+
+
+
+ Then use a screwdriver to screw back the panels.
+ [color=#a4885c]Scan parts[/color] using the PA control computer to check if it's operational (the PA will not function if you do not scan it!). If it shows up as incomplete, examine what's missing.
+
+
+
+
+ The other two subsystems are unique to each other:
+
+ ## Gravitational singularity generator or Ball lightning generator
+
+
+
+
+ The generator should be anchored at the center of the containment area, since this is where the singularity/tesla should appear at.
+
+ ## Radiation collectors or Tesla coils
+
+
+
+
+ The radition collectors connect to HV cables and generate power from nearby radiation sources when turned on.
+ Radiation collectors require a tank full of gaseous plasma in order to operate.
+ Continous radiation exposure will gradually convert the stored plasma into tritium, so replace depleted plasma tanks with fresh ones regularly to maintain a high power output.
+
+## Катушки и Заземлители Теслы
+
+
+
+
+
+ The tesla coils connect to HV cables and provide a stream of power after being zapped by the ball lightning.
+ However, tesla coils usually do not fully absorb the lightning strike, and the grounding rods are required to prevent lighting from arcing to and obliterating nearby machines.
+ Do note that one grounding rod is not a foolproof solution; get [color=#a4885c]at least 4 rods[/color] around the containment field to make it mathematically unlikely for the tesla to escape.
+ As the ball lightning zaps tesla coils, they will degrade from wear; make sure to [color=#a4885c]weld them[/color] every now and then to keep generating power.
+
+ ## Turing on the Engines
+
+ [color=red]Do not[/color] turn the PA on unless all the other subsystems are working properly and there is enough power to start the engine.
+
+ Turn power on using the PA control computer. Set the strength to an appropiate level. The higher the output stength is set on PA control computer, the bigger the singularity will be.
+
+ Currently, the output power does not affect the ball lightning, beyond giving the ball lightning extra orbs around it.
+
+ The PA will now draw power from the power net and start firing particles at the generators.
+
+
+
+
+
+
+
+ [color=red]Do not[/color] turn the PA on unless all the other subsystems are working properly and there is enough power to start the engine.
+
+## Финальный запуск
+
+ Currently, the output power does not affect the ball lightning, beyond giving the ball lightning extra orbs around it.
+
+ The PA will now draw power from the power net and start firing particles at the generators.
+
+
+
+
+
+
+
+ A singularity or ball lightning will soon appear at the position of the Gravitational singularity generator.
+
+
+ or
+
+
+
+ If no particles are hitting the singularity, the singularity will start to slowly decay until it disappears.
+ This is not the case for the tesla; feel free to disconnect the PA after the tesla has been set up.
+
+ ## Safety
+ The singularity emits a large amount of radiation around it, so always keep a distance from it. Consider getting [color=yellow]radiation shielding gear[/color] beforehand. Seek medical attention if you are experiencing health issues.
+
+
+
+
+
+
+
+
+
+
+
+ The singularity might move around, but the containment field will repel it.
+
+ The tesla creates large bolts of lightning around it, so make sure to wear insuls before approaching it. If you aren't, and it zaps you, pray that the ball lightning doesn't stunlock you and eventually send you into crit.
+
+
+
+ If a singularity or tesla escapes its containment field, often referred to as a "singuloose" or "tesloose" respectively, it will attract and then consume everything in its way, growing larger as it does so, or it will begin to obliterate every machine in its path, and shock all crew personnel.
+
+ In such circumstances, there is little to be done other than running in the opposite direction.
+
+
+
+ However, if science has happened to research [color=#D381C9]Portable Particle Decelerators[/color], or if cargo can order them in time, you may be able to stop the singularity from eating the whole station.
+ Good luck on the tesla, though; it is merely too powerful to recontain after breaching.
+
diff --git a/Resources/ServerInfo/Guidebook/Engineering/SingularityEngine.xml b/Resources/ServerInfo/Guidebook/Engineering/SingularityEngine.xml
deleted file mode 100644
index 6b4bb1780a6..00000000000
--- a/Resources/ServerInfo/Guidebook/Engineering/SingularityEngine.xml
+++ /dev/null
@@ -1,108 +0,0 @@
-
- # Singularity Engine
- The Singularity Engine is a powerful generator that uses a contained singularity to produce energy for the station.
-
-
-
-
-
-
- It generates power by collecting the radiation emitted by the singularity using Radiation Collectors and gaseous plasma.
-
- ## Starting the Singularity Engine
- To start the Singularity Engine, engineers must follow these steps:
- - Place the Singularity Generator in the middle of the containment field. Some stations start with the generator already in place, while others require engineers to bring it from cold storage.
- - Turn on the four Containment Field Generators.
- - Turn on and lock the Emitters.
- - Confirm that the Containment Field Generators have created a Containment Field around the Singularity.
- - Turn on the Radiation Collectors. These require plasma to produce power. They might not come fueled, so be sure to refill them.
- - Construct the Particle Accelerator.
- - Turn on the Particle Accelerator Control Computer and set the power level to the desired power level.
-
- Once these steps are complete, the Singularity Engine will start producing power for the station.
- Be sure to monitor the singularity's power level and containment field to prevent it from escaping and destroying the station.
- Check in to refill the collectors often, as they will run out of plasma over time.
-
- ## Containment Field
- To prevent the singularity from escaping and destroying the station, engineers must contain it within a Containment Field.
-
- It is suggested to use a max size containment field for the singularity. Any smaller and the singularity may outgrow its field and escape.
-
- Containment pylons should be arranged in a square, with 7 tiles of spacing between each pylon.
-
-
-
-
-
-
-
- ## Power Levels and Decay
- Because singularities emit radiation, they decay, losing power over time.
-
- To counter this decay, the Particle Accelerator emits particles that collide with the singularity, feeding and sustaining it.
-
- Singularities have defined power levels, which determine their radiation output.
- Engineers can increase or decrease the singularity's power level by adjusting the power level on the Particle Accelerator Control Computer.
-
- Particle Accelerators normally operate between power levels 1 and 3, which translate to a power level of 1 to 3 on the singularity.
-
- Power levels also determine how big the singularity is, with higher power levels sustaining larger singularities capable of producing more power.
-
- ## Producing Power
- The Singularity Engine produces power by capturing the radiation emitted by it using Radiation Collectors.
-
-
-
-
- They require gaseous plasma to function. The plasma containers attached to the collectors must be filled with plasma to produce power.
-
- You can turn on the collectors by interacting with them using [color=yellow][bold][keybind="Use"][/bold][/color].
-
- You can also eject the tank by interacting with the collector using [color=yellow][bold][keybind="AltActivateItemInWorld"][/bold][/color].
- From here, you can refill the tank with plasma using a plasma canister and reinsert it into the collector.
-
- The maximum power the radiation collector can produce is determined by:
- - The amount of radiation it is capturing (which is effectively the Singularity's power level),
- - and the amount of plasma it has in its connected tank.
-
- Over time, the collector will drain the tank of plasma, which reduces it's effective power output.
- Eventually, the tank will be empty, and the collector will stop producing power. Be sure to refill the tank often!
-
- ## Radiation Protection
- The singularity emits a massive amount of radiation, which can kill crew members who are not wearing proper protection.
- Be sure to wear a radiation suit or an engineering hardsuit when working near the singularity.
- This won't completely negate the radiation, but it will reduce the damage you take.
-
-
-
-
-
-
-
-
-
-
-
- The Chief Engineer has a special hardsuit that negates all radiation damage, which allows them to work near the singularity without fear of accumulating radiation damage over time.
-
- ## Singularity Properties
- The Singularity has several properties, which both make it dangerous and useful for power generation:
- - It has a strong gravitational pull that can suck in objects and crew members.
- - It has an event horizon, which can permanently destroy any object that touches it, whether it be a crew member or station equipment. Any object swallowed by the singularity is lost forever, and feeds the singularity.
- - It constantly emits radiation that can harm crew members who aren't wearing proper protection.
- - The singularity can decay over time, losing power and radiation output.
-
- ## Loosed Singularity (Singuloose)
- If the singularity escapes its containment field, it will begin to consume the station, destroying everything in its path.
- The more it consumes, the larger it grows, making it harder to potentially contain it again.
-
- The singularity can be destroyed by firing antiparticles at it using a Portable Particle Decelerator, but this is a risky and dangerous operation that requires careful planning and execution.
- Often multiple decelerators firing at once are needed to destroy a singularity.
-
- Portable Particle Decelerators can be either researched and made by the Research Department, or they can be bought from Cargo.
-
-
-
-
-
-
diff --git a/Resources/ServerInfo/Guidebook/Engineering/SingularityTeslaEngine.xml b/Resources/ServerInfo/Guidebook/Engineering/SingularityTeslaEngine.xml
deleted file mode 100644
index d6fe22985ed..00000000000
--- a/Resources/ServerInfo/Guidebook/Engineering/SingularityTeslaEngine.xml
+++ /dev/null
@@ -1,97 +0,0 @@
-
- # Singularity / Tesla Engine
-
- The Singularity Engine / Tesla Engine can yield [color=#a4885c]infinite power[/color] for the entire shift, making it a valuable asset to the station.
-
- It can also [color=red]destroy the whole station[/color] with equal ease, and requires careful preparation and monitoring to prevent a [bold]loose[/bold].
-
- # Setting it up
- Both engines follow the same basic setup steps, but have different subsystems and requirements.
-
- ## Containment Field
- The Containment Field is a multi-tile beam field that repels the singularity or tesla, keeping it from escaping.
-
- The emitter lasers and the containment fields can also cause damage and/or cause you to be sent flying into deep space; [color=#a4885c]avoid touching them[/color] when active.
-
-
-
-
-
-
-
- Containment Fields are generated between active Containment Field Generators, which are powered by emitters.
-
- A containment field generator can generate a containment field if:
- - The generator has been turned on,
- - another field generator is within 8 tiles,
- - and the field generators are on the same cardinal axis.
-
- This means that the maximum length of a containment field is 7 tiles.
-
- You can turn on a containment field generator by interacting with it using [color=yellow][bold][keybind="Use"][/bold][/color].
- Containment field generators won't work if they aren't turned on, even when struck by an emitter. Remember to turn on the field generator!
-
- The containment field generator has an internal energy level, which is filled by striking it with an emitter. When the containment field generator has enough stored energy, it will generate a containment field.
-
- This energy level will naturally decay over time, and the field will disappear when the energy level reaches zero after a delay.
-
- When the containment field is active, you cannot turn off the field generator or unanchor it. You must wait for the field to decay before you can turn off the generator.
-
-
-
-
-
-
-
-
-
- ## Emitters
- Emitters are the devices that power the containment field generators.
-
-
-
-
-
- The emitters connect to MV cables, and fire lasers as long as they have power and are turned on.
-
- It is recommended to [color=#a4885c]lock the emitters[/color] with [color=yellow][bold][keybind="AltActivateItemInWorld"][/bold][/color], to prevent any break-in no-gooders from loosing the singularity or tesla by simply switching off the field.
-
- ## Particle Accelerator
- The Particle Accelerator (PA) is a multi-tile structure that launches accelerated particles from its emitters.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Some stations already have an unfinished PA.
- To complete it, first ensure there is a MV cable beneath the PA power box, anchor all the parts, and then add an LV cable to each part.
-
-
-
-
-
- Then use a screwdriver to screw back the panels.
- [color=#a4885c]Scan parts[/color] using the PA control computer to check if it's operational (the PA will not function if you do not scan it!).
- If it shows up as incomplete, examine what's missing.
-
-
-
-
-
-
diff --git a/Resources/ServerInfo/Guidebook/Engineering/SolarPanels.xml b/Resources/ServerInfo/Guidebook/Engineering/SolarPanels.xml
deleted file mode 100644
index d97d2a78d7f..00000000000
--- a/Resources/ServerInfo/Guidebook/Engineering/SolarPanels.xml
+++ /dev/null
@@ -1,97 +0,0 @@
-
- # Solar Panels
- Solar Panels are a low-maintenance passive power source that generates power from incoming sunlight.
-
- They are a renewable source of power that can be used to supplement generators in the station's power grid.
- This is extremely useful, as while most generators burn through some type of fuel in some form or fashion, solar panels generate power for free.
-
-
-
-
-
-
-
- ## Power Generation
- Solar panels generate power based on their relative angle to the sun, and if they are occluded by other objects.
-
- Because of this, you might see some panels generating 0 W of power, while others generate a lot more.
- This is because the station is occluding some panels, so don't worry about it too much.
- Most stations have solar arrays placed at all sides of the station, so there's always some power being generated.
-
- Solar panels generate [color=orange]HV power[/color], and as such require an [color=orange]HV wire[/color] running underneath them to connect to the station's power grid.
-
- ## Power Bridge
- Solar panels might seem like an unnecessary power source at first glance.
- After all, we have this giant black hole in the center of the station.
- Why bother setting up solars when we can use that?
-
- It's ideal to set up solars alongside the [textlink="AME" link="AME"] for a few reasons:
- - Having active solar panels alongside the [textlink="AME" link="AME"] increases the runtime of the station's batteries significantly more than just the [textlink="AME" link="AME"] alone. This can buy engineers more time to setup bigger power sources.
- - Having active solar panels can reduce load on other grid producers. For example, if the solar arrays are producing enough power to satisfy half the station's needs, that is reflected in a reduced load on other engines, which can reduce the amount of fuel they burn.
-
-
- ## Adjusting Panels
- Because the station is orbiting a star, the sun's position in space changes over time.
- Solar panels need to be pointing straight at the sun to generate power efficiently, and they need to move over time to keep up with the sun's position.
-
- The angle at which solar panels face to can be adjusted at a Solar Control Computer.
-
-
-
-
- You can also adjust the rate at which the panels move to track the sun.
-
- The rate at which the sun moves around the station changes each shift, so time the sun's position and adjust the rate accordingly.
-
- The Solar Control Computer also reports on the total power generated by the solar panels.
-
- ## Construction
-
- Solar panels can be constructed by using two glass sheets on a solar assembly.
-
-
-
-
-
-
- You can purchase solar assemblies from Cargo.
-
- ## Repairs
- Solar panels can sometimes be damaged, and require repair.
-
-
-
-
-
- To fix them, you can use a crowbar to pry the broken glass shards out of the panel.
- Weld these glass shards into glass sheets, and then use them to make a new panel.
-
-
-
-
-
-
-
-
-
-
-
-
-
- ## Setting Up Solar Panel Arrays
- Solar panel arrays are commonly found on the exterior of the station, and are used to generate large amounts of free power for the station.
-
- You can either spacewalk to them from the outside, or you can run a loop through the station's maintenance tunnels to reach them.
- Solar array machine rooms are often marked with signs, and locked behind engineering access.
-
-
-
-
-
- At the start of the shift, solar panels are misaligned and disconnected from the grid.
- You will need to align them and connect them to the station's power grid to start generating power.
-
- This usually involves running a line of [color=orange]HV wire[/color] to the pannels from the solar array machine room, and then using a Solar Control Computer to align the panels.
-
- Solar array machine rooms frequently have a Solar Control Computer nearby, as well as an [textlink="SMES" link="PowerStorage"] to store the power generated by the panels for later use.
-
diff --git a/Resources/ServerInfo/Guidebook/Engineering/Spacing.xml b/Resources/ServerInfo/Guidebook/Engineering/Spacing.xml
deleted file mode 100644
index 01097c10e2b..00000000000
--- a/Resources/ServerInfo/Guidebook/Engineering/Spacing.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
- # Spacing
- Spacing is the most common form of atmospheric upset that can occur on the station.
-
- While the damage that caused the spacing is often time-consuming to [textlink="fix" link="ExpandingRepairingStation"], the actual spacing problem can be quickly resolved by simply repressurizing the area.
-
- Fixing spacing generally follows two simple steps:
-
- 1. Identify the area that has been spaced, and [textlink="seal the hole." link="ExpandingRepairingStation"]
-
- - If you're having trouble finding the hole, you can carefully listen for the flow of air rushing by you, if air is currently leaking to space.
- - Look for any holes underneath girders that may be hard to see.
-
- 2. Repressurize the area.
-
- - [textlink="Air vents" link="AirVent"] enter pressure lockout when a room is spaced, so you'll need to override the vents to repressurize the area. You can do this by setting the connected [textlink="air alarm" link="AirAlarms"] to fill, or by using a screwdriver on a vent to manually override it temporarily.
-
- ## Things to Avoid
- - Keep in mind that while you have an infinite supply of [textlink="mined gas" link="GasMiningAndStorage"], it is not quick enough to fill up multiple rooms at once. Setting [textlink="air alarms" link="AirAlarms"] to fill first [italic]before[/italic] fixing the root problem will often lead to wasted time and gas.
-
- - Leaving [textlink="air alarms" link="AirAlarms"] on the Fill mode unsupervised may lead to overpressuring a room, which can potentially harm crew if it gets out of hand.
-
-
diff --git a/Resources/ServerInfo/Guidebook/Engineering/TeslaEngine.xml b/Resources/ServerInfo/Guidebook/Engineering/TeslaEngine.xml
deleted file mode 100644
index 859ec8317eb..00000000000
--- a/Resources/ServerInfo/Guidebook/Engineering/TeslaEngine.xml
+++ /dev/null
@@ -1,104 +0,0 @@
-
- # Tesla Engine
- The Tesla Engine is a powerful generator that uses a contained ball of lightning to produce energy for the station.
-
-
-
-
-
-
-
- It generates power by harnessing the lightning strikes produced by the lightning ball using Tesla Coils.
-
- ## Containment Field
- The Tesla Engine requires a containment field to prevent the lightning ball from escaping and destroying the station.
-
- It is suggested to use the minimum size containment field for the lightning ball.
- Larger containment fields allow the lightning ball to reach closer to sensitive equipment and potentially strike it, ignoring placed grounding rods and tesla coils.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ## Lightning Strikes
- When the Tesla Engine is active, the lightning ball will periodically strike objects surrounding it.
-
- The Tesla prefers to strike some objects more than others, such as Tesla Coils and Grounding Rods.
-
-
-
-
-
-
-
-
-
-
-
- Because of this, strategically placing Tesla Coils and Grounding Rods around the lightning ball can help protect sensitive equipment from being struck, and prevent a loosed tesla (tesloose).
-
- If the tesla can't find any Tesla Coils or Grounding Rods to strike first, it will strike almost any station object capable of being powered, such as Substations, APCs, and general machinery.
-
- Certain objects aren't struck by the tesla, such as batteries, lights, PDAs, and other handheld items.
-
- It will also strike mobs and crew members, shocking them. Make sure to wear insulated gloves before approaching it.
-
- Note that only placing Tesla Coils won't be enough to prevent the tesla from striking sensitive equipment.
- Grounding Rods should also be placed to help protect nearby Emitters from being struck.
-
- Engineers can also use grounding rods to protect sensitive equipment from lightning strikes, such as the Emitters powering the containment field generators.
-
- ## Power Generation
- Lightning strikes can be harnessed using Tesla Coils, which convert the lightning strikes into power for the station.
-
-
-
-
-
-
-
- Tesla Coils should be placed around the lightning ball to capture the lightning strikes, as well as to prevent the lightning from striking sensitive equipment further away.
-
- Tesla Coils take damage every time they are struck by lightning, and will eventually break if not repaired.
- Be sure to monitor the condition of the Tesla Coils and repair them as needed.
-
- Grounding rods, in contrast, do not take damage from lightning strikes.
-
- When lightning strikes Tesla Coils, they fill an internal battery, which is rapidly discharged to the grid.
- It will discharge this power even if there is no consumer to take it, so it's a good idea to have an SMES nearby to store the power and discharge it smoothly.
-
- ## Loosed Tesla (Tesloose)
- If the lightning ball escapes the containment field, it is referred to as a loosed tesla, or tesloose.
-
- An escaped tesla will randomly walk around the station, attracted to objects that can be powered, such as APCs, Substations, and machinery.
- It will also gladly strike crew members and mobs, shocking them.
-
- Wearing insulated gloves will protect you from being shocked by the tesla, but it won't prevent the tesla from striking you.
-
-
-
-
-
- The tesla can be destroyed by firing antiparticles at it using a Portable Particle Decelerator, however, the Tesla is much more powerful than the Singularity, and it will take a lot of antiparticles to destroy it.
- A group of people using decelerators is recommended to destroy a tesloose.
-
- Portable Particle Decelerators can be either researched and made by the Research Department, or they can be bought from Cargo.
-
-
-
-
-
-
-
diff --git a/Resources/ServerInfo/Guidebook/Engineering/Thermomachines.xml b/Resources/ServerInfo/Guidebook/Engineering/Thermomachines.xml
deleted file mode 100644
index 64035cde193..00000000000
--- a/Resources/ServerInfo/Guidebook/Engineering/Thermomachines.xml
+++ /dev/null
@@ -1,75 +0,0 @@
-
- # Thermomachines
- Thermomachines are devices that manipulate the temperature of gases within a [textlink="pipe network" link="PipeNetworks"] or exposed atmosphere.
-
-
-
-
-
- They are essential for maintaining the temperature of gasses for various applications.
-
- All thermomachines work by using [textlink="electrical power" link="Power"] to preform work on the atmosphere to either heat or cool it.
- The amount of work they do is directly related to the amount of power they consume.
-
- Thermomachines also have an efficiency coefficient, which determines how much work they can do per unit of power consumed.
-
- To prevent overshooting their target value, thermomachines will scale back their heating/cooling power as they approach the target temperature.
- However, they will still consume the same amount of electrical power, even when idle.
-
- All thermomachines have a target temperature tolerance of [color=orange][protodata="GasThermoMachineFreezer" comp="GasThermoMachine" member="TemperatureTolerance"/] K[/color], meaning they will stop heating or cooling when the temperature is within [color=orange][protodata="GasThermoMachineFreezer" comp="GasThermoMachine" member="TemperatureTolerance"/] K[/color] of the target temperature.
-
- ## Space Heater
- The space heater is a portable temperature control unit that preforms work to heat or cool gas in the atmosphere it's exposed to.
- It's a simple and effective way to maintain the temperature of a room, without having to build a pipenet or other system.
-
-
-
-
-
- They can be commonly found in Atmospherics, although the relevant machine board can be printed at a circuit imprinter, commonly found in Science.
-
- The space heater can cool to as low as [color=orange][protodata="SpaceHeater" comp="SpaceHeater" member="MinTemperature"/] K[/color] and heat to as high as [color=orange][protodata="SpaceHeater" comp="SpaceHeater" member="MaxTemperature"/] K[/color].
-
- It also has three power settings, which determine how much power it consumes and how much work it does.
-
- Botany or science will often request these to maintain the temperature of their plants or department.
-
- ## Pipenet Thermomachines (Freezer and Heater)
- Pipenet thermomachines are more powerful stationary temperature control units that can be used to heat or cool gas in a [textlink="pipenet." link="PipeNetworks"]
-
-
-
-
-
-
- They draw [color=orange][protodata="GasThermoMachineFreezer" comp="GasThermoMachine" member="HeatCapacity" format="N0"/] W[/color] of power and can heat or cool gas in a pipenet to as high as [color=orange][protodata="GasThermoMachineFreezer" comp="GasThermoMachine" member="MaxTemperature"/] K[/color] or as low as [color=orange][protodata="GasThermoMachineFreezer" comp="GasThermoMachine" member="MinTemperature"/] K[/color].
-
- You can swap the mode of the thermomachine by deconstructing it and using a screwdriver on its board.
- The board can be printed at a circuit imprinter, commonly found in Science.
-
-
-
-
-
-
-
-
-
-
-
-
- ## Thermomachines from Hell
- Science can research more powerful thermomachines, aptly called hellfire heaters and freezers.
- These machines are much more powerful than their standard counterparts, but they also consume more power.
-
-
-
-
-
-
- These machines draw [color=orange][protodata="GasThermoMachineHellfireFreezer" comp="GasThermoMachine" member="HeatCapacity" format="N0"/] W[/color] of power and can heat or cool gas in a pipenet to as high as [color=orange][protodata="GasThermoMachineHellfireFreezer" comp="GasThermoMachine" member="MaxTemperature"/] K[/color] or as low as [color=orange][protodata="GasThermoMachineHellfireFreezer" comp="GasThermoMachine" member="MinTemperature"/] K[/color].
-
- However, they also leak [color=orange][protodata="GasThermoMachineHellfireFreezer" comp="GasThermoMachine" member="EnergyLeakPercentage" format="P0"/][/color] of their energy to the surrounding environment, heating or cooling the exposed atmosphere respectively.
- This can be dangerous if not properly managed.
-
-
diff --git a/Resources/ServerInfo/Guidebook/Engineering/Valves.xml b/Resources/ServerInfo/Guidebook/Engineering/Valves.xml
deleted file mode 100644
index db8c18807cd..00000000000
--- a/Resources/ServerInfo/Guidebook/Engineering/Valves.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-
- # Valves
- Valves are a quick way to halt or permit gas flow through a [textlink="pipenet" link="PipeNetworks"].
-
-
-
-
-
-
- All valves do not require [textlink="power" link="Power"] to operate.
-
- Valves may look simple, but they can enable a wide variety of complex pipe systems, including:
- - Signal valves responding to air alarm or logic gate outputs
- - Pneumatic valves controlling variable venting of waste gasses from a burn chamber
-
diff --git a/Resources/ServerInfo/Guidebook/Engineering/VoltageNetworks.xml b/Resources/ServerInfo/Guidebook/Engineering/VoltageNetworks.xml
deleted file mode 100644
index 9d7ed300965..00000000000
--- a/Resources/ServerInfo/Guidebook/Engineering/VoltageNetworks.xml
+++ /dev/null
@@ -1,95 +0,0 @@
-
- # Voltage Networks
- In Space Station 14, power distribution is divided into three separate voltage networks.
- These networks are the [color=green]Low Voltage[/color] Network, the [color=Yellow]Medium Voltage[/color] Network, and the [color=orange]High Voltage[/color] Network.
-
- These networks power different types of machinery on the station.
-
-
-
-
-
-
-
- ## Low Voltage Network
- The [color=green]Low Voltage[/color] Network is used for powering almost all small machines on the station. This includes things like lights, computers, and other small devices.
-
-
-
-
-
-
-
-
-
-
-
- [color=green]Low Voltage[/color] power is provided by APCs, which are wall-mounted devices that convert power from the [color=Yellow]Medium Voltage[/color] Network to [color=green]Low Voltage[/color].
-
-
-
-
-
- [color=green]Low Voltage[/color] wire doesn't have to be directly run to every machine, as it can power multiple machines as long as the wire is close enough to the machine.
- It can power machines within 2 tiles radially, and 3 tiles in each cardinal direction.
-
- ## Medium Voltage Network
- The [color=Yellow]Medium Voltage[/color] Network is used for powering APCs and other power-hungry machinery that can only accept [color=Yellow]Medium Voltage[/color] power.
- The Particle Accelerator is an example, as it operates on [color=Yellow]Medium Voltage[/color] power.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- [color=#999999][italic]The Particle Accelerator[italic][/color]
-
-
- [color=Yellow]Medium Voltage[/color] power is provided by Substations, which are large machines that convert power from the [color=Orange]High Voltage[/color] Network to [color=Yellow]Medium Voltage[/color].
-
- There are also wallmount variants of these substations for compact spaces, like shuttles.
-
-
-
-
-
-
-
-
-
- ## High Voltage Network
- The [color=Orange]High Voltage[/color] Network is used for moving large amount of power across the station. It is used to power most power handling equipment, such as SMES units and Substations.
-
- Most high-output generators output power to the [color=Orange]High Voltage[/color] Network.
-
-
-
-
-
-
-
-
- ## Shock Damage
- If you are shocked by a cable carrying power, you will take damage. The amount of damage you take is based on the voltage of the cable that shocked you.
-
- [color=green]Low Voltage[/color] cables will deal less damage than [color=Yellow]Medium Voltage[/color] cables, which will deal less damage than [color=Orange]High Voltage[/color] cables.
-
- Energized [color=Orange]High Voltage[/color] and [color=Yellow]Medium Voltage[/color] cabling hurts, so be sure to wear insulated gloves when working with it.
-
-
diff --git a/Resources/ServerInfo/Guidebook/Engineering/WirePanels.xml b/Resources/ServerInfo/Guidebook/Engineering/WirePanels.xml
deleted file mode 100644
index 6ac749120bc..00000000000
--- a/Resources/ServerInfo/Guidebook/Engineering/WirePanels.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-
- # Wire Panels
- Some station devices like airlocks, vending machines, and arcade consoles have wire panels, which control certain aspects of their functionality.
-
- These panels can be opened using a screwdriver to access the wiring inside.
-
-
-
-
-
-
-
- From here, you can use wirecutters and a multitool to interact with the wiring. Note that interacting with the wiring often requires insulated gloves, as if the wire is live, you can get shocked.
-
-
-
-
-
- You can cut and mend wires using the wirecutters, and pulse wires using the multitool.
-
- Cutting wires often completely disables or restores functionality to a device.
- It may also trigger unintended functionality, like shocking people, dropping door bolts, or exploding.
-
- Pulsing wires can have a variety of effects, but oftentimes it either temporarily disables or enables functionality.
-
- You can't pulse wires if the wire you're trying to pulse is cut. You have to mend the wire first.
-
-
-
diff --git a/Resources/ServerInfo/Guidebook/Security/CriminalRecords.xml b/Resources/ServerInfo/Guidebook/Security/CriminalRecords.xml
index 5aa4f906cb1..c7b7ad2098d 100644
--- a/Resources/ServerInfo/Guidebook/Security/CriminalRecords.xml
+++ b/Resources/ServerInfo/Guidebook/Security/CriminalRecords.xml
@@ -15,7 +15,6 @@
- The criminal records themselves
- - The filter button below the crew list can be used to show only wanted, detained, or paroled crew.
In the record section you can:
- See security-related information about a crewmember like their name, fingerprints and DNA.
diff --git a/Resources/ServerInfo/Guidebook/ServerRules/CoreRules/RuleC14ICinOOC.xml b/Resources/ServerInfo/Guidebook/ServerRules/CoreRules/RuleC14ICinOOC.xml
index 44ad34deb66..c7e136882ad 100644
--- a/Resources/ServerInfo/Guidebook/ServerRules/CoreRules/RuleC14ICinOOC.xml
+++ b/Resources/ServerInfo/Guidebook/ServerRules/CoreRules/RuleC14ICinOOC.xml
@@ -2,6 +2,9 @@
# Core Rule 14 - Do not use LOOC or OOC to share current round information
Local Out of Character (LOOC) and Out of Character (OOC) channel are meant for things that don't relate to the current round. Using these channels to share round info is often referred to as "IC in OOC" or "ick ock".
+ ## MRP Amendment
+ Except in circumstances where it would be otherwise required to explain mechanics of the game, this rule is also extended to using LOOC to communicate with other players. Players should be using in-game in-character forms of communication, even when teaching new players.
+
## Examples
Things you should [color=#a4885c]not[/color] do:
- Use LOOC to tell someone you are an antagonist.
diff --git a/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR12RoleAbandonment.xml b/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR12RoleAbandonment.xml
index 49785ba1bd5..1f2766d0d0c 100644
--- a/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR12RoleAbandonment.xml
+++ b/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR12RoleAbandonment.xml
@@ -6,6 +6,9 @@
"Antag rolling" refers to a player abandoning their role if they do not get an antagonist role.
+ ## MRP Amendment
+ Players should be attempting to perform their assigned role duties. They should not be constantly leaving their department, or the station, unless required by their role (or they are an antagonist and are completing their objectives), to the point they have spent more time away from their department than in it.
+
## Examples
Acceptable:
- As an engineer, building a bar in maintenance while there is nothing important for engineering to do.
diff --git a/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR13PerformRole.xml b/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR13PerformRole.xml
index 49878fb422c..bd17f18aacf 100644
--- a/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR13PerformRole.xml
+++ b/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR13PerformRole.xml
@@ -5,7 +5,7 @@
Don't perform other people's jobs, especially where the relevance to you personally is low. This also covers performing the role of security.
## MRP Amendment
- This is enforced more strictly on MRP.
+ Players should not repeatedly change out of a role and into another, or repeatedly perform the duties of a role they are not. If you do not like playing a role, or do not want to play a role, you should be disabling it in the customization screen.
## Examples
Acceptable:
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/equipped-head-light-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/equipped-head-light-vox.png
deleted file mode 100644
index 7f6154cd674..00000000000
Binary files a/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/equipped-head-light-vox.png and /dev/null differ
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/equipped-head-light.png b/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/equipped-head-light.png
deleted file mode 100644
index 197e2534298..00000000000
Binary files a/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/equipped-head-light.png and /dev/null differ
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/equipped-head-unshaded-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/equipped-head-unshaded-vox.png
deleted file mode 100644
index 4486bff5622..00000000000
Binary files a/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/equipped-head-unshaded-vox.png and /dev/null differ
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/equipped-head-unshaded.png b/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/equipped-head-unshaded.png
deleted file mode 100644
index e8aaf06567f..00000000000
Binary files a/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/equipped-head-unshaded.png and /dev/null differ
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/equipped-head-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/equipped-head-vox.png
deleted file mode 100644
index 5082ccf0b82..00000000000
Binary files a/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/equipped-head-vox.png and /dev/null differ
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/equipped-head.png b/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/equipped-head.png
deleted file mode 100644
index 9571c0e2c4f..00000000000
Binary files a/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/equipped-head.png and /dev/null differ
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/icon-flash.png
deleted file mode 100644
index 4e8b8a345b0..00000000000
Binary files a/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/icon-flash.png and /dev/null differ
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/icon-unshaded.png b/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/icon-unshaded.png
deleted file mode 100644
index b6e9cb615de..00000000000
Binary files a/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/icon-unshaded.png and /dev/null differ
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/icon.png b/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/icon.png
deleted file mode 100644
index 7f2b5b41ec3..00000000000
Binary files a/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/icon.png and /dev/null differ
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/light-overlay.png b/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/light-overlay.png
deleted file mode 100644
index 34262103f75..00000000000
Binary files a/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/light-overlay.png and /dev/null differ
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/meta.json
deleted file mode 100644
index d3ac9adcb7d..00000000000
--- a/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/meta.json
+++ /dev/null
@@ -1,48 +0,0 @@
-{
- "version": 1,
- "license": "CC-BY-SA-3.0",
- "copyright": "All sprites created by https://github.com/Pronana / princesscheeseballs (Discord)",
-
- "size": {
- "x": 32,
- "y": 32
- },
- "states": [
- {
- "name": "icon"
- },
- {
- "name": "icon-unshaded"
- },
- {
- "name": "icon-flash"
- },
- {
- "name": "light-overlay"
- },
- {
- "name": "equipped-head",
- "directions": 4
- },
- {
- "name": "equipped-head-light",
- "directions": 4
- },
- {
- "name": "equipped-head-unshaded",
- "directions": 4
- },
- {
- "name": "equipped-head-vox",
- "directions": 4
- },
- {
- "name": "equipped-head-light-vox",
- "directions": 4
- },
- {
- "name": "equipped-head-unshaded-vox",
- "directions": 4
- }
- ]
-}
diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/goliath.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/goliath.rsi/equipped-OUTERCLOTHING-vox.png
deleted file mode 100644
index 3e5c4e24ee4..00000000000
Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/goliath.rsi/equipped-OUTERCLOTHING-vox.png and /dev/null differ
diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/goliath.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/goliath.rsi/equipped-OUTERCLOTHING.png
deleted file mode 100644
index a55e3eb9a88..00000000000
Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/goliath.rsi/equipped-OUTERCLOTHING.png and /dev/null differ
diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/goliath.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/goliath.rsi/icon.png
deleted file mode 100644
index 29f2e238283..00000000000
Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/goliath.rsi/icon.png and /dev/null differ
diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/goliath.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/goliath.rsi/inhand-left.png
deleted file mode 100644
index e41244ac632..00000000000
Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/goliath.rsi/inhand-left.png and /dev/null differ
diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/goliath.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/goliath.rsi/inhand-right.png
deleted file mode 100644
index a44cb21e070..00000000000
Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/goliath.rsi/inhand-right.png and /dev/null differ
diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/goliath.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/goliath.rsi/meta.json
deleted file mode 100644
index fe0cc3ebbd7..00000000000
--- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/goliath.rsi/meta.json
+++ /dev/null
@@ -1,32 +0,0 @@
-
-{
- "version": 1,
- "license": "CC-BY-SA-3.0",
- "copyright": "All sprites created by https://github.com/Pronana / princesscheeseballs (Discord)",
-
- "size": {
- "x": 32,
- "y": 32
- },
- "states": [
- {
- "name": "icon"
- },
- {
- "name": "equipped-OUTERCLOTHING",
- "directions": 4
- },
- {
- "name": "equipped-OUTERCLOTHING-vox",
- "directions": 4
- },
- {
- "name": "inhand-left",
- "directions": 4
- },
- {
- "name": "inhand-right",
- "directions": 4
- }
- ]
-}
diff --git a/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/equipped-OUTERCLOTHING-unshaded-vox.png b/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/equipped-OUTERCLOTHING-unshaded-vox.png
deleted file mode 100644
index 13086e78541..00000000000
Binary files a/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/equipped-OUTERCLOTHING-unshaded-vox.png and /dev/null differ
diff --git a/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/equipped-OUTERCLOTHING-unshaded.png b/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/equipped-OUTERCLOTHING-unshaded.png
deleted file mode 100644
index 4cbdf1262f6..00000000000
Binary files a/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/equipped-OUTERCLOTHING-unshaded.png and /dev/null differ
diff --git a/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/equipped-OUTERCLOTHING-vox.png
index 1c537dac9d6..6d9f6dbead9 100644
Binary files a/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/equipped-OUTERCLOTHING-vox.png and b/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/equipped-OUTERCLOTHING-vox.png differ
diff --git a/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/icon-unshaded.png b/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/icon-unshaded.png
deleted file mode 100644
index e386869e3fe..00000000000
Binary files a/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/icon-unshaded.png and /dev/null differ
diff --git a/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/meta.json
index f228d235f71..e56b9fd2a9e 100644
--- a/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/meta.json
+++ b/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/meta.json
@@ -1,7 +1,7 @@
{
"version": 1,
"license": "CC-BY-SA-3.0",
- "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. Vox state made by Flareguy for Space Station 14. Modified and splited into shaded-unshaded states by kosticia.",
+ "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8. Vox state by Flareguy for Space Station 14",
"size": {
"x": 32,
"y": 32
@@ -10,25 +10,14 @@
{
"name": "icon"
},
- {
- "name": "icon-unshaded"
- },
{
"name": "equipped-OUTERCLOTHING",
"directions": 4
},
- {
- "name": "equipped-OUTERCLOTHING-unshaded",
- "directions": 4
- },
{
"name": "equipped-OUTERCLOTHING-vox",
"directions": 4
},
- {
- "name": "equipped-OUTERCLOTHING-unshaded-vox",
- "directions": 4
- },
{
"name": "inhand-left",
"directions": 4
diff --git a/Resources/Textures/Interface/Actions/actions_fakemindshield.rsi/icon-on.png b/Resources/Textures/Interface/Actions/actions_fakemindshield.rsi/icon-on.png
deleted file mode 100644
index 19b4e13ec1d..00000000000
Binary files a/Resources/Textures/Interface/Actions/actions_fakemindshield.rsi/icon-on.png and /dev/null differ
diff --git a/Resources/Textures/Interface/Actions/actions_fakemindshield.rsi/icon.png b/Resources/Textures/Interface/Actions/actions_fakemindshield.rsi/icon.png
deleted file mode 100644
index 9eb33d5350c..00000000000
Binary files a/Resources/Textures/Interface/Actions/actions_fakemindshield.rsi/icon.png and /dev/null differ
diff --git a/Resources/Textures/Interface/Actions/actions_fakemindshield.rsi/meta.json b/Resources/Textures/Interface/Actions/actions_fakemindshield.rsi/meta.json
deleted file mode 100644
index 31f288131f6..00000000000
--- a/Resources/Textures/Interface/Actions/actions_fakemindshield.rsi/meta.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "version": 1,
- "license": "CC-BY-SA-3.0",
- "copyright": "Created by Ubaser (Discord) for SS14, Modified for purpose by brassicaprime69 (Discord)",
- "size": {
- "x": 32,
- "y": 32
- },
- "states": [
- {
- "name": "icon"
- },
- {
- "name": "icon-on"
- }
- ]
-}
diff --git a/Resources/Textures/Objects/Magic/Eldritch/eldritch_actions.rsi/meta.json b/Resources/Textures/Objects/Magic/Eldritch/eldritch_actions.rsi/meta.json
deleted file mode 100644
index 8dddb61e05a..00000000000
--- a/Resources/Textures/Objects/Magic/Eldritch/eldritch_actions.rsi/meta.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "version": 1,
- "license": "CC-BY-NC-SA-3.0",
- "copyright": "Taken from and modified by kiwedespars on Citadel Station at commit https://github.com/Citadel-Station-13/Citadel-Station-13/commit/e145bdafe83e2cf38d148c39f073da5e7b0cb456",
- "size": {
- "x": 32,
- "y": 32
- },
- "states": [
- {
- "name": "voidblink",
- "delays": [
- [
- 0.1,
- 0.3,
- 0.1,
- 0.3,
- 0.1,
- 0.3,
- 0.1,
- 0.3,
- 0.3
- ]
- ]
- }
- ]
-}
diff --git a/Resources/Textures/Objects/Magic/Eldritch/eldritch_actions.rsi/voidblink.png b/Resources/Textures/Objects/Magic/Eldritch/eldritch_actions.rsi/voidblink.png
deleted file mode 100644
index c44f8890acd..00000000000
Binary files a/Resources/Textures/Objects/Magic/Eldritch/eldritch_actions.rsi/voidblink.png and /dev/null differ
diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/asteroid-inhand-left.png b/Resources/Textures/Objects/Tiles/tile.rsi/asteroid-inhand-left.png
deleted file mode 100644
index c252a030f35..00000000000
Binary files a/Resources/Textures/Objects/Tiles/tile.rsi/asteroid-inhand-left.png and /dev/null differ
diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/asteroid-inhand-right.png b/Resources/Textures/Objects/Tiles/tile.rsi/asteroid-inhand-right.png
deleted file mode 100644
index 90af3cb11a7..00000000000
Binary files a/Resources/Textures/Objects/Tiles/tile.rsi/asteroid-inhand-right.png and /dev/null differ
diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/asteroid.png b/Resources/Textures/Objects/Tiles/tile.rsi/asteroid.png
deleted file mode 100644
index 76d87d47233..00000000000
Binary files a/Resources/Textures/Objects/Tiles/tile.rsi/asteroid.png and /dev/null differ
diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/astroice.png b/Resources/Textures/Objects/Tiles/tile.rsi/astroice.png
index c57497a6ec8..e3c0948112e 100644
Binary files a/Resources/Textures/Objects/Tiles/tile.rsi/astroice.png and b/Resources/Textures/Objects/Tiles/tile.rsi/astroice.png differ
diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/meta.json b/Resources/Textures/Objects/Tiles/tile.rsi/meta.json
index a39ba782fac..7562d0f9b11 100644
--- a/Resources/Textures/Objects/Tiles/tile.rsi/meta.json
+++ b/Resources/Textures/Objects/Tiles/tile.rsi/meta.json
@@ -1,7 +1,7 @@
{
"version": 1,
"license": "CC-BY-SA-3.0",
- "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24, additional attributions available in the Resources/Textures/Tiles/attributions.yml file. Ice tile and Snow tile modifications, Astreroid tile and in-hands created by Southbridge-fur (github)",
+ "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24, additional copyrights see tiles folder.",
"size": {
"x": 32,
"y": 32
@@ -549,17 +549,6 @@
},
{
"name": "wood-large"
- },
- {
- "name": "asteroid"
- },
- {
- "name": "asteroid-inhand-right",
- "directions": 4
- },
- {
- "name": "asteroid-inhand-left",
- "directions": 4
}
]
}
diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/snow.png b/Resources/Textures/Objects/Tiles/tile.rsi/snow.png
index 1e27fec6762..385e2d59ac2 100644
Binary files a/Resources/Textures/Objects/Tiles/tile.rsi/snow.png and b/Resources/Textures/Objects/Tiles/tile.rsi/snow.png differ
diff --git a/Resources/Textures/Objects/Tools/access_breaker.rsi/equipped-BELT.png b/Resources/Textures/Objects/Tools/access_breaker.rsi/equipped-BELT.png
deleted file mode 100644
index b8903ccb4f7..00000000000
Binary files a/Resources/Textures/Objects/Tools/access_breaker.rsi/equipped-BELT.png and /dev/null differ
diff --git a/Resources/Textures/Objects/Tools/access_breaker.rsi/icon.png b/Resources/Textures/Objects/Tools/access_breaker.rsi/icon.png
deleted file mode 100644
index fab24db72c8..00000000000
Binary files a/Resources/Textures/Objects/Tools/access_breaker.rsi/icon.png and /dev/null differ
diff --git a/Resources/Textures/Objects/Tools/access_breaker.rsi/inhand-left.png b/Resources/Textures/Objects/Tools/access_breaker.rsi/inhand-left.png
deleted file mode 100644
index 8ea6bbb23f2..00000000000
Binary files a/Resources/Textures/Objects/Tools/access_breaker.rsi/inhand-left.png and /dev/null differ
diff --git a/Resources/Textures/Objects/Tools/access_breaker.rsi/inhand-right.png b/Resources/Textures/Objects/Tools/access_breaker.rsi/inhand-right.png
deleted file mode 100644
index 32070ed47a9..00000000000
Binary files a/Resources/Textures/Objects/Tools/access_breaker.rsi/inhand-right.png and /dev/null differ
diff --git a/Resources/Textures/Objects/Tools/access_breaker.rsi/meta.json b/Resources/Textures/Objects/Tools/access_breaker.rsi/meta.json
deleted file mode 100644
index 1e1baabbba2..00000000000
--- a/Resources/Textures/Objects/Tools/access_breaker.rsi/meta.json
+++ /dev/null
@@ -1,44 +0,0 @@
-{
- "version": 1,
- "license": "CC-BY-SA-3.0",
- "copyright": "Made by 20kdc (GitHub), edited by DieselMohawk (GitHub)",
- "size": {
- "x": 32,
- "y": 32
- },
- "states": [
- {
- "name": "inhand-left",
- "directions": 4
- },
- {
- "name": "inhand-right",
- "directions": 4
- },
- {
- "name": "icon",
- "delays": [
- [
- 0.1,
- 0.1,
- 0.1,
- 0.1,
- 0.1,
- 0.1,
- 0.5,
- 0.5,
- 0.5,
- 0.1,
- 0.1,
- 0.1,
- 0.1,
- 0.1,
- 0.1
- ]
- ]
- },
- {
- "name": "equipped-BELT"
- }
- ]
-}
diff --git a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/base.png b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/base.png
index c0555d9ed3e..133fc41a804 100644
Binary files a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/base.png and b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/base.png differ
diff --git a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/bolt-open.png b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/bolt-open.png
index 5a96a557493..f534d46c0bf 100644
Binary files a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/bolt-open.png and b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/bolt-open.png differ
diff --git a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/equipped-BACKPACK.png b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/equipped-BACKPACK.png
index c3ed4ab3171..38a2686dfb5 100644
Binary files a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/equipped-BACKPACK.png and b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/equipped-BACKPACK.png differ
diff --git a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/equipped-SUITSTORAGE.png
index c3ed4ab3171..38a2686dfb5 100644
Binary files a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/equipped-SUITSTORAGE.png and b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/equipped-SUITSTORAGE.png differ
diff --git a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/icon.png b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/icon.png
index f7703837338..fa9fd976bf6 100644
Binary files a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/icon.png and b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/icon.png differ
diff --git a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/inhand-left.png b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/inhand-left.png
index 5f2eaf5c304..992adeac6bc 100644
Binary files a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/inhand-left.png and b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/inhand-left.png differ
diff --git a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/inhand-right.png b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/inhand-right.png
index c397e9ea12c..e909999ff93 100644
Binary files a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/inhand-right.png and b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/inhand-right.png differ
diff --git a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/mag-0.png b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/mag-0.png
index 8242a6d00ab..1a06d11129d 100644
Binary files a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/mag-0.png and b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/mag-0.png differ
diff --git a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/meta.json
index 59312b50931..bd66b2c9685 100644
--- a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/meta.json
+++ b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/meta.json
@@ -1,7 +1,7 @@
{
"version": 1,
"license": "CC-BY-SA-3.0",
- "copyright": "Taken/modified from cev-eris at https://github.com/discordia-space/CEV-Eris/raw/56cbafd6ad8c013ccd5472d6c4a0db790f7f872a/icons/obj/guns/projectile/drozd.dmi, sprite modification by Jaсkal 298/TaralGit, backpack sling sprite edited by Boaz1111, wield sprites by RiceMar1244, all sprites minus suppressor heavily edited by Emisse for SS14",
+ "copyright": "Taken/modified from cev-eris at https://github.com/discordia-space/CEV-Eris/raw/56cbafd6ad8c013ccd5472d6c4a0db790f7f872a/icons/obj/guns/projectile/drozd.dmi, sprite modification by Jaсkal 298/TaralGit, backpack sling sprite edited by Boaz1111, wield sprites by RiceMar1244",
"size": {
"x": 32,
"y": 32
diff --git a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/wielded-inhand-left.png b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/wielded-inhand-left.png
index 3413644e2f2..ee66cf3df9b 100644
Binary files a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/wielded-inhand-left.png and b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/wielded-inhand-left.png differ
diff --git a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/wielded-inhand-right.png b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/wielded-inhand-right.png
index 96b7b29e8e7..c5d66956051 100644
Binary files a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/wielded-inhand-right.png and b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/wielded-inhand-right.png differ
diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/broken.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/broken.png
new file mode 100644
index 00000000000..ded81ca75f5
Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/broken.png differ
diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/meta.json b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/meta.json
index 7fa89a8ca15..00466666560 100644
--- a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/meta.json
+++ b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/meta.json
@@ -1,60 +1,30 @@
{
"version":1,
- "license":"CC-BY-SA-4.0",
- "copyright":"KalimbaMachine (github) & CaasGit (github) for Space Station 14",
+ "license":"CC-BY-SA-3.0",
+ "copyright":"Taken from https://github.com/discordia-space/CEV-Eris/blob/d1e0161af146835f4fb79d21a6200caa9cc842d0/icons/obj/power.dmi and modified.",
"size":{"x":32,"y":32},
"states":
[
{
- "name": "solar_assembly"
- },
- {
- "name": "solar_assembly_tracker_circuit"
- },
- {
- "name": "solar_panel_glass_broken"
- },
- {
- "name": "solar_panel_plasma_broken"
+ "name": "normal",
+ "select": [],
+ "flags": {},
+ "directions": 8
},
{
- "name": "solar_panel_uranium_broken"
+ "name": "broken",
+ "select": [],
+ "flags": {},
+ "directions": 1
},
{
- "name": "solar_panel_glass"
+ "name": "static"
},
{
- "name": "solar_panel_plasma"
- },
- {
- "name": "solar_panel_uranium"
+ "name": "solar_assembly"
},
{
"name": "solar_tracker"
- },
- {
- "name": "solar_tracker_broken"
- },
- {
- "name": "solar_assembly_uncabled"
- },
- {
- "name": "solar_assembly_tracker_circuit_uncabled"
- },
- {
- "name": "solar_panel_glass_uncabled"
- },
- {
- "name": "solar_panel_plasma_uncabled"
- },
- {
- "name": "solar_panel_uranium_uncabled"
- },
- {
- "name": "solar_tracker_uncabled"
- },
- {
- "name": "solar_tracker_broken_uncabled"
}
]
}
diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/normal.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/normal.png
new file mode 100644
index 00000000000..1e1c620029d
Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/normal.png differ
diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_assembly.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_assembly.png
index 191ebeaaa32..6714f199e4f 100644
Binary files a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_assembly.png and b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_assembly.png differ
diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_assembly_tracker_circuit.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_assembly_tracker_circuit.png
deleted file mode 100644
index e83efe08694..00000000000
Binary files a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_assembly_tracker_circuit.png and /dev/null differ
diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_assembly_tracker_circuit_uncabled.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_assembly_tracker_circuit_uncabled.png
deleted file mode 100644
index 52db0ee4a59..00000000000
Binary files a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_assembly_tracker_circuit_uncabled.png and /dev/null differ
diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_assembly_uncabled.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_assembly_uncabled.png
deleted file mode 100644
index d1fc51c95e1..00000000000
Binary files a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_assembly_uncabled.png and /dev/null differ
diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_glass.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_glass.png
deleted file mode 100644
index ae84f90a86b..00000000000
Binary files a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_glass.png and /dev/null differ
diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_glass_broken.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_glass_broken.png
deleted file mode 100644
index 13eeac91cea..00000000000
Binary files a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_glass_broken.png and /dev/null differ
diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_glass_uncabled.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_glass_uncabled.png
deleted file mode 100644
index 9e4bfbc11f1..00000000000
Binary files a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_glass_uncabled.png and /dev/null differ
diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_plasma.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_plasma.png
deleted file mode 100644
index a3777f3a799..00000000000
Binary files a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_plasma.png and /dev/null differ
diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_plasma_broken.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_plasma_broken.png
deleted file mode 100644
index 465a9326720..00000000000
Binary files a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_plasma_broken.png and /dev/null differ
diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_plasma_uncabled.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_plasma_uncabled.png
deleted file mode 100644
index c1e181ea911..00000000000
Binary files a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_plasma_uncabled.png and /dev/null differ
diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_uranium.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_uranium.png
deleted file mode 100644
index ae41622a4e4..00000000000
Binary files a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_uranium.png and /dev/null differ
diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_uranium_broken.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_uranium_broken.png
deleted file mode 100644
index c2feca3fbdc..00000000000
Binary files a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_uranium_broken.png and /dev/null differ
diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_uranium_uncabled.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_uranium_uncabled.png
deleted file mode 100644
index fab9dd3ed7e..00000000000
Binary files a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_uranium_uncabled.png and /dev/null differ
diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_tracker.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_tracker.png
index a36865c79ab..17abc02d28a 100644
Binary files a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_tracker.png and b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_tracker.png differ
diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_tracker_broken.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_tracker_broken.png
deleted file mode 100644
index 99bdb064758..00000000000
Binary files a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_tracker_broken.png and /dev/null differ
diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_tracker_broken_uncabled.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_tracker_broken_uncabled.png
deleted file mode 100644
index 2c8a3ec951e..00000000000
Binary files a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_tracker_broken_uncabled.png and /dev/null differ
diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_tracker_uncabled.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_tracker_uncabled.png
deleted file mode 100644
index d0684fe3dfd..00000000000
Binary files a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_tracker_uncabled.png and /dev/null differ
diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/static.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/static.png
new file mode 100644
index 00000000000..455a061b31b
Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/static.png differ
diff --git a/Resources/map_attributions.txt b/Resources/map_attributions.txt
index 73e6d1ea8f6..a9556b16d0f 100644
--- a/Resources/map_attributions.txt
+++ b/Resources/map_attributions.txt
@@ -57,6 +57,3 @@
- files: ["cog.yml"]
authors: Spacemann
-
-- files: ["convex.yml"]
- authors: Spacemann
diff --git a/Resources/migration.yml b/Resources/migration.yml
index d3f0f1b4041..542b9b6d5ed 100644
--- a/Resources/migration.yml
+++ b/Resources/migration.yml
@@ -722,6 +722,3 @@ DrinkIrishCarBomb: DrinkIrishSlammer
#2025-01-06
ClothingMaskSexyClown: ClothingMaskBlushingClown
ClothingMaskSexyMime: ClothingMaskBlushingMime
-
-# 2025-01-27
-FoodCondimentPacketFrostoil: FoodCondimentPacketColdsauce
diff --git a/RobustToolbox b/RobustToolbox
index d7f6a9ba439..aa8fe8ac92d 160000
--- a/RobustToolbox
+++ b/RobustToolbox
@@ -1 +1 @@
-Subproject commit d7f6a9ba4394b34e55b3fdd4d98c5dfe2bb21642
+Subproject commit aa8fe8ac92d5ac509696ee8d782385c94b98d720